From 80482e924953ec0e2484a9cb0f44bd5eeea93856 Mon Sep 17 00:00:00 2001 From: Matthias Kestenholz Date: Wed, 17 Apr 2019 08:41:54 +0200 Subject: Fixes #30342 -- Removed a system check for LANGUAGES_BIDI setting. This partly reverts commit 4400d8296d268f5a8523cd02ddc33b12219b2535. --- docs/ref/checks.txt | 3 --- docs/ref/settings.txt | 8 +++++--- 2 files changed, 5 insertions(+), 6 deletions(-) (limited to 'docs') diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt index 84b126bf5f..2944ad7544 100644 --- a/docs/ref/checks.txt +++ b/docs/ref/checks.txt @@ -448,9 +448,6 @@ The following checks are performed on your translation configuration: * **translation.E004**: You have provided a value for the :setting:`LANGUAGE_CODE` setting that is not in the :setting:`LANGUAGES` setting. -* **translation.E005**: You have provided values in the - :setting:`LANGUAGES_BIDI` setting that are not in the :setting:`LANGUAGES` - setting. URLs ---- diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index ae7436696e..b6b6f20afe 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -1879,15 +1879,17 @@ Here's a sample settings file:: ``LANGUAGES_BIDI`` ------------------ -Default: A list of all language codes from the :setting:`LANGUAGES` setting -that are written right-to-left. You can see the current list of these languages -by looking in :source:`django/conf/global_settings.py`. +Default: A list of all language codes that are written right-to-left. You can +see the current list of these languages by looking in +:source:`django/conf/global_settings.py`. The list contains :term:`language codes` for languages that are written right-to-left. Generally, the default value should suffice. Only set this setting if you want to restrict language selection to a subset of the Django-provided languages. +If you define a custom :setting:`LANGUAGES` setting, the list of bidirectional +languages may contain language codes which are not enabled on a given site. .. setting:: LOCALE_PATHS -- cgit v1.3