no need to mark latin text in Chinese conversion
authorZheng Zhu <zhengzhu@users.mediawiki.org>
Thu, 28 Apr 2005 03:27:07 +0000 (03:27 +0000)
committerZheng Zhu <zhengzhu@users.mediawiki.org>
Thu, 28 Apr 2005 03:27:07 +0000 (03:27 +0000)
languages/LanguageZh.php

index 4bab40c..c8b34f9 100644 (file)
@@ -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;
+       }
 }