3 * Chinese specific code.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
27 class ZhConverter
extends LanguageConverter
{
29 * @param Language $langobj
30 * @param string $maincode
31 * @param array $variants
32 * @param array $variantfallbacks
34 * @param array $manualLevel
36 function __construct( $langobj, $maincode,
38 $variantfallbacks = array(),
40 $manualLevel = array() ) {
41 $this->mDescCodeSep
= ':';
42 $this->mDescVarSep
= ';';
43 parent
::__construct( $langobj, $maincode,
59 $this->mVariantNames
= array_merge( $this->mVariantNames
, $names );
62 function loadDefaultTables() {
63 $this->mTables
= array(
64 'zh-hans' => new ReplacementArray( MediaWiki\Languages\Data\ZhConversion
::$zh2Hans ),
65 'zh-hant' => new ReplacementArray( MediaWiki\Languages\Data\ZhConversion
::$zh2Hant ),
66 'zh-cn' => new ReplacementArray( MediaWiki\Languages\Data\ZhConversion
::$zh2CN ),
67 'zh-hk' => new ReplacementArray( MediaWiki\Languages\Data\ZhConversion
::$zh2HK ),
68 'zh-mo' => new ReplacementArray( MediaWiki\Languages\Data\ZhConversion
::$zh2HK ),
69 'zh-my' => new ReplacementArray( MediaWiki\Languages\Data\ZhConversion
::$zh2CN ),
70 'zh-sg' => new ReplacementArray( MediaWiki\Languages\Data\ZhConversion
::$zh2CN ),
71 'zh-tw' => new ReplacementArray( MediaWiki\Languages\Data\ZhConversion
::$zh2TW ),
72 'zh' => new ReplacementArray
76 function postLoadTables() {
77 $this->mTables
['zh-cn']->setArray(
78 $this->mTables
['zh-cn']->getArray() +
$this->mTables
['zh-hans']->getArray()
80 $this->mTables
['zh-hk']->setArray(
81 $this->mTables
['zh-hk']->getArray() +
$this->mTables
['zh-hant']->getArray()
83 $this->mTables
['zh-mo']->setArray(
84 $this->mTables
['zh-mo']->getArray() +
$this->mTables
['zh-hant']->getArray()
86 $this->mTables
['zh-my']->setArray(
87 $this->mTables
['zh-my']->getArray() +
$this->mTables
['zh-hans']->getArray()
89 $this->mTables
['zh-sg']->setArray(
90 $this->mTables
['zh-sg']->getArray() +
$this->mTables
['zh-hans']->getArray()
92 $this->mTables
['zh-tw']->setArray(
93 $this->mTables
['zh-tw']->getArray() +
$this->mTables
['zh-hant']->getArray()
101 function convertCategoryKey( $key ) {
102 return $this->autoConvert( $key, 'zh' );
107 * class that handles both Traditional and Simplified Chinese
108 * right now it only distinguish zh_hans, zh_hant, zh_cn, zh_tw, zh_sg and zh_hk.
112 class LanguageZh
extends LanguageZh_hans
{
113 function __construct() {
116 parent
::__construct();
130 $variantfallbacks = array(
131 'zh' => array( 'zh-hans', 'zh-hant', 'zh-cn', 'zh-tw', 'zh-hk', 'zh-sg', 'zh-mo', 'zh-my' ),
132 'zh-hans' => array( 'zh-cn', 'zh-sg', 'zh-my' ),
133 'zh-hant' => array( 'zh-tw', 'zh-hk', 'zh-mo' ),
134 'zh-cn' => array( 'zh-hans', 'zh-sg', 'zh-my' ),
135 'zh-sg' => array( 'zh-hans', 'zh-cn', 'zh-my' ),
136 'zh-my' => array( 'zh-hans', 'zh-sg', 'zh-cn' ),
137 'zh-tw' => array( 'zh-hant', 'zh-hk', 'zh-mo' ),
138 'zh-hk' => array( 'zh-hant', 'zh-mo', 'zh-tw' ),
139 'zh-mo' => array( 'zh-hant', 'zh-hk', 'zh-tw' ),
143 'zh-hans' => 'unidirectional',
144 'zh-hant' => 'unidirectional',
147 $this->mConverter
= new ZhConverter( $this, 'zh',
148 $variants, $variantfallbacks,
152 $wgHooks['PageContentSaveComplete'][] = $this->mConverter
;
156 * this should give much better diff info
158 * @param string $text
161 function segmentForDiff( $text ) {
162 return preg_replace( '/[\xc0-\xff][\x80-\xbf]*/', ' $0', $text );
166 * @param string $text
169 function unsegmentForDiff( $text ) {
170 return preg_replace( '/ ([\xc0-\xff][\x80-\xbf]*)/', '$1', $text );
174 * auto convert to zh-hans and normalize special characters.
176 * @param string $string
177 * @param string $autoVariant Defaults to 'zh-hans'
180 function normalizeForSearch( $string, $autoVariant = 'zh-hans' ) {
182 // always convert to zh-hans before indexing. it should be
183 // better to use zh-hans for search, since conversion from
184 // Traditional to Simplified is less ambiguous than the
186 $s = $this->mConverter
->autoConvert( $string, $autoVariant );
187 // LanguageZh_hans::normalizeForSearch
188 $s = parent
::normalizeForSearch( $s );
194 * @param array $termsArray
197 function convertForSearchResult( $termsArray ) {
198 $terms = implode( '|', $termsArray );
199 $terms = self
::convertDoubleWidth( $terms );
200 $terms = implode( '|', $this->mConverter
->autoConvertToAllVariants( $terms ) );
201 $ret = array_unique( explode( '|', $terms ) );