* (bug 10426) Localisation update for various extensions (zho series)

This commit is contained in:
Raimond Spekking 2007-07-05 12:40:38 +00:00
parent 352f038983
commit 5c9063e779
Notes: Raimond Spekking 2010-04-07 18:54:28 +00:00

View file

@ -104,45 +104,38 @@ function efSpecialEditcountMessages() {
'editcount_total' => 'Ukupno',
),
// Chinese (China) Version by Shinjiman
'zh-cn' => array(
'editcount' => '编辑次数',
'editcount_username' => '用户:',
'editcount_submit' => '提交',
'editcount_total' => '总数',
),
// Chinese (Hong Kong) Version by Shinjiman
'zh-hk' => array(
'editcount' => '編輯次數',
'editcount_username' => '用戶:',
'editcount_submit' => '遞交',
'editcount_total' => '總數',
),
// Chinese (Singapore) Version by Shinjiman
'zh-sg' => array(
'editcount' => '编辑次数',
'editcount_username' => '用户:',
'editcount_submit' => '提交',
'editcount_total' => '总数',
),
// Chinese (Taiwan) Version by Shinjiman
'zh-tw' => array(
'editcount' => '編輯次數',
'editcount_username' => '用戶:',
'editcount_submit' => '遞交',
'editcount_total' => '總數',
),
// Cantonese Version by Shinjiman
'zh-yue' => array(
'yue' => array(
'editcount' => '編輯次數',
'editcount_username' => '用戶:',
'editcount_submit' => '遞交',
'editcount_total' => '總數',
),
// Chinese (Simplified) Version by Shinjiman
'zh-hans' => array(
'editcount' => '编辑次数',
'editcount_username' => '用户:',
'editcount_submit' => '提交',
'editcount_total' => '总数',
),
// Chinese (Traditional) Version by Shinjiman
'zh-hant' => array(
'editcount' => '編輯次數',
'editcount_username' => '用戶:',
'editcount_submit' => '遞交',
'editcount_total' => '總數',
),
);
/* Chinese defaults, fallback to zh-hans or zh-hant */
$messages['zh-cn'] = $messages['zh-hans'];
$messages['zh-hk'] = $messages['zh-hant'];
$messages['zh-cn'] = $messages['zh-hans'];
$messages['zh-tw'] = $messages['zh-hant'];
/* Cantonese default, fallback to zh-hans or zh-hant */
$messages['zh-yue'] = $messages['yue'];
return $messages;
}