From: Zheng Zhu Date: Thu, 28 Apr 2005 03:27:07 +0000 (+0000) Subject: no need to mark latin text in Chinese conversion X-Git-Tag: 1.5.0alpha1~95 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=b725d0748b24442578ff1a2afea1a41a7a94b1d5;p=lhc%2Fweb%2Fwiklou.git no need to mark latin text in Chinese conversion --- diff --git a/languages/LanguageZh.php b/languages/LanguageZh.php index 4bab40cea3..c8b34f9608 100644 --- a/languages/LanguageZh.php +++ b/languages/LanguageZh.php @@ -24,6 +24,13 @@ class ZhConverter extends LanguageConverter { $this->mTables['zh-sg'] = array_merge($this->mTables['zh-cn'], $this->mTables['zh-sg']); $this->mTables['zh-hk'] = array_merge($this->mTables['zh-tw'], $this->mTables['zh-hk']); } + + /* there shouldn't be any latin text in Chinese conversion, so no need + to mark anything + */ + function markNoConversion($text) { + return $text; + } }