3 * This is the default English localisation file containing language specific
4 * information excluding interface strings, which are stored in JSON files.
6 * Please see https://www.mediawiki.org/wiki/Localisation for more information.
10 * Fallback language, used for all unspecified messages and behavior. This
11 * is English by default, for all files other than this one.
13 * Do NOT set this to false in any other message file! Leave the line out to
14 * accept the default fallback to "en".
19 * Is the language written right-to-left?
24 * Optional array mapping ASCII digits 0-9 to local digits.
26 $digitTransformTable = null;
29 * Transform table for decimal point '.' and thousands separator ','
31 $separatorTransformTable = null;
34 * The minimum number of digits a number must have, in addition to the grouping
35 * size, before grouping separators are added.
37 * For example, Polish has minimumGroupingDigits = 2, which with a grouping
38 * size of 3 causes 4-digit numbers to be written like 9999, but 5-digit
39 * numbers are written like "10 000".
41 $minimumGroupingDigits = 1;
44 * URLs do not specify their encoding. UTF-8 is used by default, but if the
45 * URL is not a valid UTF-8 sequence, we have to try to guess what the real
46 * encoding is. The encoding used in this case is defined below, and must be
47 * supported by iconv().
49 $fallback8bitEncoding = 'windows-1252';
52 * To allow "foo[[bar]]" to extend the link over the whole word "foobar"
54 $linkPrefixExtension = false;
57 * Namespace names. NS_PROJECT is always set to $wgMetaNamespace after the
58 * settings are loaded, it will be ignored even if you specify it here.
60 * NS_PROJECT_TALK will be set to $wgMetaNamespaceTalk if that variable is
61 * set, otherwise the string specified here will be used. The string may
62 * contain "$1", which will be replaced by the name of NS_PROJECT. It may
63 * also contain a grammatical transformation, e.g.
65 * NS_PROJECT_TALK => 'Keskustelu_{{grammar:elative|$1}}'
67 * Only one grammatical transform may be specified in the string. For
68 * performance reasons, this transformation is done locally by the language
69 * module rather than by the full wikitext parser. As a result, no other
70 * parser features are available.
74 NS_SPECIAL
=> 'Special',
78 NS_USER_TALK
=> 'User_talk',
79 # NS_PROJECT set by $wgMetaNamespace
80 NS_PROJECT_TALK
=> '$1_talk',
82 NS_FILE_TALK
=> 'File_talk',
83 NS_MEDIAWIKI
=> 'MediaWiki',
84 NS_MEDIAWIKI_TALK
=> 'MediaWiki_talk',
85 NS_TEMPLATE
=> 'Template',
86 NS_TEMPLATE_TALK
=> 'Template_talk',
88 NS_HELP_TALK
=> 'Help_talk',
89 NS_CATEGORY
=> 'Category',
90 NS_CATEGORY_TALK
=> 'Category_talk',
94 * Array of namespace aliases, mapping from name to NS_xxx index.
96 * Note that 'namespaceAliases' is a mergable language attribute,
97 * which means it is combined with other languages in the fallback chain.
100 // The canonical names of namespaces 6 and 7 are, as of MediaWik 1.14,
101 // "File" and "File_talk". The old names "Image" and "Image_talk" are
102 // retained as aliases for backwards compatibility.
103 // This must apply regardless of site language (and does, given 'en' is at
104 // the end of all fallback chains.)
106 'Image_talk' => NS_FILE_TALK
,
110 * Array of gender specific. namespace aliases.
111 * Mapping NS_xxx to array of GENDERKEY to alias.
114 * $namespaceGenderAliases = [
115 * NS_USER => [ 'male' => 'Male_user', 'female' => 'Female_user' ],
119 $namespaceGenderAliases = [];
122 * A list of date format preference keys, which can be selected in user
123 * preferences. New preference keys can be added, provided they are supported
124 * by the language class's timeanddate(). Only the 5 keys listed below are
125 * supported by the wikitext converter (parser/DateFormatter.php).
127 * The special key "default" is an alias for either dmy or mdy depending on
139 * The date format to use for generated dates in the user interface.
140 * This may be one of the above date preferences, or the special value
141 * "dmy or mdy", which uses mdy if $wgAmericanDates is true, and dmy
142 * if $wgAmericanDates is false.
144 $defaultDateFormat = 'dmy or mdy';
147 * Associative array mapping old numeric date formats, which may still be
148 * stored in user preferences, to the new string formats.
150 $datePreferenceMigrationMap = [
158 * These are formats for dates generated by MediaWiki (as opposed to the wikitext
159 * DateFormatter). Documentation for the format string can be found in
160 * Language.php, search for sprintfDate.
162 * This array is automatically inherited by all subclasses. Individual keys can be
167 'mdy date' => 'F j, Y',
168 'mdy monthonly' => 'F Y',
169 'mdy both' => 'H:i, F j, Y',
170 'mdy pretty' => 'F j',
173 'dmy date' => 'j F Y',
174 'dmy monthonly' => 'F Y',
175 'dmy both' => 'H:i, j F Y',
176 'dmy pretty' => 'j F',
179 'ymd date' => 'Y F j',
180 'ymd monthonly' => 'Y F',
181 'ymd both' => 'H:i, Y F j',
182 'ymd pretty' => 'F j',
184 'ISO 8601 time' => 'xnH:xni:xns',
185 'ISO 8601 date' => 'xnY-xnm-xnd',
186 'ISO 8601 monthonly' => 'xnY-xnm',
187 'ISO 8601 both' => 'xnY-xnm-xnd"T"xnH:xni:xns',
188 'ISO 8601 pretty' => 'xnm-xnd'
192 * Default list of book sources
195 'BWB' => 'https://www.betterworldbooks.com/product/detail/-$1',
196 'OpenLibrary' => 'https://openlibrary.org/isbn/$1',
197 'Worldcat' => 'https://www.worldcat.org/search?q=isbn:$1',
202 * Customizable syntax for wikitext and elsewhere.
204 * IDs must be valid identifiers, they cannot contain hyphens.
205 * CASE is 0 to match all case variants, 1 for case-sensitive
207 * Note to localisers:
208 * - Include the English magic words as synonyms. This allows people from
209 * other wikis that do not speak the language to contribute more easily.
210 * - The first alias listed MUST be the preferred alias in that language.
211 * Tools (like Visual Editor) are expected to use the first listed alias
212 * when editing or creating new content.
213 * - Order the other aliases so that common aliases occur before more rarely
214 * used aliases. The aliases SHOULD be sorted by the following convention:
215 * 1. Local first, English last, then
216 * 2. Most common first, least common last.
217 * @phpcs-require-sorted-array
223 'anchorencode' => [ 0, 'ANCHORENCODE' ],
224 'articlepath' => [ 0, 'ARTICLEPATH' ],
225 'basepagename' => [ 1, 'BASEPAGENAME' ],
226 'basepagenamee' => [ 1, 'BASEPAGENAMEE' ],
227 'bcp47' => [ 1, '#bcp47' ],
228 'bidi' => [ 0, 'BIDI:' ],
229 'canonicalurl' => [ 0, 'CANONICALURL:' ],
230 'canonicalurle' => [ 0, 'CANONICALURLE:' ],
231 'cascadingsources' => [ 1, 'CASCADINGSOURCES' ],
232 'contentlanguage' => [ 1, 'CONTENTLANGUAGE', 'CONTENTLANG' ],
233 'currentday' => [ 1, 'CURRENTDAY' ],
234 'currentday2' => [ 1, 'CURRENTDAY2' ],
235 'currentdayname' => [ 1, 'CURRENTDAYNAME' ],
236 'currentdow' => [ 1, 'CURRENTDOW' ],
237 'currenthour' => [ 1, 'CURRENTHOUR' ],
238 'currentmonth' => [ 1, 'CURRENTMONTH', 'CURRENTMONTH2' ],
239 'currentmonth1' => [ 1, 'CURRENTMONTH1' ],
240 'currentmonthabbrev' => [ 1, 'CURRENTMONTHABBREV' ],
241 'currentmonthname' => [ 1, 'CURRENTMONTHNAME' ],
242 'currentmonthnamegen' => [ 1, 'CURRENTMONTHNAMEGEN' ],
243 'currenttime' => [ 1, 'CURRENTTIME' ],
244 'currenttimestamp' => [ 1, 'CURRENTTIMESTAMP' ],
245 'currentversion' => [ 1, 'CURRENTVERSION' ],
246 'currentweek' => [ 1, 'CURRENTWEEK' ],
247 'currentyear' => [ 1, 'CURRENTYEAR' ],
248 'defaultsort' => [ 1, 'DEFAULTSORT:', 'DEFAULTSORTKEY:', 'DEFAULTCATEGORYSORT:' ],
249 'defaultsort_noerror' => [ 0, 'noerror' ],
250 'defaultsort_noreplace' => [ 0, 'noreplace' ],
251 'dir' => [ 1, '#dir' ],
252 'directionmark' => [ 1, 'DIRECTIONMARK', 'DIRMARK' ],
253 'displaytitle' => [ 1, 'DISPLAYTITLE' ],
254 'displaytitle_noerror' => [ 0, 'noerror' ],
255 'displaytitle_noreplace' => [ 0, 'noreplace' ],
256 'expectunusedcategory' => [ 1, '__EXPECTUNUSEDCATEGORY__', ],
257 'expectunusedtemplate' => [ 1, '__EXPECTUNUSEDTEMPLATE__', ],
258 'filepath' => [ 0, 'FILEPATH:' ],
259 'forcetoc' => [ 0, '__FORCETOC__' ],
260 'formal' => [ 1, '#FORMAL:' ],
261 'formatdate' => [ 0, 'formatdate', 'dateformat' ],
262 'formatnum' => [ 0, 'FORMATNUM' ],
263 'fullpagename' => [ 1, 'FULLPAGENAME' ],
264 'fullpagenamee' => [ 1, 'FULLPAGENAMEE' ],
265 'fullurl' => [ 0, 'FULLURL:' ],
266 'fullurle' => [ 0, 'FULLURLE:' ],
267 'gender' => [ 0, 'GENDER:' ],
268 'grammar' => [ 0, 'GRAMMAR:' ],
269 'hiddencat' => [ 1, '__HIDDENCAT__' ],
270 'img_alt' => [ 1, 'alt=$1' ],
271 'img_baseline' => [ 1, 'baseline' ],
272 'img_border' => [ 1, 'border' ],
273 'img_bottom' => [ 1, 'bottom' ],
274 'img_center' => [ 1, 'center', 'centre' ],
275 'img_class' => [ 1, 'class=$1' ],
276 'img_framed' => [ 1, 'frame', 'framed', 'enframed' ],
277 'img_frameless' => [ 1, 'frameless' ],
278 'img_lang' => [ 1, 'lang=$1' ],
279 'img_left' => [ 1, 'left' ],
280 'img_link' => [ 1, 'link=$1' ],
281 'img_manualthumb' => [ 1, 'thumbnail=$1', 'thumb=$1' ],
282 'img_middle' => [ 1, 'middle' ],
283 'img_none' => [ 1, 'none' ],
284 'img_page' => [ 1, 'page=$1', 'page $1' ],
285 'img_right' => [ 1, 'right' ],
286 'img_sub' => [ 1, 'sub' ],
287 'img_super' => [ 1, 'super', 'sup' ],
288 'img_text_bottom' => [ 1, 'text-bottom' ],
289 'img_text_top' => [ 1, 'text-top' ],
290 'img_thumbnail' => [ 1, 'thumb', 'thumbnail' ],
291 'img_top' => [ 1, 'top' ],
292 'img_upright' => [ 1, 'upright', 'upright=$1', 'upright $1' ],
293 'img_width' => [ 1, '$1px' ],
294 'index' => [ 1, '__INDEX__' ],
295 'int' => [ 0, 'INT:' ],
296 'interlanguagelink' => [ 1, '#interlanguagelink' ],
297 'interwikilink' => [ 1, '#interwikilink' ],
298 'language' => [ 0, '#LANGUAGE' ],
299 'language_option_bcp47' => [ 1, 'bcp47' ],
300 'lc' => [ 0, 'LC:' ],
301 'lcfirst' => [ 0, 'LCFIRST:' ],
302 'localday' => [ 1, 'LOCALDAY' ],
303 'localday2' => [ 1, 'LOCALDAY2' ],
304 'localdayname' => [ 1, 'LOCALDAYNAME' ],
305 'localdow' => [ 1, 'LOCALDOW' ],
306 'localhour' => [ 1, 'LOCALHOUR' ],
307 'localmonth' => [ 1, 'LOCALMONTH', 'LOCALMONTH2' ],
308 'localmonth1' => [ 1, 'LOCALMONTH1' ],
309 'localmonthabbrev' => [ 1, 'LOCALMONTHABBREV' ],
310 'localmonthname' => [ 1, 'LOCALMONTHNAME' ],
311 'localmonthnamegen' => [ 1, 'LOCALMONTHNAMEGEN' ],
312 'localtime' => [ 1, 'LOCALTIME' ],
313 'localtimestamp' => [ 1, 'LOCALTIMESTAMP' ],
314 'localurl' => [ 0, 'LOCALURL:' ],
315 'localurle' => [ 0, 'LOCALURLE:' ],
316 'localweek' => [ 1, 'LOCALWEEK' ],
317 'localyear' => [ 1, 'LOCALYEAR' ],
318 'msg' => [ 0, 'MSG:' ],
319 'msgnw' => [ 0, 'MSGNW:' ],
320 'namespace' => [ 1, 'NAMESPACE' ],
321 'namespacee' => [ 1, 'NAMESPACEE' ],
322 'namespacenumber' => [ 1, 'NAMESPACENUMBER' ],
323 'newsectionlink' => [ 1, '__NEWSECTIONLINK__' ],
324 'nocommafysuffix' => [ 0, 'NOSEP' ],
325 'nocontentconvert' => [ 0, '__NOCONTENTCONVERT__', '__NOCC__' ],
326 'noeditsection' => [ 0, '__NOEDITSECTION__' ],
327 'nogallery' => [ 0, '__NOGALLERY__' ],
328 'noindex' => [ 1, '__NOINDEX__' ],
329 'nonewsectionlink' => [ 1, '__NONEWSECTIONLINK__' ],
330 'notitleconvert' => [ 0, '__NOTITLECONVERT__', '__NOTC__' ],
331 'notoc' => [ 0, '__NOTOC__' ],
332 'ns' => [ 0, 'NS:' ],
333 'nse' => [ 0, 'NSE:' ],
334 'numberingroup' => [ 1, 'NUMBERINGROUP', 'NUMINGROUP' ],
335 'numberofactiveusers' => [ 1, 'NUMBEROFACTIVEUSERS' ],
336 'numberofadmins' => [ 1, 'NUMBEROFADMINS' ],
337 'numberofarticles' => [ 1, 'NUMBEROFARTICLES' ],
338 'numberofedits' => [ 1, 'NUMBEROFEDITS' ],
339 'numberoffiles' => [ 1, 'NUMBEROFFILES' ],
340 'numberofpages' => [ 1, 'NUMBEROFPAGES' ],
341 'numberofusers' => [ 1, 'NUMBEROFUSERS' ],
342 'padleft' => [ 0, 'PADLEFT' ],
343 'padright' => [ 0, 'PADRIGHT' ],
344 'pageid' => [ 0, 'PAGEID' ],
345 'pagelanguage' => [ 1, 'PAGELANGUAGE' ],
346 'pagename' => [ 1, 'PAGENAME' ],
347 'pagenamee' => [ 1, 'PAGENAMEE' ],
348 'pagesincategory' => [ 1, 'PAGESINCATEGORY', 'PAGESINCAT' ],
349 'pagesincategory_all' => [ 0, 'all' ],
350 'pagesincategory_files' => [ 0, 'files' ],
351 'pagesincategory_pages' => [ 0, 'pages' ],
352 'pagesincategory_subcats' => [ 0, 'subcats' ],
353 'pagesinnamespace' => [ 1, 'PAGESINNAMESPACE:', 'PAGESINNS:' ],
354 'pagesize' => [ 1, 'PAGESIZE' ],
355 'plural' => [ 0, 'PLURAL:' ],
356 'protectionexpiry' => [ 1, 'PROTECTIONEXPIRY' ],
357 'protectionlevel' => [ 1, 'PROTECTIONLEVEL' ],
358 'raw' => [ 0, 'RAW:' ],
359 'rawsuffix' => [ 1, 'R' ],
360 'redirect' => [ 0, '#REDIRECT' ],
361 'revisionday' => [ 1, 'REVISIONDAY' ],
362 'revisionday2' => [ 1, 'REVISIONDAY2' ],
363 'revisionid' => [ 1, 'REVISIONID' ],
364 'revisionmonth' => [ 1, 'REVISIONMONTH' ],
365 'revisionmonth1' => [ 1, 'REVISIONMONTH1' ],
366 'revisionsize' => [ 1, 'REVISIONSIZE' ],
367 'revisiontimestamp' => [ 1, 'REVISIONTIMESTAMP' ],
368 'revisionuser' => [ 1, 'REVISIONUSER' ],
369 'revisionyear' => [ 1, 'REVISIONYEAR' ],
370 'rootpagename' => [ 1, 'ROOTPAGENAME' ],
371 'rootpagenamee' => [ 1, 'ROOTPAGENAMEE' ],
372 'safesubst' => [ 0, 'SAFESUBST:' ],
373 'scriptpath' => [ 0, 'SCRIPTPATH' ],
374 'server' => [ 0, 'SERVER' ],
375 'servername' => [ 0, 'SERVERNAME' ],
376 'sitename' => [ 1, 'SITENAME' ],
377 'special' => [ 0, 'special' ],
378 'speciale' => [ 0, 'speciale' ],
379 'staticredirect' => [ 1, '__STATICREDIRECT__' ],
380 'stylepath' => [ 0, 'STYLEPATH' ],
381 'subjectpagename' => [ 1, 'SUBJECTPAGENAME', 'ARTICLEPAGENAME' ],
382 'subjectpagenamee' => [ 1, 'SUBJECTPAGENAMEE', 'ARTICLEPAGENAMEE' ],
383 'subjectspace' => [ 1, 'SUBJECTSPACE', 'ARTICLESPACE' ],
384 'subjectspacee' => [ 1, 'SUBJECTSPACEE', 'ARTICLESPACEE' ],
385 'subpagename' => [ 1, 'SUBPAGENAME' ],
386 'subpagenamee' => [ 1, 'SUBPAGENAMEE' ],
387 'subst' => [ 0, 'SUBST:' ],
388 'tag' => [ 0, 'tag' ],
389 'talkpagename' => [ 1, 'TALKPAGENAME' ],
390 'talkpagenamee' => [ 1, 'TALKPAGENAMEE' ],
391 'talkspace' => [ 1, 'TALKSPACE' ],
392 'talkspacee' => [ 1, 'TALKSPACEE' ],
393 'toc' => [ 0, '__TOC__' ],
394 'uc' => [ 0, 'UC:' ],
395 'ucfirst' => [ 0, 'UCFIRST:' ],
396 'urlencode' => [ 0, 'URLENCODE:' ],
397 'url_path' => [ 0, 'PATH' ],
398 'url_query' => [ 0, 'QUERY' ],
399 'url_wiki' => [ 0, 'WIKI' ],
400 'userlanguage' => [ 1, 'USERLANGUAGE' ],
404 * Alternate names of special pages. All names are case-insensitive. The first
405 * listed alias will be used as the default. Aliases from the fallback
406 * localisation (usually English) will be included by default.
407 * @phpcs-require-sorted-array
409 $specialPageAliases = [
410 'Activeusers' => [ 'ActiveUsers' ],
411 'Allmessages' => [ 'AllMessages' ],
412 'AllMyUploads' => [ 'AllMyUploads', 'AllMyFiles' ],
413 'Allpages' => [ 'AllPages' ],
414 'Ancientpages' => [ 'AncientPages' ],
415 'ApiHelp' => [ 'ApiHelp' ],
416 'ApiSandbox' => [ 'ApiSandbox' ],
417 'AuthenticationPopupSuccess' => [ 'AuthenticationPopupSuccess' ],
418 'AutoblockList' => [ 'AutoblockList', 'ListAutoblocks' ],
419 'Badtitle' => [ 'Badtitle' ],
420 'Blankpage' => [ 'BlankPage' ],
421 'Block' => [ 'Block', 'BlockIP', 'BlockUser' ],
422 'BlockList' => [ 'BlockList', 'ListBlocks', 'IPBlockList' ],
423 'Booksources' => [ 'BookSources' ],
424 'BotPasswords' => [ 'BotPasswords' ],
425 'BrokenRedirects' => [ 'BrokenRedirects' ],
426 'Categories' => [ 'Categories' ],
427 'ChangeContentModel' => [ 'ChangeContentModel' ],
428 'ChangeCredentials' => [ 'ChangeCredentials' ],
429 'ChangeEmail' => [ 'ChangeEmail' ],
430 'ChangePassword' => [ 'ChangePassword', 'ResetPass', 'ResetPassword' ],
431 'ComparePages' => [ 'ComparePages' ],
432 'Confirmemail' => [ 'ConfirmEmail' ],
433 'Contribute' => [ 'Contribute' ],
434 'Contributions' => [ 'Contributions', 'Contribs' ],
435 'CreateAccount' => [ 'CreateAccount' ],
436 'Deadendpages' => [ 'DeadendPages' ],
437 'DeletedContributions' => [ 'DeletedContributions' ],
438 'DeletePage' => [ 'DeletePage', 'Delete' ],
439 'Diff' => [ 'Diff' ],
440 'DoubleRedirects' => [ 'DoubleRedirects' ],
441 'EditPage' => [ 'EditPage', 'Edit' ],
442 'EditRecovery' => [ 'EditRecovery' ],
443 'EditTags' => [ 'EditTags' ],
444 'EditWatchlist' => [ 'EditWatchlist' ],
445 'Emailuser' => [ 'EmailUser', 'Email' ],
446 'ExpandTemplates' => [ 'ExpandTemplates' ],
447 'Export' => [ 'Export' ],
448 'Fewestrevisions' => [ 'FewestRevisions' ],
449 'FileDuplicateSearch' => [ 'FileDuplicateSearch' ],
450 'Filepath' => [ 'FilePath' ],
451 'GoToInterwiki' => [ 'GoToInterwiki' ],
452 'Import' => [ 'Import' ],
453 'Interwiki' => [ 'Interwiki' ],
454 'Invalidateemail' => [ 'InvalidateEmail' ],
455 'JavaScriptTest' => [ 'JavaScriptTest' ],
456 'LinkAccounts' => [ 'LinkAccounts' ],
457 'LinkSearch' => [ 'LinkSearch' ],
458 'Listadmins' => [ 'ListAdmins' ],
459 'Listbots' => [ 'ListBots' ],
460 'ListDuplicatedFiles' => [ 'ListDuplicatedFiles', 'ListFileDuplicates' ],
461 'Listfiles' => [ 'ListFiles', 'FileList', 'ImageList' ],
462 'Listgrants' => [ 'ListGrants' ],
463 'Listgrouprights' => [ 'ListGroupRights', 'UserGroupRights' ],
464 'Listredirects' => [ 'ListRedirects' ],
465 'Listusers' => [ 'ListUsers', 'UserList', 'Users' ],
466 'Lockdb' => [ 'LockDB' ],
467 'Log' => [ 'Log', 'Logs' ],
468 'Lonelypages' => [ 'LonelyPages', 'OrphanedPages' ],
469 'Longpages' => [ 'LongPages' ],
470 'MediaStatistics' => [ 'MediaStatistics' ],
471 'MergeHistory' => [ 'MergeHistory' ],
472 'MIMEsearch' => [ 'MIMESearch' ],
473 'Mostcategories' => [ 'MostCategories' ],
474 'Mostimages' => [ 'MostLinkedFiles', 'MostFiles', 'MostImages' ],
475 'Mostinterwikis' => [ 'MostInterwikis' ],
476 'Mostlinked' => [ 'MostLinkedPages', 'MostLinked' ],
477 'Mostlinkedcategories' => [ 'MostLinkedCategories', 'MostUsedCategories' ],
478 'Mostlinkedtemplates' => [ 'MostTranscludedPages', 'MostLinkedTemplates', 'MostUsedTemplates' ],
479 'Mostrevisions' => [ 'MostRevisions' ],
480 'Movepage' => [ 'MovePage' ],
481 'Mute' => [ 'Mute' ],
482 'Mycontributions' => [ 'MyContributions', 'MyContribs' ],
483 'MyLanguage' => [ 'MyLanguage' ],
484 'Mylog' => [ 'MyLog' ],
485 'Mypage' => [ 'MyPage' ],
486 'Mytalk' => [ 'MyTalk' ],
487 'Myuploads' => [ 'MyUploads', 'MyFiles' ],
488 'NamespaceInfo' => [ 'NamespaceInfo' ],
489 'Newimages' => [ 'NewFiles', 'NewImages' ],
490 'Newpages' => [ 'NewPages' ],
491 'NewSection' => [ 'NewSection', 'Newsection' ],
492 'PageData' => [ 'PageData' ],
493 'PageHistory' => [ 'PageHistory', 'History' ],
494 'PageInfo' => [ 'PageInfo', 'Info' ],
495 'PageLanguage' => [ 'PageLanguage' ],
496 'PagesWithProp' => [ 'PagesWithProp', 'Pageswithprop', 'PagesByProp', 'Pagesbyprop' ],
497 'PasswordPolicies' => [ 'PasswordPolicies' ],
498 'PasswordReset' => [ 'PasswordReset' ],
499 'PermanentLink' => [ 'PermanentLink', 'PermaLink' ],
500 'Preferences' => [ 'Preferences' ],
501 'Prefixindex' => [ 'PrefixIndex' ],
502 'Protectedpages' => [ 'ProtectedPages' ],
503 'Protectedtitles' => [ 'ProtectedTitles' ],
504 'ProtectPage' => [ 'ProtectPage', 'Protect' ],
505 'Purge' => [ 'Purge' ],
506 'RandomInCategory' => [ 'RandomInCategory' ],
507 'Randompage' => [ 'Random', 'RandomPage' ],
508 'Randomredirect' => [ 'RandomRedirect' ],
509 'Randomrootpage' => [ 'RandomRootpage' ],
510 'Recentchanges' => [ 'RecentChanges' ],
511 'Recentchangeslinked' => [ 'RecentChangesLinked', 'RelatedChanges' ],
512 'Redirect' => [ 'Redirect' ],
513 'RemoveCredentials' => [ 'RemoveCredentials' ],
514 'Renameuser' => [ 'RenameUser' ],
515 'ResetTokens' => [ 'ResetTokens' ],
516 'RestSandbox' => [ 'RestSandbox' ],
517 'Revisiondelete' => [ 'RevisionDelete' ],
518 'RunJobs' => [ 'RunJobs' ],
519 'Search' => [ 'Search' ],
520 'Shortpages' => [ 'ShortPages' ],
521 'Specialpages' => [ 'SpecialPages' ],
522 'Statistics' => [ 'Statistics', 'Stats' ],
523 'Tags' => [ 'Tags' ],
524 'TalkPage' => [ 'TalkPage' ],
525 'TrackingCategories' => [ 'TrackingCategories' ],
526 'Unblock' => [ 'Unblock' ],
527 'Uncategorizedcategories' => [ 'UncategorizedCategories' ],
528 'Uncategorizedimages' => [ 'UncategorizedFiles', 'UncategorizedImages' ],
529 'Uncategorizedpages' => [ 'UncategorizedPages' ],
530 'Uncategorizedtemplates' => [ 'UncategorizedTemplates' ],
531 'Undelete' => [ 'Undelete' ],
532 'UnlinkAccounts' => [ 'UnlinkAccounts' ],
533 'Unlockdb' => [ 'UnlockDB' ],
534 'Unusedcategories' => [ 'UnusedCategories' ],
535 'Unusedimages' => [ 'UnusedFiles', 'UnusedImages' ],
536 'Unusedtemplates' => [ 'UnusedTemplates' ],
537 'Unwatchedpages' => [ 'UnwatchedPages' ],
538 'Upload' => [ 'Upload' ],
539 'UploadStash' => [ 'UploadStash' ],
540 'Userlogin' => [ 'UserLogin', 'Login' ],
541 'Userlogout' => [ 'UserLogout', 'Logout' ],
542 'Userrights' => [ 'UserRights', 'MakeSysop', 'MakeBot' ],
543 'Version' => [ 'Version' ],
544 'Wantedcategories' => [ 'WantedCategories' ],
545 'Wantedfiles' => [ 'WantedFiles' ],
546 'Wantedpages' => [ 'WantedPages', 'BrokenLinks' ],
547 'Wantedtemplates' => [ 'WantedTemplates' ],
548 'Watchlist' => [ 'Watchlist' ],
549 'Whatlinkshere' => [ 'WhatLinksHere' ],
550 'Withoutinterwiki' => [ 'WithoutInterwiki' ],
554 * Regular expression matching the "link trail", e.g. "ed" in [[Toast]]ed, as
555 * the first group, and the remainder of the string as the second group.
557 $linkTrail = '/^([a-z]+)(.*)$/sD';
560 * Regular expression charset matching the "link prefix", e.g. "foo" in
561 * foo[[bar]]. UTF-8 characters may be used.
563 $linkPrefixCharset = 'a-zA-Z\\x{80}-\\x{10ffff}';
566 * A list of messages to preload for each request.
567 * Here we add messages that are needed for a typical anonymous parser cache hit.
569 $preloadedMessages = [
573 'accesskey-ca-history',
574 'accesskey-ca-nstab-main',
576 'accesskey-ca-viewsource',
577 'accesskey-n-currentevents',
579 'accesskey-n-mainpage-description',
580 'accesskey-n-portal',
581 'accesskey-n-randompage',
582 'accesskey-n-recentchanges',
584 'accesskey-pt-login',
585 'accesskey-pt-createaccount',
587 'accesskey-search-fulltext',
588 'accesskey-search-go',
590 'accesskey-t-permalink',
592 'accesskey-t-recentchangeslinked',
593 'accesskey-t-specialpages',
594 'accesskey-t-whatlinkshere',
608 'interlanguage-link-title',
614 'mainpage-description',
618 'nav-login-createaccount',
622 'pagecategorieslink',
624 'pagetitle-view-mainpage',
635 'recentchangeslinked-toolbox',
641 'searchsuggest-search',
643 'navigation-heading',
651 'tooltip-ca-history',
652 'tooltip-ca-nstab-main',
654 'tooltip-ca-viewsource',
655 'tooltip-n-currentevents',
657 'tooltip-n-mainpage-description',
659 'tooltip-n-randompage',
660 'tooltip-n-recentchanges',
663 'tooltip-pt-createaccount',
665 'tooltip-search-fulltext',
668 'tooltip-t-permalink',
670 'tooltip-t-recentchangeslinked',
671 'tooltip-t-specialpages',
672 'tooltip-t-whatlinkshere',
675 'vector-view-history',
683 $digitGroupingPattern = "#,##0.###";