1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 07:01:12 +00:00

i18n for pub page

This commit is contained in:
zhengxie
2012-10-27 21:03:19 +08:00
parent 1302b915d8
commit 77130dbd78
6 changed files with 130 additions and 88 deletions

View File

@@ -1,3 +1,4 @@
# encoding: utf-8
# Django settings for seahub project.
import os
@@ -91,7 +92,7 @@ TEMPLATE_DIRS = (
gettext_noop = lambda s: s
LANGUAGES = (
('en', gettext_noop('English')),
('zh-cn', gettext_noop('Simplified Chinese')),
('zh-cn', gettext_noop(u'简体中文')),
)
LOCALE_PATHS = (
os.path.join(os.path.dirname(__file__), 'locale'),