Merge remote-tracking branch 'origin/dev' into dev

pull/1007/head
ibuler 2018-01-29 17:04:09 +08:00
commit 0f15a94b08
4 changed files with 2 additions and 2 deletions

View File

@ -241,7 +241,7 @@ USE_L10N = True
USE_TZ = True
# I18N translation
LOCALE_PATHS = [os.path.join(BASE_DIR, 'locale'), ]
LOCALE_PATHS = [os.path.join(BASE_DIR, 'i18n'), ]
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.10/howto/static-files/

View File

@ -45,6 +45,6 @@
│ │ └── wsgi.py
│ ├── manage.py
│ ├── static // 项目静态资源目录
├── static // 项目多语言目录
  ├── i18n                     // 项目多语言目录
│ └── templates // 项目模板目录
```