zh-hk respectively * Merge zh-tw translations back to zh-hant * Split zh-hans, zh-hant, zh-hk translations and aliases from zh to respective message files * Language->getNamespaceAliases() with the updated language fallback chain can already fetch aliases from language variant i18n files All translation authors are added when merging those translations. Bug: T286291 Bug: T296188 Change-Id: Ia2aa17fa15fe6d6b9396bf06b472d28b3ab12f68
93 lines
2.9 KiB
PHP
93 lines
2.9 KiB
PHP
<?php
|
||
/** Chinese (Taiwan) (中文(臺灣))
|
||
*
|
||
* @file
|
||
* @ingroup Languages
|
||
*
|
||
* @author Alexsh
|
||
* @author Andrew971218
|
||
* @author BobChao
|
||
* @author Ianbu
|
||
* @author Jidanni
|
||
* @author Mark85296341
|
||
* @author Pbdragonwang
|
||
* @author PhiLiP
|
||
* @author Roc michael
|
||
* @author Shizhao
|
||
* @author Urhixidur
|
||
* @author Winston Sung
|
||
* @author Wong128hk
|
||
* @author Zerng07
|
||
* @author לערי ריינהארט
|
||
*/
|
||
|
||
$fallback = 'zh-hant, zh-hk, zh, zh-hans';
|
||
|
||
/** @phpcs-require-sorted-array */
|
||
$specialPageAliases = [
|
||
'Allmessages' => [ '所有訊息' ],
|
||
'Ancientpages' => [ '最舊頁面' ],
|
||
'Block' => [ '封鎖使用者' ],
|
||
'CreateAccount' => [ '建立帳號' ],
|
||
'FileDuplicateSearch' => [ '搜尋重復檔案' ],
|
||
'Invalidateemail' => [ '無法識別的電郵位址' ],
|
||
'LinkSearch' => [ '搜尋網頁連結' ],
|
||
'Listfiles' => [ '檔案清單' ],
|
||
'Listredirects' => [ '重新導向頁面清單' ],
|
||
'Lockdb' => [ '鎖定資料庫' ],
|
||
'MIMEsearch' => [ 'MIME搜尋' ],
|
||
'Newimages' => [ '新增檔案' ],
|
||
'Randomredirect' => [ '隨機重新導向頁面' ],
|
||
'Recentchanges' => [ '近期變動' ],
|
||
'Revisiondelete' => [ '刪除或恢復版本' ],
|
||
'Unblock' => [ '解除封鎖' ],
|
||
'Unlockdb' => [ '解除資料庫鎖定' ],
|
||
'Unwatchedpages' => [ '未被監視的頁面' ],
|
||
'Userrights' => [ '使用者權限' ],
|
||
'Watchlist' => [ '監視清單' ],
|
||
'Whatlinkshere' => [ '連入頁面' ],
|
||
'Withoutinterwiki' => [ '沒有跨語言連結的頁面' ],
|
||
];
|
||
|
||
$datePreferences = [
|
||
'default',
|
||
'minguo',
|
||
'minguo shorttext',
|
||
'minguo text',
|
||
'minguo fulltext',
|
||
'CNS 7648',
|
||
'CNS 7648 compact',
|
||
'ISO 8601',
|
||
];
|
||
|
||
$defaultDateFormat = 'zh';
|
||
|
||
$dateFormats = [
|
||
'zh time' => 'H:i',
|
||
'zh date' => 'Y年n月j日 (l)',
|
||
'zh both' => 'Y年n月j日 (D) H:i',
|
||
|
||
'minguo time' => 'H:i',
|
||
'minguo date' => 'xoY年n月j日 (l)',
|
||
'minguo both' => 'xoY年n月j日 (D) H:i',
|
||
|
||
'minguo shorttext time' => 'H:i',
|
||
'minguo shorttext date' => '民xoY年n月j日 (l)',
|
||
'minguo shorttext both' => '民xoY年n月j日 (D) H:i',
|
||
|
||
'minguo text time' => 'H:i',
|
||
'minguo text date' => '民國xoY年n月j日 (l)',
|
||
'minguo text both' => '民國xoY年n月j日 (D) H:i',
|
||
|
||
'minguo fulltext time' => 'H:i',
|
||
'minguo fulltext date' => '中華民國xoY年n月j日 (l)',
|
||
'minguo fulltext both' => '中華民國xoY年n月j日 (D) H:i',
|
||
|
||
'CNS 7648 time' => 'H:i',
|
||
'CNS 7648 date' => '"R.O.C." xoY-m-d (l)',
|
||
'CNS 7648 both' => '"R.O.C." xoY-m-d (D) H:i',
|
||
|
||
'CNS 7648 compact time' => 'H:i',
|
||
'CNS 7648 compact date' => '"ROC" xoY-m-d (l)',
|
||
'CNS 7648 compact both' => '"ROC" xoY-m-d (D) H:i',
|
||
];
|