From 5c9063e77986d0387c20aaf57192be98153e8de3 Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Thu, 5 Jul 2007 12:40:38 +0000 Subject: [PATCH] * (bug 10426) Localisation update for various extensions (zho series) --- SpecialEditcount.i18n.php | 59 +++++++++++++++++---------------------- 1 file changed, 26 insertions(+), 33 deletions(-) diff --git a/SpecialEditcount.i18n.php b/SpecialEditcount.i18n.php index a869105..f58edfe 100644 --- a/SpecialEditcount.i18n.php +++ b/SpecialEditcount.i18n.php @@ -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; }