From ef9207b66149efb48f10910e18166f40aa298014 Mon Sep 17 00:00:00 2001 From: Georg Bauer Date: Tue, 11 Oct 2005 14:22:28 +0000 Subject: [PATCH] i18n: added documentation on LOCALE_PATHS git-svn-id: http://code.djangoproject.com/svn/django/branches/i18n@840 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/translation.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/translation.txt b/docs/translation.txt index e63009883b..2a95286e0e 100644 --- a/docs/translation.txt +++ b/docs/translation.txt @@ -276,8 +276,10 @@ want to do that. Or you can just build a big project out of several apps and put all translations into one big project message file. The choice is yours. All message file repositories are structured the same. They are: -- $PROJECTPATH/apps//locale//LC_MESSAGES/django.(po|mo) +- $APPPATH/locale//LC_MESSAGES/django.(po|mo) - $PROJECTPATH/locale//LC_MESSAGES/django.(po|mo) +- all paths listed in LOCALE_PATHS in your settings file are + searched in that order for /LC_MESSAGES/django.(po|mo) - $PYTHONPATH/django/conf/locale//LC_MESSAGES/django.(po|mo) Actually the appliaction doesn't need to be stored below the project path -