r1547 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r1546‎ | r1547 | r1548 >
Date:02:45, 10 August 2003
Author:vibber
Status:old
Tags:
Comment:
Major updates from meta.wikipedia.org... new options, new translations, using english namespaces names for now, with aliases from the chinese names
Modified paths:
  • /branches/stable/phase3/languages/LanguageZh.php (modified) (history)

Diff [purge]

Index: branches/stable/phase3/languages/LanguageZh.php
@@ -1,6 +1,5 @@
22 <?
3 -global $IP;
4 -include_once( "$IP/Utf8Case.php" );
 3+include_once( "Utf8Case.php" );
54
65 # NOTE: To turn off "Current Events" in the sidebar,
76 # set "currentevents" => "-"
@@ -10,49 +9,80 @@
1110 # encapsulates some of the magic-ness.
1211 #
1312 /* private */ $wgNamespaceNamesZh = array(
14 - -1 => "特殊", /* Special */
 13+ -1 => "Special",
1514 0 => "",
16 - 1 => "对话", /* Talk */
17 - 2 => "用户", /* User */
18 - 3 => "用户对话", /* User_talk */
19 - 4 => "Wikipedia", /* Wikipedia */
20 - 5 => "Wikipedia_对话", /* Wikipedia_talk */
21 - 6 => "图像", /* Image */
22 - 7 => "图像对话" /* Image_talk */
 15+ 1 => "Talk",
 16+ 2 => "User",
 17+ 3 => "User_talk",
 18+ 4 => "Wikipedia",
 19+ 5 => "Wikipedia_talk",
 20+ 6 => "Image",
 21+ 7 => "Image_talk"
2322 );
2423
2524 /* private */ $wgDefaultUserOptionsZh = array(
2625 "quickbar" => 1, "underline" => 1, "hover" => 1,
2726 "cols" => 80, "rows" => 25, "searchlimit" => 20,
2827 "contextlines" => 5, "contextchars" => 50,
29 - "skin" => 0, "rcdays" => 3, "rclimit" => 50,
30 - "highlightbroken" => 1, "stubthreshold" => 0
 28+ "skin" => 0, "math" => 1, "rcdays" => 7, "rclimit" => 50,
 29+ "highlightbroken" => 1, "stubthreshold" => 0,
 30+ "previewontop" => 1, "editsection"=>1,"editsectiononrightclick"=>0, "showtoc"=>1,
 31+ "date" => 0
3132 );
3233
3334 /* private */ $wgQuickbarSettingsZh = array(
34 - "无", /* "None" */
 35+ "无", /* "None" */
3536 "左侧固定", /* "Fixed left" */
3637 "右侧固定", /* "Fixed right" */
37 - "左侧漂移" /* "Floating left" */
 38+ "左侧漂移" /* "Floating left" */
3839 );
3940
4041 /* private */ $wgSkinNamesZh = array(
41 - "标准",/* "Standard" */
 42+ "标准",/* "Standard" */
4243 "怀旧",/* "Nostalgia" */
4344 "科隆香水蓝" /* "Cologne Blue" */
4445 );
4546
 47+/* private */ $wgMathNamesZh = array(
 48+ "永远使用PNG图像", /* "Always render PNG" */
 49+ "如果是简单的公式使用HTML,否则使用PNG图像", /* "HTML if very simple or else PNG" */
 50+ "如果可以用HTML,否则用PNG图像", /* "HTML if possible or else PNG" */
 51+ "显示为TeX代码(使用文字浏览器时)", /* "Leave it as TeX (for text browsers)" */
 52+ "推荐为新版浏览器使用" /* "Recommended for modern browsers" */
 53+);
 54+
4655 /* private */ $wgUserTogglesZh = array(
47 - "hover" => "滑过连接时显示注释",
48 - "underline" => "下划连接",
49 - "highlightbroken" => "高亮空白连接",
 56+ "hover" => "滑过Wiki链接时显示注释",
 57+/* "Show hoverbox over wiki links",*/
 58+ "underline" => "下划链接",
 59+/* "Underline links", */
 60+ "highlightbroken" => "毁坏链接格式<a href=\"\" class=\"new\">像这样</a> (或者像这个<a href=\"\" class=\"internal\">?</a>)",
 61+/* "Format broken links <a href=\"\" class=\"new\">like
 62+this</a> (alternative: like this<a href=\"\" class=\"internal\">?</a>).", */
5063 "justify" => "段落对齐",
51 - "hideminor" => "在最近更改页中隐藏细微修改",
 64+/* "Justify paragraphs", */
 65+ "hideminor" => "最近更改中隐藏细微修改",
 66+/* "Hide minor edits in recent changes", */
 67+ "usenewrc" => "最近更改增强(只适用部分浏览器)",
 68+/* "Enhanced recent changes (not for all browsers)", */
5269 "numberheadings" => "标题自动编号",
53 - "rememberpassword" => "下次登录时记住密码",
54 - "editwidth" => "编辑栏最大宽度",
55 - "editondblclick" => "双击编辑页面(JavaScript)",
56 - "watchdefault" => "Watch new and modified articles"
 70+/* "Auto-number headings", */
 71+ "editondblclick" => "双击页面编辑(JavaScript)",
 72+ "editsection"=>"允许通过点击[编辑]链接编辑段落",
 73+ "editsectiononrightclick"=>"允许右击标题编辑段落(JavaScript)",
 74+ "showtoc"=>"显示目录<br>(针对一页超过3个标题的文章)",
 75+ "rememberpassword" => "下次登陆记住密码",
 76+/* "Remember password across sessions", */
 77+ "editwidth" => "编辑栏位宽度",
 78+/* "Edit box has full width", */
 79+ "editondblclick" => "双击编辑页面(Javascript)",
 80+/* "Edit pages on double click (JavaScript)", */
 81+ "watchdefault" => "监视新的以及更改过的文章",
 82+/* "Watch new and modified articles", */
 83+ "minordefault" => "细微编辑为默认设置",
 84+/* "Mark all edits minor by default", */
 85+ "previewontop" => "在编辑框上方显示预览"
 86+/* "Show preview before edit box and not after it" */
5787 );
5888
5989 /* private */ $wgBookstoreListZh = array(
@@ -63,173 +93,169 @@
6494 );
6595
6696 /* private */ $wgLanguageNamesZh = array(
67 - "aa" => "Afar", /* 阿法尔语 */
68 - "ab" => "Abkhazian", /* 阿布哈西亚语 */
69 - "af" => "Afrikaans", /* 南非荷兰语 */
70 - "am" => "Amharic",/* 阿姆哈拉语 */
71 - "ar" => "&#8238;&#1575;&#1604;&#1593;&#1585;&#1576;&#1610;&#1577;&#8236;(Araby)", /* 阿拉伯语 */
72 - "as" => "Assamese", /* 阿萨姆语 */
73 - "ay" => "Aymara", /* 艾马拉语 */
74 - "az" => "Azerbaijani", /* 阿塞拜疆语 */
75 - "ba" => "Bashkir", /* 巴什基尔语 */
76 - "be" => "(&#1041;&#1077;&#1083;&#1072;&#1088;&#1091;&#1089;&#1082;&#1080;)", /* 白俄罗斯语 */
77 - "bh" => "Bihara", /* 比哈尔语 */
78 - "bi" => "Bislama", /* 比斯拉马语 */
79 - "bn" => "Bengali", /* 孟加拉语 */
80 - "bo" => "Tibetan", /* 藏语 */
81 - "br" => "Brezhoneg", /* 布列塔尼語 */
82 - "ca" => "Catal&#224;", /* 加泰罗尼亚语 */
83 - "ch" => "Chamoru", /* 查莫罗语 */
84 - "co" => "Corsican", /* 科西嘉语 */
85 - "cs" => "&#268;esk&#225;", /* 捷克语 */
86 - "cy" => "Cymraeg", /* 威尔士语 */
87 - "da" => "Dansk", # Note two different subdomains. /* 丹麦语 */
88 - "dk" => "Dansk", # 'da' is correct for the language. /* 丹麦语 */
89 - "de" => "Deutsch", /* 德语 */
90 - "dz" => "Bhutani", /* 不丹语 */
91 - "el" => "&#917;&#955;&#955;&#951;&#957;&#953;&#954;&#940;(Ellenika)",
92 - /* 希腊语 */
93 - "en" => "English", /* 英语 */
94 - "eo" => "Esperanto",/* 世界语 */
95 - "es" => "Espa&#241;ol", /* 西班牙语 */
96 - "et" => "Eesti", /* 爱沙尼亚语 */
97 - "eu" => "Euskara", /* 巴斯克語 */
98 - "fa" => "&#8238;&#1601;&#1585;&#1587;&#1609;&#8236;(Farsi)",
99 - /* 法尔西语 波斯语 */
100 - "fi" => "Suomi", /* 芬兰语 */
101 - "fj" => "Fijian", /* 斐济语 */
102 - "fo" => "Faeroese", /* 法罗语 */
103 - "fr" => "Fran&#231;ais", /* 法语 */
104 - "fy" => "Frysk", /* 弗里斯兰语 */
105 - "ga" => "Gaelige", /* 爱尔兰语 */
106 - "gl" => "Galician", /* 加利西亚语 */
107 - "gn" => "Guarani", /* 瓜拉尼语 */
108 - "gu" => "&#2711;&#2753;&#2716;&#2736;&#2750;&#2724;&#2752;(Gujarati)",
109 - /* 古吉拉特语 */
110 - "ha" => "Hausa", /* 豪萨语 */
111 - "he" => "&#1506;&#1489;&#1512;&#1497;&#1514;(Ivrit)",
112 - /* 希伯来语 */
113 - "hi" => "&#2361;&#2367;&#2344;&#2381;&#2342;&#2368;(Hindi)",
114 - /* 印地语 */
115 - "hr" => "Hrvatski", /* 克罗地亚语 */
116 - "hu" => "Magyar", /* 马札尔语 */
117 - "hy" => "Armenian", /* 亚美尼亚语 */
118 - "ia" => "Interlingua", /* 拉丁国际语 */
119 - "id" => "Indonesia", /* 印度尼西亚语 */
120 - "ik" => "Inupiak", /* Inupiak */
121 - "is" => "&#205;slenska", /* 冰岛语 */
122 - "it" => "Italiano", /* 意大利语 */
 97+ "aa" => "Afar",
 98+ "ab" => "Abkhazian",
 99+ "af" => "Afrikaans",
 100+ "am" => "Amharic",
 101+ "ar" => "‮العربية‬ (Araby)",
 102+ "as" => "Assamese",
 103+ "ay" => "Aymara",
 104+ "az" => "Azerbaijani",
 105+ "ba" => "Bashkir",
 106+ "be" => "Беларуски",
 107+ "bh" => "Bihara",
 108+ "bi" => "Bislama",
 109+ "bn" => "Bengali",
 110+ "bo" => "Tibetan",
 111+ "br" => "Brezhoneg",
 112+ "bs" => "Bosnian",
 113+ "ca" => "Català",
 114+ "ch" => "Chamoru",
 115+ "co" => "Corsican",
 116+ "cs" => "Česká",
 117+ "cy" => "Cymraeg",
 118+ "da" => "Dansk", # Note two different subdomains.
 119+ "dk" => "Dansk", # 'da' is correct for the language.
 120+ "de" => "Deutsch",
 121+ "dz" => "Bhutani",
 122+ "el" => "Ελληνικά (Ellenika)",
 123+ "en" => "English",
 124+ "eo" => "Esperanto",
 125+ "es" => "Español",
 126+ "et" => "Eesti",
 127+ "eu" => "Euskara",
 128+ "fa" => "‮فرسى‬ (Farsi)",
 129+ "fi" => "Suomi",
 130+ "fj" => "Fijian",
 131+ "fo" => "Faeroese",
 132+ "fr" => "Français",
 133+ "fy" => "Frysk",
 134+ "ga" => "Gaelige",
 135+ "gl" => "Galician",
 136+ "gn" => "Guarani",
 137+ "gu" => "ગુજરાતી (Gujarati)",
 138+ "ha" => "Hausa",
 139+ "he" => "עברית (Ivrit)",
 140+ "hi" => "हिन्दी (Hindi)",
 141+ "hr" => "Hrvatski",
 142+ "hu" => "Magyar",
 143+ "hy" => "Armenian",
 144+ "ia" => "Interlingua",
 145+ "id" => "Indonesia",
 146+ "ik" => "Inupiak",
 147+ "is" => "Íslenska",
 148+ "it" => "Italiano",
123149 "iu" => "Inuktitut",
124 - "ja" => "&#26085;&#26412;&#35486;(Nihongo)", /* 日本语 */
125 - "jv" => "Javanese", /* 爪哇语 */
126 - "ka" => "&#4325;&#4304;&#4320;&#4311;&#4309;&#4308;&#4314;&#4312;(Kartuli)",
127 - /* 格鲁吉亚语 */
128 - "kk" => "Kazakh", /* 哈萨克语 */
129 - "kl" => "Greenlandic", /* 格陵兰语 */
130 - "km" => "Cambodian", /* 柬埔寨语 */
131 - "kn" => "Kannada", /* 卡纳达语 */
132 - "ko" => "&#54620;&#44397;&#50612;(Hangukeo)",
133 - /* 韩国语 */
134 - "ks" => "Kashmiri", /* 克什米尔语 */
135 - "kw" => "Kernewek", /* 康沃尔语 */
136 - "ky" => "Kirghiz", /* 吉尔吉斯语 (柯尔克孜语)*/
137 - "la" => "Latina", /* 拉丁语 */
138 - "ln" => "Lingala", /* 林加拉语 */
139 - "lo" => "Laotian", /* 老挝语 */
140 - "lt" => "Lietuvi&#371;", /* 立陶宛语 */
141 -
142 - "lv" => "Latvian", /* 拉脱维亚语 */
143 - "mg" => "Malagasy", /* 马尔加什语 */
144 - "mi" => "Maori", /* 毛利人 */
145 - "mk" => "Macedonian", /* 马其顿语 */
146 - "ml" => "Malayalam", /* 马拉雅拉姆语 ?德拉维语*/
147 - "mn" => "Mongolian", /* 蒙古语 */
148 - "mo" => "Moldavian", /* 摩尔多瓦语 */
149 - "mr" => "Marathi", /* 马拉地语 */
150 - "ms" => "Bahasa Melayu", /* 马来语 */
151 - "my" => "Burmese", /* 缅甸语 */
152 - "na" => "Nauru", /* 瑙鲁语 */
153 - "ne" => "&#2344;&#2375;&#2346;&#2366;&#2354;&#2368;(Nepali)",
154 - /* 尼泊尔语 */
155 - "nl" => "Nederlands", /* 荷兰语 */
156 - "no" => "Norsk", /* 挪威语 */
157 - "oc" => "Occitan", /* 奥克语 */
158 - "om" => "Oromo", /* 奥罗莫语 */
159 - "or" => "Oriya", /* 奥里亚语 */
160 - "pa" => "Punjabi", /* 旁遮普语 */
161 - "pl" => "Polski", /* 波兰语 */
162 - "ps" => "Pashto", /* 普什图语 */
163 - "pt" => "Portugu&#234;s", /* 葡萄牙语 */
164 - "qu" => "Quechua", /* 盖丘亚语 */
165 - "rm" => "Rhaeto-Romance", /* Rhaeto-Romance */
166 - "rn" => "Kirundi", /* 基隆迪语 */
167 - "ro" => "Rom&#226;n&#259;", /* 罗马尼亚语 */
168 - "ru" => "&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081;(Russkij)",
169 - /* 俄语 */
 150+ "ja" => "日本語 (Nihongo)",
 151+ "jv" => "Javanese",
 152+ "ka" => "ქართველი (Kartuli)",
 153+ "kk" => "Kazakh",
 154+ "kl" => "Greenlandic",
 155+ "km" => "Cambodian",
 156+ "kn" => "Kannada",
 157+ "ko" => "한국어 (Hangukeo)",
 158+ "ks" => "Kashmiri",
 159+ "kw" => "Kernewek",
 160+ "ky" => "Kirghiz",
 161+ "la" => "Latina",
 162+ "ln" => "Lingala",
 163+ "lo" => "Laotian",
 164+ "lt" => "Lietuvių",
 165+ "lv" => "Latvian",
 166+ "mg" => "Malagasy",
 167+ "mi" => "Maori",
 168+ "mk" => "Macedonian",
 169+ "ml" => "Malayalam",
 170+ "mn" => "Mongolian",
 171+ "mo" => "Moldavian",
 172+ "mr" => "Marathi",
 173+ "ms" => "Bahasa Melayu",
 174+ "my" => "Burmese",
 175+ "na" => "Nauru",
 176+ "ne" => "नेपाली (Nepali)",
 177+ "nl" => "Nederlands",
 178+ "no" => "Norsk",
 179+ "oc" => "Occitan",
 180+ "om" => "Oromo",
 181+ "or" => "Oriya",
 182+ "pa" => "Punjabi",
 183+ "pl" => "Polski",
 184+ "ps" => "Pashto",
 185+ "pt" => "Português",
 186+ "qu" => "Quechua",
 187+ "rm" => "Rhaeto-Romance",
 188+ "rn" => "Kirundi",
 189+ "ro" => "Română",
 190+ "ru" => "Русский (Russkij)",
170191 "rw" => "Kinyarwanda",
171 - "sa" => "&#2360;&#2306;&#2360;&#2381;&#2325;&#2371;&#2340;(Samskrta)",
172 - /* 梵语 */
173 - "sd" => "Sindhi", /* 信德语 */
174 - "sg" => "Sangro", /* 桑戈语 */
175 - "sh" => "Serbocroatian", /* 塞尔维亚-克罗地亚语 */
176 - "si" => "Sinhalese", /* 僧伽罗语 */
177 - "simple"=> "Simple English", /* 简单英语 */
178 - "sk" => "Slovak", /* 斯洛伐克语 */
179 - "sl" => "Slovensko", /* 斯洛文尼亚语 */
180 - "sm" => "Samoan", /* 萨摩亚语 */
181 - "sn" => "Shona", /* 绍纳语 */
182 - "so" => "Soomaali", /* 索马里语 */
183 - "sq" => "Shqiptare", /* 阿尔巴尼亚 */
184 - "sr" => "Srpski", /* 塞尔维亚语 */
185 - "ss" => "Siswati", /* 西斯瓦提语 */
186 - "st" => "Sesotho", /* 塞索托语 */
187 - "su" => "Sudanese", /* 苏丹语 */
188 - "sv" => "Svenska", /* 瑞典语 */
189 - "sw" => "Kiswahili", /* 斯瓦希里语 */
190 - "ta" => "Tamil", /* 泰米尔语 */
191 - "te" => "Telugu", /* 泰卢固语 */
192 - "tg" => "Tajik", /* 塔吉克语 */
193 - "th" => "Thai", /* 泰国语 */
194 - "ti" => "Tigrinya", /* 提格里尼亚语 */
195 - "tk" => "Turkmen", /* 土库曼语 */
196 - "tl" => "Tagalog", /* 塔加路语 */
197 - "tn" => "Setswana", /* 茨瓦纳语 */
198 - "to" => "Tonga", /* 汤加语 */
199 - "tr" => "T&#252;rk&#231;e", /* 土耳其语 */
200 - "ts" => "Tsonga", /* 通加语 ?聪加语*/
201 - "tt" => "Tatar", /* 鞑靼语 */
202 - "tw" => "Twi", /* 特威语 ?契维、特维*/
203 - "ug" => "Uighur", /* 维吾尔语 */
204 - "uk" => "&#1059;&#1082;&#1088;&#1072;&#1111;&#1085;&#1089;&#1100;&#1082;&#1072;(Ukrayins`ka)",
205 - /* 乌克兰语 */
206 - "ur" => "Urdu", /* 乌尔都语 */
207 - "uz" => "Uzbek", /* 乌兹别克语 */
208 - "vi" => "Vietnamese", /* 越南语 */
209 - "vo" => "Volap&#252;k", /* 沃拉卜克语?佛拉普克语 */
210 - "wo" => "Wolof", /* 沃洛夫语 */
211 - "xh" => "isiXhosa", /* 科萨语 */
212 - "yi" => "Yiddish", /* 意第绪语 */
213 - "yo" => "Yoruba", /* 约鲁巴语 */
214 - "za" => "Zhuang", /* 壮语 ? */
215 - "zh" => "中文(Zhongwen)", /* Zhongwen */
216 - "zu" => "Zulu" /* 祖鲁语 */
 192+ "sa" => "संस्कृत (Samskrta)",
 193+ "sd" => "Sindhi",
 194+ "sg" => "Sangro",
 195+ "sh" => "Serbocroatian",
 196+ "si" => "Sinhalese",
 197+ "simple" => "Simple English",
 198+ "sk" => "Slovak",
 199+ "sl" => "Slovensko",
 200+ "sm" => "Samoan",
 201+ "sn" => "Shona",
 202+ "so" => "Soomaali",
 203+ "sq" => "Shqiptare",
 204+ "sr" => "Srpski",
 205+ "ss" => "Siswati",
 206+ "st" => "Sesotho",
 207+ "su" => "Sudanese",
 208+ "sv" => "Svenska",
 209+ "sw" => "Kiswahili",
 210+ "ta" => "Tamil",
 211+ "te" => "Telugu",
 212+ "tg" => "Tajik",
 213+ "th" => "Thai",
 214+ "ti" => "Tigrinya",
 215+ "tk" => "Turkmen",
 216+ "tl" => "Tagalog",
 217+ "tn" => "Setswana",
 218+ "to" => "Tonga",
 219+ "tr" => "Türkçe",
 220+ "ts" => "Tsonga",
 221+ "tt" => "Tatar",
 222+ "tw" => "Twi",
 223+ "ug" => "Uighur",
 224+ "uk" => "Українська (Ukrayins`ka)",
 225+ "ur" => "Urdu",
 226+ "uz" => "Uzbek",
 227+ "vi" => "Vietnamese",
 228+ "vo" => "Volapük",
 229+ "wo" => "Wolof",
 230+ "xh" => "isiXhosa",
 231+ "yi" => "Yiddish",
 232+ "yo" => "Yoruba",
 233+ "za" => "Zhuang",
 234+ "zh" => "中文 (Zhongwen)",
 235+ "zu" => "Zulu"
217236 );
218237
219238 /* private */ $wgWeekdayNamesZh = array(
220 - "星期日", "星期一", "星期二", "星期三", "星期四",
 239+ "星期日", "星期一", "星期二", "星期三", "星期四",
221240 "星期五", "星期六"
 241+/* "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",
 242+ "Friday", "Saturday" */
222243 );
223244
224245 /* private */ $wgMonthNamesZh = array(
225 - "1月", "2月", "3月", "4月", "5月", "6月",
 246+ "1月", "2月", "3月", "4月", "5月", "6月",
226247 "7月", "8月", "9月", "10月", "11月",
227248 "12月"
 249+/* "January", "February", "March", "April", "May", "June",
 250+ "July", "August", "September", "October", "November",
 251+ "December" */
228252 );
229253
230254 /* private */ $wgMonthAbbreviationsZh = array(
231 - "1月", "2月", "3月", "4月", "5月", "6月",
 255+"1月", "2月", "3月", "4月", "5月", "6月",
232256 "7月", "8月", "9月", "10月", "11月",
233257 "12月"
 258+/* "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug",
 259+ "Sep", "Oct", "Nov", "Dec" */
234260 );
235261
236262 # All special pages have to be listed here: a description of ""
@@ -237,120 +263,151 @@
238264 # is the right thing for some of them (such as the "targeted" ones).
239265 #
240266 /* private */ $wgValidSpecialPagesZh = array(
241 - "Userlogin" => "",
 267+ "Userlogin" => "",
242268 "Userlogout" => "",
243 - "Preferences" => "我的设置", /* Set my user preferences */
244 - "Watchlist" => "监视列表", /* My watchlist */
245 - "Recentchanges" => "最近更改", /* Recently updated pages */
246 - "Upload" => "上载图像", /* Upload image files */
247 - "Imagelist" => "图像列表", /* Image list */
248 - "Listusers" => "注册用户", /* Registered users */
249 - "Statistics" => "站点统计", /* Site statistics */
250 - "Randompage" => "随机条目", /* Random article */
 269+ "Preferences" => "参数设置",
 270+/*"Set my user preferences", */
 271+ "Watchlist" => "监视列表",
 272+/* "My watchlist", */
 273+ "Recentchanges" => "最近更新",
 274+/* "Recently updated pages", */
 275+ "Upload" => "上载",
 276+/* "Upload image files", */
 277+ "Imagelist" => "图像列表",
 278+/* "Image list", */
 279+ "Listusers" => "注册用户",
 280+/* "Registered users", */
 281+ "Statistics" => "站点统计",
 282+/* "Site statistics", */
 283+ "Randompage" => "随机页面",
 284+/* "Random article", */
251285
252 - "Lonelypages" => "孤立条目", /* Orphaned articles */
253 - "Unusedimages" => "孤立图像", /* Orphaned images */
254 - "Popularpages" => "热点条目", /* Popular articles */
255 - "Wantedpages" => "待撰页面", /* Most wanted articles */
256 - "Shortpages" => "短条目", /* Short articles */
257 - "Longpages" => "长条目", /* Long articles */
258 - "Newpages" => "新条目", /* Newly created articles */
259 - "Allpages" => "所有条目", /* All pages by title */
 286+ "Lonelypages" => "孤立页面",
 287+/* "Orphaned articles",*/
 288+ "Unusedimages" => "孤立图像",
 289+/* "Orphaned images", */
 290+ "Popularpages" => "热点条目",
 291+/* "Popular articles", */
 292+ "Wantedpages" => "待撰页面",
 293+/* "Most wanted articles", */
 294+ "Shortpages" => "短条目",
 295+ "Longpages" => "长条目",
 296+ "Newpages" => "新建条目",
 297+# "Intl" => "跨语言链接", # this page not done yet!
 298+ "Allpages" => "所有条目",
260299
261 - "Ipblocklist" => "被封 IP 地址", /* Blocked IP addresses */
262 - "Maintenance" => "维护页", /* Maintenance page */
263 - "Specialpages" => "", /* Next few intentionally left blank! 特殊页面 */
264 - "Contributions" => "", /* 参与者 */
265 - "Emailuser" => "", /* 给用户发信 */
266 - "Whatlinkshere" => "", /* 链入页面 */
267 - "Recentchangeslinked" => "", /* 近期链出页面更改 */
268 - "Movepage" => "", /* 移动页面 */
269 - "Booksources" => "站外书源" /* External book sources */
 300+ "Ipblocklist" => "被封IP地址",
 301+ "Maintenance" => "维护页",
 302+ "Specialpages" => "",
 303+ "Contributions" => "",
 304+ "Emailuser" => "",
 305+ "Whatlinkshere" => "",
 306+ "Recentchangeslinked" => "",
 307+ "Movepage" => "",
 308+ "Booksources" => "站外书源",
 309+ "Categories" => "页面分类"
270310 );
271311
272312 /* private */ $wgSysopSpecialPagesZh = array(
273 - "Blockip" => "禁封一个 IP 地址", /* Block an IP address */
274 - "Asksql" => "查询数据库", /* Query the database */
275 - "Undelete" => "查看并恢复被删页面"
276 - /* View and restore deleted pages */
 313+ "Blockip" => "查封一个IP地址",
 314+ "Asksql" => "查询数据库",
 315+ "Undelete" => "恢复被删页面"
277316 );
278317
279318 /* private */ $wgDeveloperSpecialPagesZh = array(
280 - "Lockdb" => "使数据库只读", /* Make database read-only */
281 - "Unlockdb" => "恢复数据库写操作", /* Restore database write access */
282 - "Debug" => "调试信息" /* Debugging information */
 319+ "Lockdb" => "设置数据库只读",
 320+ "Unlockdb" => "恢复数据库修改权限",
 321+ "Debug" => "除错信息"
283322 );
284323
285324 /* private */ $wgAllMessagesZh = array(
286325
287326 # Bits of text used by many pages:
288327 #
289 -"linktrail" => "/^([a-z]+)(.*)\$/sD",
290 -"mainpage" => "首页", /* Main Page */
291 -"about" => "关于", /* About */
292 -"aboutwikipedia" => "关于 Wikipedia", /* About Wikipedia */
293 -"aboutpage" => "Wikipedia:关于", /* */
294 -"help" => "帮助", /* Help */
295 -"helppage" => "Wikipedia:帮助", /* Wikipedia:Help */
296 -"wikititlesuffix" => "Wikipedia", /* Wikipedia */
297 -"bugreports" => "错误报告", /* Bug reports */
298 -"bugreportspage" => "Wikipedia:错误报告", /* */
299 -"faq" => "常见问题解答", /* FAQ */
300 -"faqpage" => "Wikipedia:常见问题解答", /* Wikipedia:FAQ */
301 -"edithelp" => "编辑帮助", /* Editing help */
302 -"edithelppage" => "Wikipedia:如何编辑页面", /* Wikipedia:How_does_one_edit_a_page */
303 -"cancel" => "取消", /* Cancel */
304 -"qbfind" => "查找", /* Find */
305 -"qbbrowse" => "浏览", /* Browser */
306 -"qbedit" => "编辑", /* Edit */
307 -"qbpageoptions" => "页面设置", /* Page options */
308 -"qbpageinfo" => "页面信息", /* Page info */
309 -"qbmyoptions" => "我的设置", /* My options */
310 -"mypage" => "我的页面", /* My page */
311 -"mytalk" => "我的对话", /* My talk */
312 -"currentevents" => "新闻动态", /* Current events */
313 -"errorpagetitle" => "错误", /* Error */
314 -"returnto" => "返回到 $1 ", /* Return to $1. */
315 -"fromwikipedia" => "Wikipedia ,自由的百科全书。", /* From Wikipedia, the free encyclopedia. */
316 -"whatlinkshere" => "链到本页的页面", /* Pages that link here */
317 -"help" => "帮助", /* Help */
318 -"search" => "搜索", /* Search */
319 -"history" => "修订历史", /* History */
320 -"printableversion" => "可打印版", /* Printable version */
321 -"editthispage" => "编辑页面", /* Edit this page */
322 -"deletethispage" => "删除页面", /* Delete this page */
323 -"protectthispage" => "保护页面", /* Protect this page */
324 -"unprotectthispage" => "免除保护", /* Unprotect this page */
325 -"talkpage" => "对话页", /* Talk page */
326 -"subjectpage" => "主题页", /* Subject page */
327 -"otherlanguages" => "其它语言", /* Other languages */
328 -"redirectedfrom" => "(重新定向自 $1 )", /* (Redirected from $1) */
329 -"lastmodified" => "最后更改于 $1。", /* The page was last modified $1. */
330 -"viewcount" => "页面已被浏览 $1 次", /* This page has been accessed $1 times. */
331 -"printsubtitle" => "(自 http://zh.wikipedia.org )", /* (From http://www.wikipedia.org) */
332 -"protectedpage" => "被保护页", /* Protected page */
333 -"administrators" => "Wikipedia:管理员", /* Wikipedia:Administrators */
334 -"sysoptitle" => "需要 sysop 权限", /* Sysop access required */
335 -"sysoptext" => "您请求的命令只能被拥有 \"sysop\" 权限的用户执行。请参见 $1 。",
336 -/* The action you have requested can only be performed by users with \"sysop\" status.See $1. */
337 -"developertitle" => "需要 developer 权限", /* Developer access required */
338 -"developertext" => "您请求的命令只能被拥有 \"developer\" 权限的用户执行。请参见 $1 。",
339 -/* The action you have requested can only be performed by users with \"developer\" status. See $1.*/
340 -"nbytes" => "$1 字节", /* $1 bytes */
341 -"go" => "进入", /* Go */
342 -"ok" => "确定", /* OK */
343 -"sitetitle" => "Wikipedia", /* Wikipedia */
344 -"sitesubtitle" => "自由的百科全书", /* The Free Encyclopedia */
345 -"retrievedfrom" => "取自 \"$1\"", /* Retrieved from \"$1\" */
 328+"categories" => "页面分类",
 329+ "category" => "分类",
 330+ "category_header" => "类别”$1“中的条目",
 331+ "subcategories" => "附分类",
 332+"linktrail" => "/^([a-z]+)(.*)\$/sD",
 333+"mainpage" => "首页",
 334+"about" => "关于",
 335+"aboutwikipedia" => "关于Wikipedia",
 336+"aboutpage" => "Wikipedia:关于",
 337+"help" => "帮助",
 338+"helppage" => "Wikipedia:帮助",
 339+"wikititlesuffix" => "Wikipedia",
 340+"bugreports" => "错误报告",
 341+"bugreportspage" => "Wikipedia:错误报告",
 342+"faq" => "常见问题解答",
 343+"faqpage" => "Wikipedia:常见问题解答",
 344+"edithelp" => "编辑帮助",
 345+"edithelppage" => "Wikipedia:如何编辑页面",
 346+"cancel" => "取消",
 347+"qbfind" => "寻找",
 348+"qbbrowse" => "浏览",
 349+"qbedit" => "编辑",
 350+"qbpageoptions" => "页面选项",
 351+"qbpageinfo" => "页面信息",
 352+"qbmyoptions" => "我的选项",
 353+"mypage" => "我的页面",
 354+"mytalk" => "我的对话页",
 355+"currentevents" => "新闻动态",
 356+"errorpagetitle" => "错误",
 357+"returnto" => "返回到$1.",
 358+"fromwikipedia" => "Wikipedia,自由的百科全书",
 359+"whatlinkshere" => "链入页面",
 360+"help" => "帮助",
 361+"search" => "搜索",
 362+"go" => "进入",
 363+"history" => "较早版本",
 364+"printableversion" => "可打印版",
 365+"editthispage" => "编辑本页",
 366+"deletethispage" => "删除本页",
 367+"protectthispage" => "保护本页",
 368+"unprotectthispage" => "解除保护",
 369+"newpage" => "新页面",
 370+"talkpage" => "讨论本页",
 371+ "postcomment" => "发表评论",
 372+"articlepage" => "查看文章",
 373+"subjectpage" => "查看主题", # For compatibility
 374+"userpage" => "查看用户页",
 375+"wikipediapage" => "查看meta页",
 376+"imagepage" => "查看图像页面",
 377+"viewtalkpage" => "查看讨论",
 378+"otherlanguages" => "其它语言",
 379+"redirectedfrom" => "(重定向自$1)",
 380+"lastmodified" => "最后更改$1.",
 381+"viewcount" => "本页面已经被浏览$1次。",
 382+"gnunote" => "所有文本在<a class=internal href='/wiki/GNU_FDL'>GNU自由文档协议证书 </a>下发布",
 383+"printsubtitle" => "(来自 http://zh.wikipedia.org)",
 384+"protectedpage" => "被保护页",
 385+"administrators" => "Wikipedia:管理员",
 386+"sysoptitle" => "需要管理员权限",
 387+"sysoptext" => "您刚才的请求只有拥有管理员权限的用户才可使用。
 388+参见$1。",
 389+"developertitle" => "需要发展者权限",
 390+"developertext" => "您刚才的请求只有拥有发展者权限的用户才可使用。
 391+参见$1。",
 392+"nbytes" => "$1字节",
 393+"go" => "进入",
 394+"ok" => "OK",
 395+"sitetitle" => "Wikipedia",
 396+"sitesubtitle" => "自由的百科全书",
 397+"retrievedfrom" => "取自\"$1\"",
 398+"newmessages" => "您有$1。",
 399+"newmessageslink" => "新信息",
 400+ "editsection"=>"编辑",
 401+ "toc" => "目录",
 402+"showtoc" => "显示",
 403+ "hidetoc" => "隐藏",
346404
347405 # Main script and global functions
348406 #
349 -"nosuchaction" => "没有这个命令。", /* No such action */
350 -"nosuchactiontext" => "URL 请求的命令无法被 Wikipedia 软件识别。",
351 -/* The action specified by the URL is not recognized by the Wikipedia software */
352 -"nosuchspecialpage" => "没有这个特殊页。", /* No such special page */
 407+"nosuchaction" => "没有这个命令",
 408+"nosuchactiontext" => "URL请求的命令无法被 Wikipedia 软件识别。",
 409+"nosuchspecialpage" => "没有这个特殊页。",
 410+
353411 "nospecialpagetext" => "您请求的页面无法被 Wikipedia 软件识别。",
354 -/* You have requested a special page that is not recognized by the Wikipedia software. */
355412
356413 # General errors
357414 #
@@ -361,268 +418,294 @@
362419 也可能是由于软件自身的错误所引起。
363420 最后一次数据库指令是:
364421 <blockquote><tt>$1</tt></blockquote>
365 -来自于函数 \"<tt>$2</tt>\".
366 -MySQL返回错误 \"<tt>$3: $4</tt>\".",
367 -"noconnect" => "无法在 $1上连接数据库",
368 -"nodb" => "无法选择数据库 $1",
369 -"readonly" => "数据库禁止访问",
 422+来自于函数 \"<tt>$2</tt>\"。
 423+MySQL返回错误 \"<tt>$3: $4</tt>\"。",
 424+"noconnect" => "无法在 $1上连接数据库",
 425+"nodb" => "无法选择数据库 $1",
 426+"readonly" => "数据库禁止访问",
370427 "enterlockreason" => "请输入禁止访问原因, 包括估计重新开放的时间",
371428 "readonlytext" => "Wikipedia数据库目前禁止输入新内容及更改,
372429 这很可能是由于数据库正在维修,之后即可恢复。
373430 管理员有如下解释:
374431 <p>$1",
375 -"missingarticle" => "数据库找不到文字\"$1\".
376 -这不是一个数据库错误,而可能是由于软件错误所引起。
377 -请将情况连同URL告知管理员。",
 432+"missingarticle" => "数据库找不到文字\"$1\"。
 433+
 434+<p>通常这是由于修订历史页上过时的链接到已经被删除的页面所导致的。
 435+
 436+<p>如果情况不是这样,您可能找到了软件内的一个臭虫。
 437+请记录下URL地址,并向管理员报告。",
378438 "internalerror" => "内部错误",
379 -"filecopyerror" => "无法复制文件\"$1\"到\"$2\".",
380 -"filerenameerror" => "无法重命名文件\"$1\" 到\"$2\".",
381 -"filedeleteerror" => "无法删除文件 \"$1\".",
382 -"filenotfound" => "找不到文件 \"$1\".",
383 -"unexpected" => "不正常值: \"$1\"=\"$2\".",
384 -"formerror" => "错误: 无法提交表单",
385 -"badarticleerror" => "This action cannot be performed on this page.",
386 -"cannotdelete" => "无法删除选定页或图像.",
387 -"badtitle" => "错误的标题", /* Bad title */
388 -"badtitletext" => "所请求页面的标题是无效的或者不存在,或者是错误的跨语言链接标题。",
389 -/* The requested page title was invalid, empty, or an incorrectly linked inter-language or inter-wiki title. */
 439+"filecopyerror" => "无法复制文件\"$1\"到\"$2\"。",
 440+"filerenameerror" => "无法重命名文件\"$1\" 到\"$2\"。",
 441+"filedeleteerror" => "无法删除文件 \"$1\"。",
 442+"filenotfound" => "找不到文件 \"$1\"。",
 443+"unexpected" => "不正常值: \"$1\"=\"$2\"。",
 444+"formerror" => "错误:无法提交表单",
 445+"badarticleerror" => "无法在本页上进行此项操作。",
 446+"cannotdelete" => "无法删除选定的页面或图像(它可能已经被其他人删除了)。",
 447+"badtitle" => "错误的标题",
 448+"badtitletext" => "所请求页面的标题是无效的、不存在,跨语言或跨wiki链接的标题错误。",
 449+"perfdisabled" => "抱歉!由于此项操作有可能造成数据库瘫痪,目前暂时无法使用。",
 450+"perfdisabledsub" => "这里是自$1的复制版本:",
390451
391 -# Login and logout pages
 452+# 登录与登出
392453 #
393454 "logouttitle" => "用户退出",
394 -"logouttext" => "你现在已经退出.
395 -你可以继续以匿名方式使用Wikipeida,或再次以相同或不同用户身份登录。\n",
 455+"logouttext" => "您现在已经退出。
 456+您可以继续以匿名方式使用Wikipeida,或再次以相同或不同用户身份登录。\n",
396457
397 -"welcomecreation" => "<h2>欢迎, $1!</h2><p>你的帐号已经建立,不要忘记设置Wikipedia个人参数。",
 458+"welcomecreation" => "<h2>欢迎,$1!</h2><p>您的帐号已经建立,不要忘记设置Wikipedia个人参数。",
398459
399460 "loginpagetitle" => "用户登录",
400 -"yourname" => "用户名",
401 -"yourpassword" => "密码",
402 -"yourpasswordagain" => "重复密码",
403 -"newusersonly" => " (仅限新用户)",
404 -"remembermypassword" => "下次登录记住密码.",
 461+"yourname" => "您的用户名",
 462+"yourpassword" => "您的密码",
 463+"yourpasswordagain" => "再次输入密码",
 464+"newusersonly" => "(仅限新用户)",
 465+"remembermypassword" => "下次登录记住密码。",
405466 "loginproblem" => "<b>登录有问题。</b><br>再试一次!",
406 -"alreadyloggedin" => "<font color=red><b> $1, 你已经登录了!</b></font><br>\n",
 467+"alreadyloggedin" => "<font color=red><b>用户$1,您已经登录了!</b></font><br>\n",
407468
408 -"areyounew" => "如果你是Wikipedia的新用户并想得到一个用户帐号,
 469+"areyounew" => "如果您是Wikipedia的新用户并想得到一个用户帐号,
409470 请输入用户名,然后重复输入密码两次。
410 -你可以选择输入电子邮件地址; 这样如果你忘了密码时可以要求将密码寄往你所输入的地址。<br>\n",
 471+您可以选择输入电子邮件地址; 这样如果你忘了密码时可以要求将密码寄往您所输入的地址。<br>\n",
411472
412 -"login" => "登录",
413 -"userlogin" => "用户登录",
414 -"logout" => "退出",
 473+"login" => "登录",
 474+"userlogin" => "用户登录",
 475+"logout" => "退出",
415476 "userlogout" => "用户退出",
416 -"createaccount" => "建立新帐号",
417 -"badretype" => "你所输入的密码并不相同。",
418 -"userexists" => "你所输入的用户名已有人使用。请另选一个。",
419 -
420 -"youremail" => "电子邮件",
421 -"yournick" => "绰号 (签名时用)",
422 -"emailforlost" => "如果你忘了你的密码, 你可以得到一个寄往你的电子邮件地址的新密码。",
 477+"createaccount" => "创建新帐号",
 478+ "createaccountmail" => "通过eMail",
 479+"badretype" => "你所输入的密码并不相同。",
 480+"userexists" => "您所输入的用户名已有人使用。请另选一个。",
 481+"youremail" => "您的电子邮件*",
 482+"yournick" => "绰号(签名时用)",
 483+"emailforlost" => "* 输入一个电邮地址并不是必须的。但是这将允许他人在您未告知的情况下通过电子邮件与您联系,如果您忘了密码的话电邮地址也会有帮助。",
423484 "loginerror" => "登录错误",
424 -"noname" => "你没有输入一个有效的用户名。",
 485+"noname" => "你没有输入一个有效的用户名。",
425486 "loginsuccesstitle" => "登录成功",
426487 "loginsuccess" => "你现在以 \"$1\"的身份登录Wikipedia。",
427 -"nosuchuser" => "找不到用户 \"$1\".
428 -检查是否输入错误,或使用下面的表单创建新帐号。",
429 -"wrongpassword" => "你所输入的密码错误。请再试一次。",
430 -"mailmypassword" => "请将密码寄给我。",
 488+"nosuchuser" => "找不到用户 \"$1\"。
 489+检查您的拼写,或者用下面的表格建立一个新帐号。",
 490+"wrongpassword" => "您输入的密码错误,请再试一次。",
 491+"mailmypassword" => "将新密码寄给我",
431492 "passwordremindertitle" => "Wikipedia密码提醒",
432 -"passwordremindertext" => "有人 (可能是你, 来自 IP 地址 $1)要求我们将新的Wikipedia登录密码寄给你。
433 -用户 \"$2\" 的密码现在是 \"$3\".
 493+"passwordremindertext" => "有人(可能是您,来自IP地址$1)要求我们将新的Wikipedia登录密码寄给你。
 494+用户 \"$2\" 的密码现在是 \"$3\"。
434495 请立即登录并更改密码。",
435 -"noemail" => "用户\"$1\"没有登记电子邮件地址。",
 496+"noemail" => "用户\"$1\"没有登记电子邮件地址。",
436497 "passwordsent" => "用户\"$1\"的新密码已经寄往所登记的电子邮件地址。
437498 请在收到后再登录。",
438499
439 -# Edit pages
 500+# 编辑
440501 #
441 -"summary" => "简述",
442 -"minoredit" => "这是一个细微修改",
443 -"savearticle" => "保存页面",
444 -"preview" => "预览",
 502+"summary" => "简述",
 503+"subject" => "主题",
 504+"minoredit" => "这是一个小修改",
 505+"watchthis" => "监视本页",
 506+"savearticle" => "保存本页",
 507+"preview" => "预览",
445508 "showpreview" => "显示预览",
446509 "blockedtitle" => "用户被封",
447 -"blockedtext" => "你的用户名或IP地址已被$1封。
448 -理由是:<br>$2<p>你可以联系管理员讨论。",
449 -"newarticle" => "(新)",
450 -"newarticletext" => "在这里输入新页面内容。",
451 -"noarticletext" => "(本页目前没有文字)",
452 -"updated" => "(更新)",
453 -"note" => "<strong>注意:</strong> ",
 510+"blockedtext" => "您的用户名或IP地址已被$1封。
 511+理由是:<br>'''$2'''<p>您可以与$1向其他任何[[Wikipedia:管理员|管理员]]询问。",
 512+ "whitelistedittitle" => "登录后才可编辑",
 513+ "whitelistedittext" => "您必须先[[Special:Userlogin|登录]]才可编辑页面。",
 514+ "whitelistreadtitle" => "登录后才可阅读",
 515+ "whitelistreadtext" => "您必须先[[Special:Userlogin|登录]]才可阅读页面。",
 516+ "whitelistacctitle" => "您被禁止建立帐号",
 517+ "whitelistacctext" => "在本Wiki中建立帐号您必须先[[Special:Userlogin|登录]]并拥有相关权限。",
 518+ "accmailtitle" => "密码寄出",
 519+ "accmailtext" => "'$1'的密码已经寄到$2。",
 520+"newarticle" => "(新)",
 521+"newarticletext" =>
 522+"您从一个链接进入了一个并不存在的页面。
 523+要创建该页面,请在下面的编辑框中输入内容(详情参见Wikipedia:帮助|帮助页面]])。
 524+如果您不小心来到本页面,直接点击您浏览器中的“返回”按钮。",
 525+
 526+"anontalkpagetext" => "---- ''这是一个还未建立帐号的匿名用户的对话页。我们因此只能用[[IP地址]]来与他/她联络。该IP地址可能由几名用户共享。如果您是一名匿名用户并认为本页上的评语与您无关,请[[Special:Userlogin|创建新帐号或登录]]以避免在未来于其他匿名用户混淆。''",
 527+"noarticletext" => "(本页目前没有内容)",
 528+"updated" => "(已更新)",
 529+"note" => "<strong>注意:</strong> ",
454530 "previewnote" => "请记住这只是预览,内容还未保存!",
455531 "previewconflict" => "这个预览显示了上面文字编辑区中的内容。它将在你选择保存后出现。",
456 -"editing" => "正在编辑$1",
457 -"editconflict" => "编辑冲突: $1",
 532+"editing" => "正在编辑$1",
 533+ "sectionedit" => " (段落)",
 534+ "commentedit" => " (评论)",
 535+"editconflict" => "编辑冲突:$1",
458536 "explainconflict" => "有人在你开始编辑后更改了页面。
459537 上面的文字框内显示的是目前本页的内容。
460538 你所做的修改显示在下面的文字框中。
461539 你应当将你所做的修改加入现有的内容中。
462540 <b>只有</b>在上面文字框中的内容会在你点击\"保存页面\"后被保存。\n<p>",
463 -"yourtext" => "你的文字",
 541+"yourtext" => "您的文字",
464542 "storedversion" => "已保存版本",
465543 "editingold" => "<strong>警告:你正在编辑的是本页的旧版本。
466544 如果你保存它的话,在本版本之后的任何修改都会丢失。</strong>\n",
467 -"yourdiff" => "不同",
 545+"yourdiff" => "差别",
468546 "copyrightwarning" => "请注意对Wikipedia的任何贡献都将被认为是在GNU自由文档协议证书下发布。
469547 (细节请见$1).
470 -如果你不希望你的文字被任意修改和再散布,请不要提交。<br>
471 -你同时也向我们保证你所提交的内容是你自己所作,或得自一个不受版权保护或相似自由的来源。
 548+如果您不希望您的文字被任意修改和再散布,请不要提交。<br>
 549+您同时也向我们保证你所提交的内容是你自己所作,或得自一个不受版权保护或相似自由的来源。
472550 <strong>不要在未获授权的情况下发表!</strong>",
473 -/* You are also promising us that you wrote this yourself, or copied it from a
474 -public domain or similar free resource. */
475551
 552+"longpagewarning" => "警告:本页长度达$1KB;一些浏览器将无法编辑长过32KB的文章。请考虑将本文切割成几个小段落。",
 553+
 554+"readonlywarning" => "警告:数据库被锁以进行维护,所以您目前将无法保存您的修改。您或许希望先将本断文字复制并保存到文本文件,然后等一会儿再修改。",
 555+"protectedpagewarning" => "警告:本页已经被保护,只有拥有管理员权限的用户才可修改。请确认您遵守
 556+<a href='/wiki/Wikipedia:Protected_page_guidelines'>保护页面守则</a>.",
 557+
476558 # History pages
477559 #
478 -"revhistory" => "修订历史", /* Revision history */
479 -"nohistory" => "没有本页的修订记录。",
480 -/* There is no edit history for this page. */
481 -"revnotfound" => "没有找到修订记录", /* Revision not found */
482 -"revnotfoundtext" => "您请求的更早版本的修订记录没有找到。请检查您请求本页面用的 URL 是否正确。\n",
483 -/* The old revision of the page you asked for could not be found.Please check the URL you used to access this page.\n */
484 -"loadhist" => "载入页面修订历史", /* Loading page history */
485 -"currentrev" => "Current revision", /* 当前修订版本 */
486 -"revisionasof" => "$1 的修订版本", /* Revision as of $1 */
487 -"cur" => "当前", /* cur */
488 -"next" => "后继", /* next */
489 -"last" => "先前", /* last */
490 -"orig" => "初始", /* orig */
 560+"revhistory" => "修订历史",
 561+"nohistory" => "没有本页的修订记录。",
 562+"revnotfound" => "没有找到修订记录",
 563+"revnotfoundtext" => "您请求的更早版本的修订记录没有找到。
 564+请检查您请求本页面用的 URL 是否正确。\n",
 565+"loadhist" => "载入页面修订历史",
 566+"currentrev" => "当前修订版本",
 567+"revisionasof" => "$1的修订版本",
 568+"cur" => "当前",
 569+"next" => "后继",
 570+"last" => "先前",
 571+"orig" => "初始",
491572 "histlegend" => "说明:(当前)指与当前修订版本比较;(先前)指与前一个修订版本比较,小 指细微修改。",
492 -/* Legend: (cur) = difference with current version,
493 -(last) = difference with preceding version, M = minor edit */
494573
495574 # Diffs
496575 #
497 -"difference" => "(修订版本间差异)", /* Difference between revisions */
498 -"loadingrev" => "载入修订版本比较", /* loading revision for diff */
499 -"lineno" => "第 $1 行:", /* Line $1:", */
 576+"difference" => "(修订版本间差异)",
 577+"loadingrev" => "载入修订版本比较",
 578+"lineno" => "第 $1 行:",
500579 "editcurrent" => "编辑本页的当前修订版本",
501 -/* Edit the current version of this page */
502580
503581 # Search results
504582 #
505 -"searchresults" => "Search results",
506 -"searchhelppage" => "Wikipedia:Searching",
507 -"searchingwikipedia" => "Searching Wikipedia",
508 -"searchresulttext" => "For more information about searching Wikipedia, see $1.",
509 -"searchquery" => "For query \"$1\"",
510 -"badquery" => "Badly formed search query",
511 -"badquerytext" => "We could not process your query.
512 -This is probably because you have attempted to search for a
513 -word fewer than three letters long, which is not yet supported.
514 -It could also be that you have mistyped the expression, for
515 -example \"fish and and scales\".
516 -Please try another query.",
517 -"matchtotals" => "The query \"$1\" matched $2 article titles
518 -and the text of $3 articles.",
519 -"titlematches" => "Article title matches",
520 -"notitlematches" => "No article title matches",
521 -"textmatches" => "Article text matches",
522 -"notextmatches" => "No article text matches",
523 -"prevn" => "previous $1",
524 -"nextn" => "next $1",
525 -"viewprevnext" => "View ($1) ($2) ($3).",
526 -"showingresults" => "Showing below <b>$1</b> results starting with #<b>$2</b>.",
527 -"nonefound" => "<strong>Note</strong>: unsuccessful searches are
528 -often caused by searching for common words like \"have\" and \"from\",
529 -which are not indexed, or by specifying more than one search term (only pages
530 -containing all of the search terms will appear in the result).",
531 -"powersearch" => "Search",
 583+"searchresults" => "搜索结果",
 584+"searchhelppage" => "Wikipedia:搜索",
 585+"searchingwikipedia" => "搜索Wikipedia",
 586+"searchresulttext" => "有关搜索Wikipedia的更多详情,参见$1。",
 587+"searchquery" => "查询\"$1\"",
 588+"badquery" => "搜索查询不正确",
 589+"badquerytext" => "我们无法处理您的查询。
 590+这可能是由于您试图搜索一个短于3个字母的外文单词,
 591+或者您错误地输入了搜索项,例如\"汽车和和火车\"。
 592+请再尝试一个新的搜索项。",
 593+"matchtotals" => "搜索项\"$1\"与$2条文章的题目相符,和$3条文章相符。",
 594+
 595+"nogomatch" => "没有文章与搜索项完全匹配,请尝试完整文字搜索。",
 596+"titlematches" => "文章题目相符",
 597+"notitlematches" => "没有找到匹配文章题目",
 598+"textmatches" => "文章内容相符",
 599+"notextmatches" => "没有文章内容匹配",
 600+
 601+"prevn" => "先前$1",
 602+"nextn" => "之后$1",
 603+"viewprevnext" => "查看 ($1) ($2) ($3).",
 604+"showingresults" => "下面显示<b>$1</b>条结果,从第<b>$2</b>条开始",
 605+"nonefound" => "<strong>注意:</strong>失败的搜索往往是由于试图搜索诸如“的”或“和”之类的常见字所引起。",
 606+"powersearch" => "搜索",
532607 "powersearchtext" => "
533 -Search in namespaces :<br>
534 -$1<br>
535 -$2 List redirects &nbsp; Search for $3 $9",
 608+搜索名字空间:<br>$1<br>$2列出重定向页面;搜索$3 $9",
536609
 610+"searchdisabled" => "<p>Wikipedia内部搜索功能由于高峰时段服务器超载而停止使用。
 611+您可以暂时通过
 612+<a href=\"http://google.com/\">google</a>搜索Wikipedia。
 613+谢谢您的耐心。
 614+<!-- Search Google -->
 615+<form id=\"google\" method=\"get\" action=\"http://www.google.com/custom\">
 616+<table bgcolor=\"#FFFFFF\" cellspacing=0 border=0>
 617+<tr valign=top><td>
 618+<a href=\"http://www.google.com/search\">
 619+<img src=\"http://www.google.com/logos/Logo_40wht.gif\" border=0
 620+alt=\"Google\" align=\"middle\"></a>
 621+</td>
 622+<td>
 623+<input type=text name=\"q\" size=31 maxlength=255 value=\"$1\">
 624+<input type=submit name=\"sa\" value=\"Google搜索\">
 625+<input type=hidden name=\"cof\" value=\"LW:135;L:http://zh.wikipedia.org/upload/wiki.png;LH:133;AH:left;S:http://www.wikiped<font face=arial,sans-serif size=-1>
 626+<input type=hidden name=\"domains\" value=\"zh.wikipedia.org\"><br>
 627+<input type=radio name=\"sitesearch\" value=\"\"> 搜索WWW
 628+<input type=radio name=\"sitesearch\" value=\"zh.wikipedia.org\" checked> 搜索zh.wikipedia.org </font><br>
 629+</td></tr></table></form>
 630+<!-- Search Google -->\n",
537631
538632 # Preferences page
539633 #
540634 "preferences" => "参数设置",
541635 "prefsnologin" => "还未登录",
542 -"prefsnologintext" => "你必须先<a href=\"" .
 636+"prefsnologintext" => "您必须先<a href=\"" .
543637 wfLocalUrl( "Special:Userlogin" ) . "\">登录</a>才能设置个人参数。",
544638 "prefslogintext" => "你已经以\"$1\"的身份登录。
545 -你的内部ID是$2.",
 639+你的内部ID是$2。",
546640 "prefsreset" => "参数重新设置。",
547641 "qbsettings" => "快速导航条设置",
548642 "changepassword" => "更改密码",
549 -"skin" => "Skin",
550 -"saveprefs" => "保存参数设置",
 643+"skin" => "Skin",
 644+"math" => "数学显示",
 645+"math_failure" => "无法解析",
 646+"math_unknown_error" => "未知错误",
 647+"math_unknown_function" => "未知函数",
 648+"math_lexing_error" => "句法错误",
 649+"math_syntax_error" => "语法错误",
 650+"saveprefs" => "保存参数设置",
551651 "resetprefs" => "重设参数",
552652 "oldpassword" => "旧密码",
553653 "newpassword" => "新密码",
554 -"retypenew" => "重复新密码",
 654+"retypenew" => "重复新密码",
555655 "textboxsize" => "文字框尺寸",
556 -"rows" => "行",
557 -"columns" => "列",
 656+"rows" => "行",
 657+"columns" => "列",
558658 "searchresultshead" => "搜索结果设定",
559 -"resultsperpage" => "每页显示连接数",
560 -"contextlines" => "每连接行数",
 659+"resultsperpage" => "每页显示链接数",
 660+"contextlines" => "每链接行数",
561661 "contextchars" => "每行字数",
562 -"stubthreshold" => "Threshold for stub display",
 662+"stubthreshold" => "stub显示基本限制",
563663 "recentchangescount" => "最近更改页行数",
564 -"savedprefs" => "你的个人参数设置已经保存。",
 664+"savedprefs" => "您的个人参数设置已经保存。",
565665 "timezonetext" => "输入当地时间与服务器时间(UTC)的时差。",
566666 "localtime" => "当地时间",
567667 "timezoneoffset" => "差",
568 -"emailflag" => "禁止其他用户发e-mail给我",
 668+"emailflag" => "禁止其他用户发e-mail给我",
569669
570670 # Recent changes
571671 #
 672+"changes" => "更改",
 673+"recentchanges" => "最近更改",
 674+"recentchangestext" => "本页跟踪Wikipedia内最新的更改。
 675+[[Wikipedia:欢迎,新来者|欢迎,新来者]]!
 676+请参见这些页面:[[wikipedia:常见问题解答|Wikipedia常见问题解答]]、
 677+[[Wikipedia:守则与指导|Wikipedia守则]]
 678+(特别是[[wikipedia:命名常规|命名常规]]、
 679+[[wikipedia:中性的观点|中立观点]])
 680+和[[wikipedia:最常见失礼行为|最常见失礼行为]]。
572681
573 -"recentchanges" => "最近更改", /* Recent changes */
574 -
575 -"recentchangestext" =>
576 -"本页用来察看 Wikipedia 最近的更改。
577 -请参看[[wikipedia:欢迎,新来者|欢迎,新来者]]、
578 -[[wikipedia:常见问题解答|常见问题解答]]、
579 -[[Wikipedia:守则与指导|参与者守则与指导]]
580 -(特别是[[Wikipedia:命名常规|命名常规]]、[[Wikipedia:中性的观点|中性的观点]])
581 -和[[Wikipedia:最常见失礼行为|最常见失礼行为]]。
582 -
583682 如果您希望 Wikipedia 成功,那么请您不要增加受其它[[wikipedia:版权信息|版权]]
584683 限制的材料,这一点将非常重要。相关的法律责任会伤害本项工程,所以请不要这样做。
585684 此外请参见
586 -[http://meta.wikipedia.org/wiki/Special:Recentchanges 最近的 meta 讨论]。
587 -",
588 -/*
589 -Track the most recent changes to Wikipedia on this page.
590 -[[Wikipedia:Welcome,_newcomers|Welcome, newcomers]]!
591 -Please have a look at these pages: [[wikipedia:FAQ|Wikipedia FAQ]],
592 -[[Wikipedia:Policies and guidelines|Wikipedia policy]]
593 -(especially [[wikipedia:Naming conventions|naming conventions]],
594 -[[wikipedia:Neutral point of view|neutral point of view]]),
595 -and [[wikipedia:Most common Wikipedia faux pas|most common Wikipedia faux pas]].
 685+[http://meta.wikipedia.org/wiki/Special:Recentchanges 最近的 meta 讨论]。",
596686
597 -If you want to see Wikipedia succeed, it's very important that you don't add
598 -material restricted by others' [[wikipedia:Copyrights|copyrights]].
599 -The legal liability could really hurt the project, so please don't do it.
600 -See also the [http://meta.wikipedia.org/wiki/Special:Recentchanges recent meta discussion].
601 -*/
 687+"rcloaderr" => "载入最近更改",
 688+"rcnote" => "下面是最近<strong>$2</strong>天内最新的<strong>$1</strong>次改动。",
 689+"rcnotefrom" => "下面是自<b>$2</b>(最多显示<b>$1</b>)。",
 690+"rclistfrom" => "显示自$1以来的新更改",
 691+# "rclinks" => "显示最后$2小时/$3天内的$1此修改",
 692+"rclinks" => "显示最近 $2 天内最新的 $1 次改动。",
 693+"rchide" => "以$4形式;$1个小修改;$2个二级名字空间;$3个多重修改",
 694+"diff" => "差异",
 695+"hist" => "历史",
 696+"hide" => "隐藏",
 697+"show" => "显示",
 698+"tableform" => "表格",
 699+"listform" => "列表",
 700+"nchanges" => "$1个更改",
 701+"minoreditletter" => "小",
 702+"newpageletter" => "新",
602703
603 -"rcloaderr" => "载入最近更改", /* Loading recent changes */
604 -"rcnote" => "下面是最近 <strong>$2</strong> 天内最新的 <strong>$1</strong> 次改动。",
605 -/* Below are the last <strong>$1</strong> changes in last <strong>$2</strong> days. */
606 -# "rclinks" => "Show last $1 changes in last $2 hours / last $3 days",
607 -"rclinks" => "显示最近 $2 天内最新的 $1 次改动。",
608 -/* Show last $1 changes in last $2 days. */
609 -"rchide" => "in $4 form; $1 minor edits; $2 secondary namespaces; $3 multiple edits.",
610 -/* in $4 form; $1 minor edits; $2 secondary namespaces; $3 multiple edits. */
611 -"diff" => "差异", /* diff */
612 -"hist" => "历史", /* hist */
613 -"hide" => "隐藏", /* hide */
614 -"show" => "显示", /* show */
615 -"tableform" => "表格", /* table */
616 -"listform" => "列表", /* list */
617 -"nchanges" => "$1 次更改", /* $1 changes */
618 -"minoreditletter" => "小", /* M */
619 -"newpageletter" => "新", /* N */
620 -
621704 # Upload
622705 #
623 -"upload" => "上载", /* Upload */
624 -"uploadbtn" => "上载文件",
 706+"upload" => "上载文件",
 707+"uploadbtn" => "上载文件",
625708 "uploadlink" => "上载图像",
626 -"reupload" => "重新上载",
 709+"reupload" => "重新上载",
627710 "reuploaddesc" => "返回上载表单。",
628711 "uploadnologin" => "未登录",
629712 "uploadnologintext" => "您必须先<a href=\"" .
@@ -657,18 +740,18 @@
658741 <ul>
659742 </ul>
660743 ",
661 -"filename" => "文件名",
662 -"filedesc" => "简述",
 744+"filename" => "文件名",
 745+"filedesc" => "简述",
663746 "affirmation" => "我保证本文件的版权持有人同意将其在$1条款下发布。",
664747 "copyrightpage" => "Wikipedia:版权信息",
665748 "copyrightpagename" => "Wikipedia版权",
666749 "uploadedfiles" => "已上载文件",
667 -"noaffirmation" => "您必须保证您所上载的文件没有违反任何版权法律。",
 750+"noaffirmation" => "您必须保证您上载的文件并没有侵犯版权。",
668751 "ignorewarning" => "忽略警告并保存文件。",
669752 "minlength" => "图像名字必须至少有三个字母。",
670 -"badfilename" => "图像名已被改为\"$1\".",
 753+"badfilename" => "图像名已被改为\"$1\"。",
671754 "badfiletype" => "\".$1\"不是所推荐的图像文件格式。",
672 -"largefile" => "我们建议图像大小不超过100k。",
 755+"largefile" => "我们建议图像大小不超过100kb。",
673756 "successfulupload" => "上载成功",
674757 "fileuploaded" => "文件\"$1\"上载成功。
675758 请根据连接($2)到图像描述页添加有关文件信息,例如它的来源,在何时由谁创造,
@@ -680,327 +763,325 @@
681764 # Image list
682765 #
683766 "imagelist" => "图像列表",
684 -"imagelisttext" => "以下是$1幅图像。",
 767+"imagelisttext" => "以下是按$2排列的$1幅图像列表。",
685768 "getimagelist" => "正在获取图像列表",
686769 "ilshowmatch" => "显示所有匹对的图像",
687770 "ilsubmit" => "搜索",
688 -"showlast" => "显示最后$1幅图像。",
 771+"showlast" => "显示按$2排列的最后$1幅图像。",
689772 "all" => "全部",
690 -"byname" => "按名字",
691 -"bydate" => "按日期",
692 -"bysize" => "按大小",
 773+"byname" => "名字",
 774+"bydate" => "日期",
 775+"bysize" => "大小",
693776 "imgdelete" => "删",
694777 "imgdesc" => "述",
695 -"imglegend" => "图标:(述) = 显示/编辑图像描述页。",
 778+"imglegend" => "说明:(述) = 显示/编辑图像描述页。",
696779 "imghistory" => "图像历史",
697 -"revertimg" => "恢复rev",
 780+"revertimg" => "复",
698781 "deleteimg" => "删",
699 -"imghistlegend" => "Legend: (现) = 目前的图像,(删) = 删除旧版本,
700 -(恢复) = 恢复到旧版本。
 782+"imghistlegend" => "egend: (现) = 目前的图像,(删) = 删除旧版本,
 783+(复) = 恢复到旧版本。
701784 <br><i>点击日期查看当天上载的图像</i>.",
702 -"imagelinks" => "图像连接",
 785+"imagelinks" => "图像链接",
 786+
703787 "linkstoimage" => "以下页面连接到本图像:",
704 -"nolinkstoimage" => "没有页面连接到本图像.",
 788+"nolinkstoimage" => "没有页面连接到本图像。",
705789
706790 # Statistics
707 -# 统计
708791 #
709 -
710 -"statistics" => "统计", /* Statistics */
711 -"sitestats" => "站点统计", /* Site statistics */
712 -"userstats" => "用户统计", /* User statistics */
713 -
 792+"statistics" => "统计",
 793+"sitestats" => "站点统计",
 794+"userstats" => "用户统计",
714795 "sitestatstext" => "数据库中共有 <b>$1</b> 页页面;
715796 其中包括对话页、关于 Wikipedia 的页面、最少量的\"stub\"页、重定向的页面,
716797 以及未达到条目质量的页面;除此之外还有 <b>$2</b> 页可能是合乎标准的条目。
717 -<p>从系统软件升级( 2002 年 10 月 27 日)以来,全站点共有页面浏览 <b>$3</b> 次,
 798+<p>从系统软件升级以来,全站点共有页面浏览 <b>$3</b> 次,
718799 页面编辑 <b>$4</b> 次,每页平均编辑 <b>$5</b> 次,
719800 各次编辑后页面的每个版本平均浏览 <b>$6</b> 次。",
720 -/* There are <b>$1</b> total pages in the database.
721 -This includes \"talk\" pages, pages about Wikipedia, minimal \"stub\"
722 -pages, redirects, and others that probably don't qualify as articles.
723 -Excluding those, there are <b>$2</b> pages that are probably legitimate
724 -articles.<p>There have been a total of <b>$3</b> page views, and <b>$4</b> page edits since the software was upgraded (July 20, 2002). That comes to <b>$5</b> average edits per page, and <b>$6</b> views per edit. */
725801
726 -"userstatstext" => "现有 <b>$1</b> 位注册用户,
727 -其中 <b>$2</b> 位是管理员(参见 $3 )。",
728 -/* There are <b>$1</b> registered users.<b>$2</b> of these are administrators (see $3). */
729 -
730 -
731802 # Maintenance Page
732803 #
733804 "maintenance" => "维护页",
734 -"maintnancepagetext" => "这页面提供了几个帮助Wikipedia日常维护的工具。但其中几个会对我们的数据库造成压力,所以请您不要在每修理好几个项目后就按重新载入 ;-)",
735 -"maintenancebacklink" => "回去维护页",
 805+"maintnancepagetext" => "这页面提供了几个帮助Wikipedia日常维护的工具。
 806+但其中几个会对我们的数据库造成压力,
 807+所以请您不要在每修理好几个项目后就按重新载入 ;-)",
 808+"maintenancebacklink" => "返回维护页",
736809 "disambiguations" => "消含糊页",
737810 "disambiguationspage" => "Wikipedia:Links_to_disambiguating_pages",
738811 "disambiguationstext" => "以下的条目都有到消含糊页的链接,但它们应该是链到适当的题目。<br>一个页面会被视为消含糊页如果它是链自$1.<br>由其它他名字空间来的链接<i>不会</i>在这儿被列出来。",
739 -"doubleredirects" => "雙重重定向",
740 -"doubleredirectstext" => "<b>请注意:</b>这列表可能包括不正确的反应。这通常表示在那页面第一个#REDIRECT之下还有文字。<br>\n每一行都包含到第一跟第二个重定向页的链接,以及第二个重定向页的第一行文字,通常显示的都会是\“真正\” 的目标页面,也就是第一个重定向页应该指向的条目。",
 812+"doubleredirects" => "双重重定向",
 813+"doubleredirectstext" => "<b>请注意:</b> 这列表可能包括不正确的反应。
 814+这通常表示在那页面第一个#REDIRECT之下还有文字。<br>\n
 815+每一行都包含到第一跟第二个重定向页的链接,以及第二个重定向页的第一行文字,
 816+通常显示的都会是\“真正\” 的目标页面,也就是第一个重定向页应该指向的条目。",
741817 "brokenredirects" => "损坏的重定向页",
742818 "brokenredirectstext" => "以下的重定向页指向的是不存在的条目。",
743819 "selflinks" => "有自我链接的页面",
744820 "selflinkstext" => "以下的页面都错误地包含了连到自己的链接。",
745 -"mispeelings" => "Pages with misspellings",
746 -"mispeelingstext" => "The following pages contain a common misspelling, which are listed on $1. The correct spelling might be given (like this).",
747 -"mispeelingspage" => "List of common misspellings",
748 -"missinglanguagelinks" => "Missing Language Links",
749 -"missinglanguagelinksbutton" => "Find missing language links for",
750 -"missinglanguagelinkstext" => "These articles do <i>not</i> link to their counterpart in $1. Redirects and subpages are <i>not</i> shown.",
 821+"mispeelings" => "拼写错误的页面",
 822+"mispeelingstext" => "以下页面包含了一些常见的拼写错误(见$1)。正确的拼法已经给出。",
 823+"mispeelingspage" => "常见拼写错误列表",
 824+"missinglanguagelinks" => "无语言链接",
 825+"missinglanguagelinksbutton" => "寻找没有该语言的页面",
 826+"missinglanguagelinkstext" => "这些条目<i>没有</i>链接到$1。
 827+重定向页与副页<b>并没有</b>包括在内。",
751828
752829
753830 # Miscellaneous special pages
754831 #
755 -"orphans" => "孤立页面", /* Orphaned pages */
756 -"lonelypages" => "孤立页面", /* Orphaned pages */
757 -"unusedimages" => "未用图像", /* Unused images */
758 -"popularpages" => "热点条目", /* Popular pages */
759 -"nviews" => "$1 次浏览", /* $1 views */
760 -"wantedpages" => "待撰页面", /* Wanted pages */
761 -"nlinks" => "$1 个链接", /* $1 links */
762 -"allpages" => "所有条目", /* All pages */
763 -"randompage" => "随机页面", /* Random page */
764 -"shortpages" => "短条目", /* Short pages */
765 -"longpages" => "长条目", /* Long pages */
766 -"listusers" => "用户列表", /* User list */
767 -"specialpages" => "特殊页面", /* Special pages */
768 -"spheading" => "特殊页面", /* Special pages */
769 -"sysopspheading" => "Special pages for sysop use", /* Special pages for sysop use */
770 -"developerspheading" => "Special pages for developer use", /* Special pages for developer use */
771 -"protectpage" => "保护页面", /* Protect page */
772 -"recentchangeslinked" => "链出更改", /* Watch links */
773 -"rclsub" => "(从 \"$1\"链出的页面)", /* to pages linked from \"$1\") */
774 -"debug" => "调试", /* Debug */
775 -"newpages" => "新页面", /* New pages */
776 -"movethispage" => "移动页面", /* Move this page */
777 -"unusedimagestext" => "<p>Please note that other web sites
778 -such as the international Wikipedias may link to an image with
779 -a direct URL, and so may still be listed here despite being
780 -in active use.", /* */
781 -"booksources" => "书目来源", /* Book sources */
782 -"booksourcetext" => "Below is a list of links to other sites that
783 -sell new and used books, and may also have further information
784 -about books you are looking for.
785 -Wikipedia is not affiliated with any of these businesses, and
786 -this list should not be construed as an endorsement.",
787 -/* */
 832+"orphans" => "孤立条目",
 833+"lonelypages" => "孤立页面",
 834+"unusedimages" => "未使用图像",
 835+"popularpages" => "热点条目",
 836+"nviews" => "$1次浏览",
 837+"wantedpages" => "待撰页面",
 838+"nlinks" => "$1个链接",
 839+"allpages" => "所有页面",
 840+"randompage" => "随机页面",
 841+"shortpages" => "短条目",
 842+"longpages" => "长条目",
 843+"listusers" => "用户列表",
 844+"specialpages" => "特殊页面",
 845+"spheading" => "特殊页面",
 846+"sysopspheading" => "管理员特殊页面",
 847+"developerspheading" => "发展者特殊页面",
 848+"protectpage" => "保护页面",
 849+"recentchangeslinked" => "链出更改",
 850+"rclsub" => "(从 \"$1\"链出的页面)",
 851+"debug" => "除错",
 852+"newpages" => "新页面",
 853+"intl" => "跨语言链接",
 854+"movethispage" => "移动本页",
 855+"unusedimagestext" => "<p>请注意其他网站(例如其他语言版本的Wikipedia)
 856+有可能直接链接本图像,所以这里列出的图像有可能依然被使用。",
 857+"booksources" => "战外书源",
 858+"booksourcetext" => "以下是链接到销售书籍的网站列表,
 859+因此有可能拥有您所寻找的图书的进一步资料。
 860+Wikipedia与这些公司并没有任何商业关系,因此本表不应该
 861+被看作是一种背书。",
 862+"alphaindexline" => "$1 到 $2",
788863
789864 # Email this user
790865 #
791 -"mailnologin" => "No send address",
792 -"mailnologintext" => "You must be <a href=\"" .
793 - wfLocalUrl( "Special:Userlogin" ) . "\">logged in</a>
794 -and have a valid e-mail address in your <a href=\"" .
795 - wfLocalUrl( "Special:Preferences" ) . "\">preferences</a>
796 -to send e-mail to other users.",
797 -"emailuser" => "给用户发信", /* E-mail this user */
798 -"emailpage" => "E-mail user",
799 -"emailpagetext" => "If this user has entered a valid e-mail address in
800 -is user preferences, the form below will send a single message.
801 -The e-mail address you entered in your user preferences will appear
802 -as the \"From\" address of the mail, so the recipient will be able
803 -to reply.",
804 -"noemailtitle" => "No e-mail address",
805 -"noemailtext" => "This user has not specified a valid e-mail address,
806 -or has chosen not to receive e-mail from other users.",
807 -"emailfrom" => "发件人", /* From*/
808 -"emailto" => "收件人", /* To*/
809 -"emailsubject" => "主题", /* Subject */
810 -"emailmessage" => "正文", /* Message */
811 -"emailsend" => "发送", /* Send */
812 -"emailsent" => "邮件发送", /* E-mail sent */
813 -"emailsenttext" => "您的邮件已经被发送",
814 -/* Your e-mail message has been sent. */
 866+"mailnologin" => "无电邮地址",
 867+"mailnologintext" => "您必须先<a href=\"" .
 868+ wfLocalUrl( "Special:Userlogin" ) . "\">登录</a>
 869+并在<a href=\"" .
 870+ wfLocalUrl( "Special:Preferences" ) . "\">参数设置</a>
 871+中有一个有效的e-mail地址才可以电邮其他用户。",
 872+"emailuser" => "E-mail该用户",
 873+"emailpage" => "E-mail用户",
 874+"emailpagetext" => "如果该用户已经在他或她的参数设置页中输入了有效的e-mail地址,以下的表格将寄一个信息给该用户。您在您参数设置中所输入的e-mail地址将出现在邮件“发件人”一栏中,这样该用户就可以回复您。",
 875+"noemailtitle" => "无e-mail地址",
 876+"noemailtext" => "该用户还没有指定一个有效的e-mail地址,
 877+或者选择不接受来自其他用户的e-mail。",
815878
 879+"emailfrom" => "发件人",
 880+"emailto" => "收件人",
 881+"emailsubject" => "主题",
 882+"emailmessage" => "信息",
 883+"emailsend" => "发送",
 884+"emailsent" => "E-mail已发送",
 885+"emailsenttext" => "您的e-mail已经发出。",
 886+
816887 # Watchlist
817888 #
 889+"watchlist" => "监视列表",
 890+"watchlistsub" => "(用户\"$1\")",
 891+"nowatchlist" => "您的监视列表为空。",
 892+"watchnologin" => "未登录",
 893+"watchnologintext" => "您必须先<a href=\"" .
 894+ wfLocalUrl( "Special:Userlogin" ) . "\">登录</a>
 895+才能更改您的监视列表",
 896+"addedwatch" => "加入到监视列表",
 897+"addedwatchtext" => "本页(“$1”)已经被加入到您的<a href=\"" .
 898+ wfLocalUrl( "Special:Watchlist" ) . "\">监视列表</a>中。
 899+未来有关它或它的对话页的任何修改将会在本页中列出,
 900+而且还会在<a href=\"" .
 901+ wfLocalUrl( "Special:Recentchanges" ) . "\">最近更改列表</a>中
 902+以<b>粗体</b>形式列出。</p>
818903
819 -"watchlist" => "监视列表", /* Watch list */
820 -"watchlistsub" => "(用户\"$1\")", /* (for user \"$1\") */
821 -"nowatchlist" => "You have no items on your watchlist.", /* */
822 -"watchnologin" => "Not logged in", /* */
823 -"watchnologintext" => "You must be <a href=\"" .
824 - wfLocalUrl( "Special:Userlogin" ) . "\">logged in</a>
825 -to modify your watchlist.",
826 -/* */
827 -"addedwatch" => "Added to watchlist", /* */
828 -"addedwatchtext" => "The page \"$1\" has been added to your <a href=\"" .
829 - wfLocalUrl( "Special:Watchlist" ) . "\">watchlist</a>.
830 -Future changes to this page and its associated Talk page will be listed there,
831 -and the page will appear <b>bolded</b> in the <a href=\"" .
832 - wfLocalUrl( "Special:Recentchanges" ) . "\">list of recent changes</a> to
833 -make it easier to pick out.</p>
 904+<p>如果您之后想将该页面从监视列表中删除,点击导航条中的“停止监视”链接。",
 905+"removedwatch" => "停止监视",
 906+"removedwatchtext" => "页面“$1”已经从您的监视页面中移除。",
 907+"watchthispage" => "监视本页",
 908+"unwatchthispage" => "停止监视",
 909+"notanarticle" => "不是条目",
 910+ "watchnochange" => "在显示的时间段内您所监视的页面没有更改。",
 911+ "watchdetails" => "($1个页面(不含对话页)被监视;
 912+ 总共$2个页面被编辑;
 913+ $3...
 914+ <a href='$4'>显示并编辑完整列表</a>.)",
 915+ "watchmethod-recent" => "检查被监视页面的最近编辑",
 916+ "watchmethod-list" => "checking watched pages for recent edits",
 917+ "removechecked" => "将被选页面从监视列表中移除",
 918+ "watchlistcontains" => "您的监视列表包含$1个页面。",
 919+ "watcheditlist" => "这里是您所监视的页面的列表。要移除某一页面,只要选择该页面然后点击”移除页面“按钮。",
 920+ "removingchecked" => "移除页面...",
 921+ "couldntremove" => "无法移除'$1'...",
 922+ "iteminvalidname" => "页面'$1'错误,无效命名...",
 923+ "wlnote" => "以下是最近<b>$2</b>小时内的最后$1次修改。",
834924
835 -<p>If you want to remove the page from your watchlist later, click \"Stop watching\" in the sidebar.",
836 - /* */
837 -"removedwatch" => "", /* Removed from watchlist */
838 -"removedwatchtext" => "The page \"$1\" has been removed from your watchlist.",
839 -/* */
840 -"watchthispage" => "监视本页", /* Watch this page */
841 -"unwatchthispage" => "停止监视", /* Stop watching */
842 -"notanarticle" => "Not an article",
843 -
844925 # Delete/protect/revert
845926 #
846 -"deletepage" => "Delete page",
847 -"confirm" => "Confirm",
848 -"confirmdelete" => "Confirm delete",
849 -"deletesub" => "(Deleting \"$1\")",
850 -"confirmdeletetext" => "You are about to permanently delete a page
851 -or image along with all of its history from the database.
852 -Please confirm that you intend to do this, that you understand the
853 -consequences, and that you are doing this in accordance with
854 -[[Wikipedia:Policy]].",
855 -"confirmcheck" => "Yes, I really want to delete this.",
856 -"actioncomplete" => "Action complete",
857 -"deletedtext" => "\"$1\" has been deleted.
858 -See $2 for a record of recent deletions.",
859 -"deletedarticle" => "deleted \"$1\"",
860 -"dellogpage" => "Deletion_log",
861 -"dellogpagetext" => "Below is a list of the most recent deletions.
862 -All times shown are server time (UTC).
 927+"deletepage" => "删除页面",
 928+"confirm" => "确认",
 929+"confirmdelete" => "确认删除",
 930+"deletesub" => "(正在删除“$1”)",
 931+"confirmdeletetext" => "您即将从数据库中永远删除一个页面或图像以及其历史。
 932+请确定您要进行此项操作,并且了解其后果,同时您的行为符合[[Wikipedia:守则与指导]]。
 933+",
 934+"confirmcheck" => "是的,我确定要删除。",
 935+"actioncomplete" => "操作完成",
 936+"deletedtext" => "“$1”已经被删除。
 937+最近删除的纪录请参见$2。",
 938+"deletedarticle" => "已删除“$1”",
 939+
 940+"dellogpage" => "删除纪录",
 941+"dellogpagetext" => "以下是最近删除的纪录列表。
 942+所有的时间都是使用服务器时间(UTC)。
863943 <ul>
864944 </ul>
865945 ",
866 -"deletionlog" => "deletion log",
867 -"reverted" => "Reverted to earlier revision",
868 -"deletecomment" => "Reason for deletion",
869 -"imagereverted" => "Revert to earlier version was successful.",
 946+"deletionlog" => "删除纪录",
 947+"reverted" => "恢复到早期版本",
 948+"deletecomment" => "删除理由",
 949+"imagereverted" => "恢复到早期版本操作完成。",
 950+"rollback" => "Roll back",
 951+"rollbacklink" => "rollback",
 952+"cantrollback" => "无法恢复编辑;最后的巩县者是本文的唯一作者。",
 953+"revertpage" => "恢复到$1的最后一次编辑",
870954
871955 # Undelete
872 -"undelete" => "Restore deleted page",
873 -"undeletepage" => "View and restore deleted pages",
874 -"undeletepagetext" => "The following pages have been deleted but are still in the archive and
875 -can be restored. The archive may be periodically cleaned out.",
876 -"undeletearticle" => "Restore deleted article",
877 -"undeleterevisions" => "$1 revisions archived",
878 -"undeletehistory" => "If you restore the page, all revisions will be restored to the history.
879 -If a new page with the same name has been created since the deletion, the restored
880 -revisions will appear in the prior history, and the current revision of the live page
881 -will not be automatically replaced.",
882 -"undeleterevision" => "Deleted revision as of $1",
883 -"undeletebtn" => "Restore!",
884 -"undeletedarticle" => "restored \"$1\"",
885 -"undeletedtext" => "The article [[$1]] has been successfully restored.
886 -See [[Wikipedia:Deletion_log]] for a record of recent deletions and restorations.",
 956+"undelete" => "恢复被删页面",
 957+"undeletepage" => "浏览及恢复被删页面",
 958+"undeletepagetext" => "以下页面已经被删除,但依然在档案中并可以被恢复。
 959+档案库可能被定时清理。",
 960+"undeletearticle" => "恢复被删文章",
 961+"undeleterevisions" => "$1版本存档",
 962+"undeletehistory" => "如果您恢复了该页面,所有版本都会被恢复到修订历史中。
 963+如果本页删除后有一个同名的新页面建立,
 964+被恢复的版本将会称为较新的历史,而新页面的当前版本将无法被自动复原。",
 965+"undeleterevision" => "删除$1时的版本",
 966+"undeletebtn" => "恢复!",
 967+"undeletedarticle" => "已经恢复“$1”",
 968+"undeletedtext" => "[[$1]]已经被成功复原。
 969+有关Wikipedia最近的删除与复原,参见[[Wikipedia:删除纪录]]",
887970
888971 # Contributions
889972 #
890 -"contributions" => "用户贡献", /* User contributions */
891 -"contribsub" => "For $1",
892 -"nocontribs" => "No changes were found matching these criteria.",
893 -"ucnote" => "Below are this user's last <b>$1</b> changes in the last <b>$2</b> days.",
894 -"uclinks" => "View the last $1 changes; view the last $2 days.",
 973+"contributions" => "用户贡献",
 974+"mycontris" => "我的贡献",
 975+"contribsub" => "为$1",
 976+"nocontribs" => "没有找到符合特征的更改。",
 977+"ucnote" => "以下是该用户最近<b><$2/b>天内的最后<b>$1</b>次修改。",
 978+"uclinks" => "参看最后$1次修改;参看最后$2天。",
 979+"uctop" => " (顶)" ,
895980
896981 # What links here
897982 #
898 -"whatlinkshere" => "链入页面", /* What links here */
899 -"notargettitle" => "No target", /* */
900 -"notargettext" => "You have not specified a target page or user
901 -to perform this function on.",
902 -/* */
 983+"whatlinkshere" => "链入页面",
 984+"notargettitle" => "无目标",
 985+"notargettext" => "您还没有指定一个目标页面或用户以进行此项操作。",
 986+"linklistsub" => "(链接列表)",
 987+"linkshere" => "以下页面链接到这里:",
 988+"nolinkshere" => "没有页面链接到这里。",
 989+"isredirect" => "重定向页",
903990
904 -"linklistsub" => "(链到本页的页面列表)", /* (List of links) */
905 -"linkshere" => "下列页面链接到本页:",
906 -/* The following pages link to here:", */
907 -"nolinkshere" => "没有页面连接到这里。", /* No pages link to here. */
908 -"isredirect" => "重定向页面", /* redirect page */
909 -
910991 # Block/unblock IP
911992 #
912 -"blockip" => "Block IP address",
913 -"blockiptext" => "Use the form below to block write access
914 -from a specific IP address.
915 -This should be done only only to prevent valndalism, and in
916 -accordance with [[Wikipedia:Policy|Wikipedia policy]].
917 -Fill in a specific reason below (for example, citing particular
918 -pages that were vandalized).",
919 -"ipaddress" => "IP Address",
920 -"ipbreason" => "Reason",
921 -"ipbsubmit" => "Block this address",
922 -"badipaddress" => "The IP address is badly formed.",
923 -"noblockreason" => "You must supply a reason for the block.",
924 -"blockipsuccesssub" => "Block succeeded",
925 -"blockipsuccesstext" => "The IP address \"$1\" has been blocked.
926 -<br>See [[Special:Ipblocklist|IP block list]] to review blocks.",
927 -"unblockip" => "Unblock IP address",
928 -"unblockiptext" => "Use the form below to restore write access
929 -to a previously blocked IP address.",
930 -"ipusubmit" => "Unblock this address",
931 -"ipusuccess" => "IP address \"$1\" unblocked",
932 -"ipblocklist" => "List of blocked IP addresses",
933 -"blocklistline" => "$1, $2 blocked $3",
934 -"blocklink" => "block",
935 -"unblocklink" => "unblock",
936 -"contribslink" => "contribs",
 993+"blockip" => "查封IP地址",
 994+"blockiptext" => "用下面的表单来禁止来自某一特定IP地址的修改权限。
 995+只有在为防止破坏,及符合[[Wikipedia:守则与指导]]的情况下才可采取此行动。
 996+请在下面输入一个具体的理由(例如引述一个被破坏的页面)。",
 997+"ipaddress" => "IP地址",
 998+"ipbreason" => "原因",
 999+"ipbsubmit" => "查封该地址",
 1000+"badipaddress" => "IP地址不正确。",
 1001+"noblockreason" => "您必须说明查封的具体理由。",
 1002+"blockipsuccesssub" => "查封成功",
 1003+"blockipsuccesstext" => "IP地址“$1”已经被查封。
 1004+<br>参看[[Special:被封IP地址列表|被封IP地址列表]]以复审查封。",
 1005+"unblockip" => "解除禁封IP地址",
 1006+"unblockiptext" => "用下面的表单来恢复先前被禁封的IP地址的书写权。",
 1007+"ipusubmit" => "解除禁封",
 1008+"ipusuccess" => "IP地址“$1”已经被解除禁封",
 1009+"ipblocklist" => "被封IP地址列表",
 1010+"blocklistline" => "$1,$2禁封$3",
 1011+"blocklink" => "禁封",
 1012+"unblocklink" => "解除禁封",
 1013+"contribslink" => "贡献",
9371014
9381015 # Developer tools
9391016 #
940 -"lockdb" => "Lock database",
941 -"unlockdb" => "Unlock database",
942 -"lockdbtext" => "Locking the database will suspend the ability of all
943 -users to edit pages, change their preferences, edit their watchlists, and
944 -other things requiring changes in the database.
945 -Please confirm that this is what you intend to do, and that you will
946 -unlock the database when your maintenance is done.",
947 -"unlockdbtext" => "Unlocking the database will restore the ability of all
948 -users to edit pages, change their preferences, edit their watchlists, and
949 -other things requiring changes in the database.
950 -Please confirm that this is what you intend to do.",
951 -"lockconfirm" => "Yes, I really want to lock the database.",
952 -"unlockconfirm" => "Yes, I really want to unlock the database.",
953 -"lockbtn" => "Lock database",
954 -"unlockbtn" => "Unlock database",
955 -"locknoconfirm" => "You did not check the confirmation box.",
956 -"lockdbsuccesssub" => "Database lock succeeded",
957 -"unlockdbsuccesssub" => "Database lock removed",
958 -"lockdbsuccesstext" => "The Wikipedia database has been locked.
959 -<br>Remember to remove the lock after your maintenance is complete.",
960 -"unlockdbsuccesstext" => "The Wikipedia database has been unlocked.",
 1017+"lockdb" => "禁止更改数据库",
 1018+"unlockdb" => "开放更改数据库",
 1019+"lockdbtext" => "锁住数据库将禁止所有用户进行编辑页面、更改参数、编辑监视列表以及其他需要更改数据库的操作。
 1020+请确认您的决定,并且保证您在维护工作结束后会重新开放数据库。",
 1021+"unlockdbtext" => "开放数据库将会恢复所有用户进行编辑页面、修改参数、编辑监视列表以及其他需要更改数据库的操作。
 1022+请确认您的决定。",
 1023+"lockconfirm" => "是的,我确实想要封锁数据库。",
 1024+"unlockconfirm" => "是的,我确实想要开放数据库。",
 1025+"lockbtn" => "数据库上锁",
 1026+"unlockbtn" => "开放数据库",
 1027+"locknoconfirm" => "您并没有勾选确认按钮。",
 1028+"lockdbsuccesssub" => "数据库成功上锁",
9611029
 1030+"unlockdbsuccesssub" => "数据库开放",
 1031+"lockdbsuccesstext" => "Wikipedia数据库已经上锁。
 1032+<br>请记住在维护完成后重新开放数据库。",
 1033+"unlockdbsuccesstext" => "Wikipedia数据库重新开放。",
 1034+
9621035 # SQL query
9631036 #
964 -"asksql" => "SQL query",
965 -"asksqltext" => "Use the form below to make a direct query of the
966 -Wikipedia database.
967 -Use single quotes ('like this') to delimit string literals.
968 -This can often add considerable load to the server, so please use
969 -this function sparingly.",
970 -"sqlquery" => "Enter query",
971 -"querybtn" => "Submit query",
972 -"selectonly" => "Queries other than \"SELECT\" are restricted to
973 -Wikipedia developers.",
974 -"querysuccessful" => "Query successful",
 1037+"asksql" => "SQL查询",
 1038+"asksqltext" => "用下面的表单对Wikipedia数据库进行直接查询。
 1039+使用单引号('像这样') 来分割字串符。
 1040+这样做有可能增加服务器的负担,所以请慎用本功能。",
 1041+"sqlquery" => "输入查询",
 1042+"querybtn" => "提交查询",
 1043+"selectonly" => "除了“SELECT”以外的所有查询都只限Wikipedia发展者使用。",
 1044+"querysuccessful" => "查询成功",
9751045
9761046 # Move page
9771047 #
978 -"movepage" => "移动页面", /* Move page */
979 -"movepagetext" => "Using the form below will rename a page, moving all
980 -of its history to the new name.
981 -The old title will become a redirect page to the new title.
982 -Links to the old page title will not be changed, and the talk
983 -page, if any, will not be moved.
984 -<b>WARNING!</b>
985 -This can be a drastic and unexpected change for a popular page;
986 -please be sure you understand the consequences of this before
987 -proceeding.",
988 -"movearticle" => "移动页面", /* Move page */
989 -"movenologin" => "Not logged in",
990 -"movenologintext" => "You must be a registered user and <a href=\"" .
991 - wfLocalUrl( "Special:Userlogin" ) . "\">logged in</a>
992 -to move a page.",
993 -"newtitle" => "To new title",
994 -"movepagebtn" => "移动页面", /* Move page */
995 -"pagemovedsub" => "移动成功", /* Move succeeded */
996 -"pagemovedtext" => "Page \"[[$1]]\" moved to \"[[$2]]\".",
997 -"articleexists" => "A page of that name already exists, or the
998 -name you have chosen is not valid.
999 -Please choose another name.",
1000 -"movedto" => "moved to",
1001 -"movetalk" => "Move \"talk\" page as well, if applicable.",
1002 -"talkpagemoved" => "The corresponding talk page was also moved.",
1003 -"talkpagenotmoved" => "The corresponding talk page was <strong>not</strong> moved.",
 1048+"movepage" => "移动页面",
 1049+"movepagetext" => "用下面的表单来重命名一个页面,并将其修订历史同时移动到新页面。
 1050+老的页面将成为新页面的重定向页。
 1051+链接到老页面的链接并不会自动更改;
 1052+请[[Special:Maintenance|检查]]双重或损坏重定向链接。
 1053+您应当负责确定所有链接依然会链到指定的页面。
10041054
 1055+注意如果新页面已经有内容的话,页面将'''不会'''被移动,
 1056+除非新页面无内容或是重定向页,而且没有修订历史。
 1057+这意味着您再必要时可以在移动到新页面后再移回老的页面,
 1058+同时您也无法覆盖现有页面。
 1059+
 1060+<b>警告!</b>
 1061+对一个经常被访问的页面而言这可能是一个重大与唐突的更改;
 1062+请在行动前先了结其所可能带来的后果。",
 1063+"movepagetalktext" => "有关的对话页(如果有的话)将被自动与该页面一起移动,'''除非''':
 1064+*您将页面移动到不同的名字空间(namespaces);
 1065+*新页面已经有一个包含内容的对话页,或者
 1066+*您不勾选下面的复选框。
 1067+
 1068+在这些情况下,您在必要时必须手工移动或合并页面。",
 1069+"movearticle" => "移动页面",
 1070+"movenologin" => "未登录",
 1071+"movenologintext" => "您必须是一名登记用户并且<a href=\"" .
 1072+ wfLocalUrl( "Special:Userlogin" ) . "\">登录</a>
 1073+后才可移动一个页面。",
 1074+"newtitle" => "新标题",
 1075+"movepagebtn" => "移动页面",
 1076+"pagemovedsub" => "移动成功",
 1077+"pagemovedtext" => "页面“[[$1]]”已经移动到“[[$2]]”。",
 1078+"articleexists" => "该名字的页面已经存在,或者您选择的名字无效。请再选一个名字。",
 1079+"talkexists" => "页面本身移动成功,
 1080+但是由于新标题下已经有对话页存在,所以对话页无法移动。请手工合并两个页面。",
 1081+"movedto" => "移动到",
 1082+"movetalk" => "如果可能的话,请同时移动对话页。",
 1083+"talkpagemoved" => "相应的对话页也已经移动。",
 1084+"talkpagenotmoved" => "相应的对话页<strong>没有</strong>被移动。",
 1085+
10051086 );
10061087
10071088 class LanguageZh extends LanguageUtf8 {
@@ -1032,7 +1113,14 @@
10331114 if ( 0 == strcasecmp( $n, $text ) ) { return $i; }
10341115 }
10351116 # Aliases
1036 - if ( 0 == strcasecmp( "Special", $text ) ) { return -1; }
 1117+ if ( 0 == strcasecmp( "特殊", $text ) ) { return -1; }
 1118+ if ( 0 == strcasecmp( "", $text ) ) { return ; }
 1119+ if ( 0 == strcasecmp( "对话", $text ) ) { return 1; }
 1120+ if ( 0 == strcasecmp( "用户", $text ) ) { return 2; }
 1121+ if ( 0 == strcasecmp( "用户对话", $text ) ) { return 3; }
 1122+ if ( 0 == strcasecmp( "Wikipedia_对话", $text ) ) { return 5; }
 1123+ if ( 0 == strcasecmp( "图像", $text ) ) { return 6; }
 1124+ if ( 0 == strcasecmp( "图像对话", $text ) ) { return 7; }
10371125 return false;
10381126 }
10391127
@@ -1046,6 +1134,10 @@
10471135 return $wgSkinNamesZh;
10481136 }
10491137
 1138+ function getMathNames() {
 1139+ global $wgMathNamesZh;
 1140+ return $wgMathNamesZh;
 1141+ }
10501142
10511143 function getUserToggles() {
10521144 global $wgUserTogglesZh;
@@ -1071,6 +1163,13 @@
10721164 return $wgMonthNamesZh[$key-1];
10731165 }
10741166
 1167+ /* by default we just return base form */
 1168+ function getMonthNameGen( $key )
 1169+ {
 1170+ global $wgMonthNamesZh;
 1171+ return $wgMonthNamesZh[$key-1];
 1172+ }
 1173+
10751174 function getMonthAbbreviation( $key )
10761175 {
10771176 global $wgMonthAbbreviationsZh;
@@ -1083,11 +1182,11 @@
10841183 return $wgWeekdayNamesZh[$key-1];
10851184 }
10861185
1087 - # The date and time functions can be tweaked if need be
 1186+# The date and time functions can be tweaked if need be
10881187
10891188 # inherit userAdjust()
1090 -
1091 - function date( $ts, $adj = false )
 1189+
 1190+ function date( $ts, $adj = false )
10921191 {
10931192 if ( $adj ) { $ts = $this->userAdjust( $ts ); }
10941193
@@ -1097,21 +1196,11 @@
10981197 return $d;
10991198 }
11001199
1101 - function time( $ts, $adj = false )
1102 - {
1103 - if ( $adj ) { $ts = $this->userAdjust( $ts ); }
1104 -
1105 - $t = substr( $ts, 8, 2 ) . ":" . substr( $ts, 10, 2 );
1106 - return $t;
1107 - }
1108 -
11091200 function timeanddate( $ts, $adj = false )
11101201 {
1111 - return $this->date( $ts, $adj ) . " " . $this->time( $ts, $adj );
 1202+ return $this->time( $ts, $adj ) . " " . $this->date( $ts, $adj );
11121203 }
11131204
1114 - # inherit default rfc1123()
1115 -
11161205 function getValidSpecialPages()
11171206 {
11181207 global $wgValidSpecialPagesZh;
@@ -1128,29 +1217,28 @@
11291218 {
11301219 global $wgDeveloperSpecialPagesZh;
11311220 return $wgDeveloperSpecialPagesZh;
 1221+
11321222 }
11331223
11341224 function getMessage( $key )
11351225 {
1136 - global $wgAllMessagesZh, $wgAllMessagesEn;
1137 - $m = $wgAllMessagesZh[$key];
 1226+ global $wgAllMessagesZh;
 1227+ return $wgAllMessagesZh[$key];
 1228+ }
11381229
1139 - if ( "" == $m ) { return $wgAllMessagesEn[$key]; }
1140 - else return $m;
1141 - }
1142 -
11431230 # inherit default iconv(), ucfirst(), checkTitleEncoding()
11441231
11451232 function stripForSearch( $string ) {
11461233 # MySQL fulltext index doesn't grok utf-8, so we
11471234 # need to fold cases and convert to hex
 1235+ # we also separate characters as "words"
11481236 global $wikiLowerChars;
11491237 return preg_replace(
11501238 "/([\\xc0-\\xff][\\x80-\\xbf]*)/e",
11511239 "' U8' . bin2hex( strtr( \"\$1\", \$wikiLowerChars ) )",
11521240 $string );
11531241 }
1154 -
11551242 }
11561243
 1244+
11571245 ?>

Status & tagging log