diff options
| author | Tim Graham <timograham@gmail.com> | 2015-03-20 08:23:55 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-03-20 08:29:52 -0400 |
| commit | b2a80f9053acb151a753a3a1e264a65ab8a5d806 (patch) | |
| tree | afd4749fde858057354bea026bf716e0b8e2044a | |
| parent | a81c224ad1e7ee22cb37e299bf2a399fb8e67bc3 (diff) | |
[1.7.x] Fixed #24503 -- Corrected docs on how LANGUAGE_CODE works as a fallback.
| -rw-r--r-- | docs/ref/settings.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index 171e442ac3..17d0830353 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -1541,8 +1541,9 @@ It serves two purposes: * If the locale middleware isn't in use, it decides which translation is served to all users. -* If the locale middleware is active, it provides the fallback translation when - no translation exist for a given literal to the user's preferred language. +* If the locale middleware is active, it provides a fallback language in case + the user's preferred language can't be determined or is not supported by the + Web site. See :ref:`how-django-discovers-language-preference` for more details. |
