summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2013-08-22 12:14:56 -0300
committerRamiro Morales <cramm0@gmail.com>2013-08-22 22:35:10 -0300
commit5547ba743cde37d043c411fd463bcd817dca4302 (patch)
tree759b609ddf7b7687156d4cb1ca2051cc87b0cf50 /docs/topics
parent616a4d385a79d6809b618dcc8bcbda05b032d5fc (diff)
[1.5.x] Typos introduced in 57c82f909b.
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/i18n/translation.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt
index 9c6d6a64c2..b8cd427e29 100644
--- a/docs/topics/i18n/translation.txt
+++ b/docs/topics/i18n/translation.txt
@@ -1515,15 +1515,15 @@ should be used -- installation-wide, for a particular user, or both.
To set an installation-wide language preference, set :setting:`LANGUAGE_CODE`.
Django uses this language as the default translation -- the final attempt if no
-better matching translation is found by one of the methods employed by the
+better matching translation is found through one of the methods employed by the
locale middleware (see below).
-If all you want to do is run Django with your native language all you need to do
+If all you want is to run Django with your native language all you need to do
is set :setting:`LANGUAGE_CODE` and make sure the corresponding :term:`message
files <message file>` and their compiled versions (``.mo``) exist.
If you want to let each individual user specify which language he or she
-prefers, the you also need to use use the ``LocaleMiddleware``.
+prefers, then you also need to use use the ``LocaleMiddleware``.
``LocaleMiddleware`` enables language selection based on data from the request.
It customizes content for each user.