我试图将我的django应用程序国际化,但我被卡住了。
我尝试翻译一些字符串用于测试目的并且它成功但是现在即使我编辑.po文件并编译以创建.mo文件它仍然像第一个测试一样,在第一个测试字符串上使用第一个测试值。我不知道为什么,我一直在搜索。
这是我的settings.py中间件部分:
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'django.middleware.security.SecurityMiddleware',
'django.middleware.locale.LocaleMiddleware',
)
上下文处理器部分:
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'django.core.context_processors.i18n',
],
},
},
]
和国际化部分:
LANGUAGE_CODE = 'en-gb'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
LOCAL_PATHS = (
os.path.join(BASE_DIR, 'locale/'), #BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
)
LANGUAGES = (
('fr', _('French')),
('en', _('English')),
)
有一个' locale'我的项目根目录下的目录,(我已经尝试将绝对路径放在我的LOCAL_PATHS中)。
.po文件由" python manage.py makemessages -l en -l fr -e djhtml -e py"生成。 at' my / project / locale / lang [en或fr] /LC_MESSAGES/django.po'和.mo文件由" python manage.py compilemessages"生成。 at' my / project / locale / lang [en or fr] /LC_MESSAGES/django.mo'。
我尝试清理缓存,重新启动服务器(运行服务器),但它仍然没有考虑对.po文件的任何修改。
感谢您帮助我。