Ticket #24503: 24503.diff

File 24503.diff, 910 bytes (added by Tim Graham, 9 years ago)
  • docs/ref/settings.txt

    diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
    index 497f321..1490caf 100644
    a b It serves two purposes:  
    15221522
    15231523* If the locale middleware isn't in use, it decides which translation is served
    15241524  to all users.
    1525 * If the locale middleware is active, it provides the fallback translation when
    1526   no translation exist for a given literal to the user's preferred language.
     1525* If the locale middleware is active, it provides a fallback language in case the
     1526  user's preferred language can't be determined or is not supported by the Web
     1527  site. It also provides the fallback translation when a translation for a
     1528  given literal doesn't exist for the user's preferred language.
     1529
     1530.. versionchanged:: 1.8
     1531
     1532    The fallback for translation literals was added.
    15271533
    15281534See :ref:`how-django-discovers-language-preference` for more details.
Back to Top