http://docs.ckeditor.com/#!/api/CKEDITOR.config
如上面的API文档所述,如果lanaguage为空,ckeditor将显示默认语言所具有的语言。但我的申请表明英文。
我的代码:
CKEDITOR_CONFIGS = {
'default': {
'toolbar': 'Custom',
'toolbar_Custom': [
[ 'Bold', 'Italic', 'Underline', 'Strike' ],
[ 'NumberedList', 'BulletedList', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
[ 'Table', 'HorizontalRule', 'Smiley'],
[ 'Format', 'Font', 'FontSize' ],
[ 'TextColor', 'BGColor' ],
],
'width' : '100%',
'defaultLanguage' : 'ko',
'language' : '',
}
}
我该怎么办?
答案 0 :(得分:2)
Django-CKEDITOR实际上是使用settings.py的语言设置覆盖此标志。您需要确保启用以下所有设置:
# Internationalization
# https://docs.djangoproject.com/en/1.9/topics/i18n/
LANGUAGE_CODE = 'en'
LANGUAGES = [
('ko', _('Korean')),
('en', _('English')),
]
USE_I18N = True
MIDDLEWARE_CLASSES = [
...
'django.middleware.locale.LocaleMiddleware',
]