MediaWiki
REL1_23
|
00001 <?php 00026 $fallback = 'zh-hant, zh-hans'; 00027 00028 $namespaceNames = array( 00029 NS_USER => '使用者', 00030 NS_USER_TALK => '使用者討論', 00031 NS_HELP => '使用說明', 00032 NS_HELP_TALK => '使用說明討論', 00033 ); 00034 00035 $namespaceAliases = array( 00036 'Image' => NS_FILE, 00037 'Image_talk' => NS_FILE_TALK, 00038 "圖片" => NS_FILE, 00039 "圖片討論" => NS_FILE_TALK, 00040 ); 00041 00042 $specialPageAliases = array( 00043 'Ancientpages' => array( '最舊頁面' ), 00044 'Block' => array( '查封用戶' ), 00045 'FileDuplicateSearch' => array( '搜索重復文件' ), 00046 'Invalidateemail' => array( '無法識別的電郵地址' ), 00047 'LinkSearch' => array( '搜索網頁鏈接' ), 00048 'Listredirects' => array( '重定向頁面列表' ), 00049 'Lockdb' => array( '鎖定數據庫' ), 00050 'MIMEsearch' => array( 'MIME搜索' ), 00051 'Randomredirect' => array( '隨機重定向頁面' ), 00052 'Recentchanges' => array( '近期變動' ), 00053 'Revisiondelete' => array( '刪除或恢復版本' ), 00054 'Unblock' => array( '解除封鎖' ), 00055 'Unlockdb' => array( '解除數據庫鎖定' ), 00056 'Unwatchedpages' => array( '未被監視的頁面' ), 00057 'Userrights' => array( '用戶權限' ), 00058 'Withoutinterwiki' => array( '沒有跨語言鏈接的頁面' ), 00059 ); 00060 00061 $datePreferences = array( 00062 'default', 00063 'minguo', 00064 'minguo shorttext', 00065 'minguo text', 00066 'minguo fulltext', 00067 'CNS 7648', 00068 'CNS 7648 compact', 00069 'ISO 8601', 00070 ); 00071 00072 $defaultDateFormat = 'zh'; 00073 00074 $dateFormats = array( 00075 'zh time' => 'H:i', 00076 'zh date' => 'Y年n月j日 (l)', 00077 'zh both' => 'Y年n月j日 (D) H:i', 00078 00079 'minguo time' => 'H:i', 00080 'minguo date' => 'xoY年n月j日 (l)', 00081 'minguo both' => 'xoY年n月j日 (D) H:i', 00082 00083 'minguo shorttext time' => 'H:i', 00084 'minguo shorttext date' => '民xoY年n月j日 (l)', 00085 'minguo shorttext both' => '民xoY年n月j日 (D) H:i', 00086 00087 'minguo text time' => 'H:i', 00088 'minguo text date' => '民國xoY年n月j日 (l)', 00089 'minguo text both' => '民國xoY年n月j日 (D) H:i', 00090 00091 'minguo fulltext time' => 'H:i', 00092 'minguo fulltext date' => '中華民國xoY年n月j日 (l)', 00093 'minguo fulltext both' => '中華民國xoY年n月j日 (D) H:i', 00094 00095 'CNS 7648 time' => 'H:i', 00096 'CNS 7648 date' => '"R.O.C." xoY-m-d (l)', 00097 'CNS 7648 both' => '"R.O.C." xoY-m-d (D) H:i', 00098 00099 'CNS 7648 compact time' => 'H:i', 00100 'CNS 7648 compact date' => '"ROC" xoY-m-d (l)', 00101 'CNS 7648 compact both' => '"ROC" xoY-m-d (D) H:i', 00102 ); 00103