1<?php
2/** Chinese (Taiwan) (‪中文(台灣)‬)
3 *
4 * To improve a translation please visit https://translatewiki.net
5 *
6 * @ingroup Language
7 * @file
8 *
9 * @author Alexsh
10 * @author Andrew971218
11 * @author BobChao
12 * @author Ianbu
13 * @author Jidanni
14 * @author Mark85296341
15 * @author Pbdragonwang
16 * @author PhiLiP
17 * @author Roc michael
18 * @author Shizhao
19 * @author Urhixidur
20 * @author Wong128hk
21 * @author Zerng07
22 * @author לערי ריינהארט
23 */
24
25$fallback = 'zh-hant, zh-hans';
26
27$namespaceNames = [
28	NS_USER             => '使用者',
29	NS_USER_TALK        => '使用者討論',
30	NS_HELP             => '使用說明',
31	NS_HELP_TALK        => '使用說明討論',
32];
33
34$namespaceAliases = [
35	'Image' => NS_FILE,
36	'Image_talk' => NS_FILE_TALK,
37	"圖片" => NS_FILE,
38	"圖片討論" => NS_FILE_TALK,
39];
40
41/** @phpcs-require-sorted-array */
42$specialPageAliases = [
43	'Allmessages'               => [ '所有訊息' ],
44	'Ancientpages'              => [ '最舊頁面' ],
45	'Block'                     => [ '封鎖使用者' ],
46	'CreateAccount'             => [ '建立帳號' ],
47	'FileDuplicateSearch'       => [ '搜尋重復檔案' ],
48	'Invalidateemail'           => [ '無法識別的電郵位址' ],
49	'LinkSearch'                => [ '搜尋網頁連結' ],
50	'Listfiles'                 => [ '檔案清單' ],
51	'Listredirects'             => [ '重新導向頁面清單' ],
52	'Lockdb'                    => [ '鎖定資料庫' ],
53	'MIMEsearch'                => [ 'MIME搜尋' ],
54	'Newimages'                 => [ '新增檔案' ],
55	'Randomredirect'            => [ '隨機重新導向頁面' ],
56	'Recentchanges'             => [ '近期變動' ],
57	'Revisiondelete'            => [ '刪除或恢復版本' ],
58	'Unblock'                   => [ '解除封鎖' ],
59	'Unlockdb'                  => [ '解除資料庫鎖定' ],
60	'Unwatchedpages'            => [ '未被監視的頁面' ],
61	'Userrights'                => [ '使用者權限' ],
62	'Watchlist'                 => [ '監視清單' ],
63	'Whatlinkshere'             => [ '連入頁面' ],
64	'Withoutinterwiki'          => [ '沒有跨語言連結的頁面' ],
65];
66
67$datePreferences = [
68	'default',
69	'minguo',
70	'minguo shorttext',
71	'minguo text',
72	'minguo fulltext',
73	'CNS 7648',
74	'CNS 7648 compact',
75	'ISO 8601',
76];
77
78$defaultDateFormat = 'zh';
79
80$dateFormats = [
81	'zh time'                => 'H:i',
82	'zh date'                => 'Y年n月j日 (l)',
83	'zh both'                => 'Y年n月j日 (D) H:i',
84
85	'minguo time'            => 'H:i',
86	'minguo date'            => 'xoY年n月j日 (l)',
87	'minguo both'            => 'xoY年n月j日 (D) H:i',
88
89	'minguo shorttext time'  => 'H:i',
90	'minguo shorttext date'  => '民xoY年n月j日 (l)',
91	'minguo shorttext both'  => '民xoY年n月j日 (D) H:i',
92
93	'minguo text time'       => 'H:i',
94	'minguo text date'       => '民國xoY年n月j日 (l)',
95	'minguo text both'       => '民國xoY年n月j日 (D) H:i',
96
97	'minguo fulltext time'   => 'H:i',
98	'minguo fulltext date'   => '中華民國xoY年n月j日 (l)',
99	'minguo fulltext both'   => '中華民國xoY年n月j日 (D) H:i',
100
101	'CNS 7648 time'          => 'H:i',
102	'CNS 7648 date'          => '"R.O.C." xoY-m-d (l)',
103	'CNS 7648 both'          => '"R.O.C." xoY-m-d (D) H:i',
104
105	'CNS 7648 compact time'  => 'H:i',
106	'CNS 7648 compact date'  => '"ROC" xoY-m-d (l)',
107	'CNS 7648 compact both'  => '"ROC" xoY-m-d (D) H:i',
108];
109