From 2a658ed8b57dd4754e38486d7c26e407edb9e434 Mon Sep 17 00:00:00 2001 From: louyihua Date: Tue, 25 Mar 2014 20:35:44 +0800 Subject: [PATCH] i18n: Fix the chinese name of chinese language MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The current version of chinese language's chinese name is not political neutral. In fact, which form of chinese (traditional or simplified) can be called "正體"(in traditional chinese) or "正体"(in simplified chinese) is not globally defined. So, I change the name according to the word used by Microsoft Windows, which is more neutral. --- lms/envs/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/envs/common.py b/lms/envs/common.py index 5a9c552efc..03c645e23b 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -576,8 +576,8 @@ LANGUAGES = ( ('tr-tr', u'Türkçe (Türkiye)'), # Turkish (Turkey) ('uk', u'Українська'), # Uknranian ('vi', u'Tiếng Việt'), # Vietnamese - ('zh-cn', u'大陆简体'), # Chinese (China) - ('zh-tw', u'台灣正體'), # Chinese (Taiwan) + ('zh-cn', u'中文(简体)'), # Chinese (China) + ('zh-tw', u'中文(台灣)'), # Chinese (Taiwan) ) LANGUAGE_DICT = dict(LANGUAGES)