diff -r 275034865933 docs/howto/i18n.txt
--- a/docs/howto/i18n.txt	Thu Dec 16 12:11:20 2010 +0000
+++ b/docs/howto/i18n.txt	Thu Dec 16 15:21:30 2010 +0100
@@ -6,11 +6,10 @@
 
 At runtime, Django looks for translations by following this algorithm:
 
-    * First, it looks for a ``locale`` directory in the application directory
-      of the view that's being called. If it finds a translation for the
-      selected language, the translation will be installed.
-    * Next, it looks for a ``locale`` directory in the project directory. If it
-      finds a translation, the translation will be installed.
+    * First, it looks for a ``locale`` directory in the directory containing
+      your settings file.
+    * Second, it looks for a ``locale`` directory in the project directory.
+    * Third, it looks for a ``locale`` directory in each of the installed apps.
+      It does this in the reverse order of INSTALLED_APPS
     * Finally, it checks the Django-provided base translation in
       ``django/conf/locale``.
 
diff -r 275034865933 docs/topics/i18n/deployment.txt
--- a/docs/topics/i18n/deployment.txt	Thu Dec 16 12:11:20 2010 +0000
+++ b/docs/topics/i18n/deployment.txt	Thu Dec 16 15:21:30 2010 +0100
@@ -178,11 +178,10 @@
 As described in :ref:`using-translations-in-your-own-projects`,
 at runtime, Django looks for translations by following this algorithm:
 
-    * First, it looks for a ``locale`` directory in the application directory
-      of the view that's being called. If it finds a translation for the
-      selected language, the translation will be installed.
-    * Next, it looks for a ``locale`` directory in the project directory. If it
-      finds a translation, the translation will be installed.
+    * First, it looks for a ``locale`` directory in the directory containing
+      your settings file.
+    * Second, it looks for a ``locale`` directory in the project directory.
+    * Third, it looks for a ``locale`` directory in each of the installed apps.
+      It does this in the reverse order of INSTALLED_APPS
     * Finally, it checks the Django-provided base translation in
       ``django/conf/locale``.
 
