MediaWiki  REL1_23
MessagesEn.php
Go to the documentation of this file.
00001 <?php
00022 $fallback = false;
00023 
00027 $rtl = false;
00028 
00033 $capitalizeAllNouns = false;
00034 
00038 $digitTransformTable = null;
00039 
00043 $separatorTransformTable = null;
00044 
00050 $extraUserToggles = array();
00051 
00058 $fallback8bitEncoding = 'windows-1252';
00059 
00063 $linkPrefixExtension = false;
00064 
00081 $namespaceNames = array(
00082     NS_MEDIA            => 'Media',
00083     NS_SPECIAL          => 'Special',
00084     NS_MAIN             => '',
00085     NS_TALK             => 'Talk',
00086     NS_USER             => 'User',
00087     NS_USER_TALK        => 'User_talk',
00088     # NS_PROJECT set by $wgMetaNamespace
00089     NS_PROJECT_TALK     => '$1_talk',
00090     NS_FILE             => 'File',
00091     NS_FILE_TALK        => 'File_talk',
00092     NS_MEDIAWIKI        => 'MediaWiki',
00093     NS_MEDIAWIKI_TALK   => 'MediaWiki_talk',
00094     NS_TEMPLATE         => 'Template',
00095     NS_TEMPLATE_TALK    => 'Template_talk',
00096     NS_HELP             => 'Help',
00097     NS_HELP_TALK        => 'Help_talk',
00098     NS_CATEGORY         => 'Category',
00099     NS_CATEGORY_TALK    => 'Category_talk',
00100 );
00101 
00105 $namespaceAliases = array();
00106 
00115 $namespaceGenderAliases = array();
00116 
00126 $datePreferences = array(
00127     'default',
00128     'mdy',
00129     'dmy',
00130     'ymd',
00131     'ISO 8601',
00132 );
00133 
00140 $defaultDateFormat = 'dmy or mdy';
00141 
00146 $datePreferenceMigrationMap = array(
00147     'default',
00148     'mdy',
00149     'dmy',
00150     'ymd'
00151 );
00152 
00161 $dateFormats = array(
00162     'mdy time' => 'H:i',
00163     'mdy date' => 'F j, Y',
00164     'mdy monthonly' => 'F Y',
00165     'mdy both' => 'H:i, F j, Y',
00166     'mdy pretty' => 'F j',
00167 
00168     'dmy time' => 'H:i',
00169     'dmy date' => 'j F Y',
00170     'dmy monthonly' => 'F Y',
00171     'dmy both' => 'H:i, j F Y',
00172     'dmy pretty' => 'j F',
00173 
00174     'ymd time' => 'H:i',
00175     'ymd date' => 'Y F j',
00176     'ymd monthonly' => 'Y F',
00177     'ymd both' => 'H:i, Y F j',
00178     'ymd pretty' => 'F j',
00179 
00180     'ISO 8601 time' => 'xnH:xni:xns',
00181     'ISO 8601 date' => 'xnY-xnm-xnd',
00182     'ISO 8601 monthonly' => 'xnY-xnm',
00183     'ISO 8601 both' => 'xnY-xnm-xnd"T"xnH:xni:xns',
00184     'ISO 8601 pretty' => 'xnm-xnd'
00185 );
00186 
00190 $bookstoreList = array(
00191     'AddALL' => 'http://www.addall.com/New/Partner.cgi?query=$1&type=ISBN',
00192     'PriceSCAN' => 'http://www.pricescan.com/books/bookDetail.asp?isbn=$1',
00193     'Barnes & Noble' => 'http://search.barnesandnoble.com/bookSearch/isbnInquiry.asp?isbn=$1',
00194     'Amazon.com' => 'http://www.amazon.com/gp/search/?field-isbn=$1'
00195 );
00196 
00210 $magicWords = array(
00211 #   ID                                  CASE  SYNONYMS
00212     'redirect'                => array( 0,    '#REDIRECT' ),
00213     'notoc'                   => array( 0,    '__NOTOC__' ),
00214     'nogallery'               => array( 0,    '__NOGALLERY__' ),
00215     'forcetoc'                => array( 0,    '__FORCETOC__' ),
00216     'toc'                     => array( 0,    '__TOC__' ),
00217     'noeditsection'           => array( 0,    '__NOEDITSECTION__' ),
00218     'currentmonth'            => array( 1,    'CURRENTMONTH', 'CURRENTMONTH2' ),
00219     'currentmonth1'           => array( 1,    'CURRENTMONTH1' ),
00220     'currentmonthname'        => array( 1,    'CURRENTMONTHNAME' ),
00221     'currentmonthnamegen'     => array( 1,    'CURRENTMONTHNAMEGEN' ),
00222     'currentmonthabbrev'      => array( 1,    'CURRENTMONTHABBREV' ),
00223     'currentday'              => array( 1,    'CURRENTDAY' ),
00224     'currentday2'             => array( 1,    'CURRENTDAY2' ),
00225     'currentdayname'          => array( 1,    'CURRENTDAYNAME' ),
00226     'currentyear'             => array( 1,    'CURRENTYEAR' ),
00227     'currenttime'             => array( 1,    'CURRENTTIME' ),
00228     'currenthour'             => array( 1,    'CURRENTHOUR' ),
00229     'localmonth'              => array( 1,    'LOCALMONTH', 'LOCALMONTH2' ),
00230     'localmonth1'             => array( 1,    'LOCALMONTH1' ),
00231     'localmonthname'          => array( 1,    'LOCALMONTHNAME' ),
00232     'localmonthnamegen'       => array( 1,    'LOCALMONTHNAMEGEN' ),
00233     'localmonthabbrev'        => array( 1,    'LOCALMONTHABBREV' ),
00234     'localday'                => array( 1,    'LOCALDAY' ),
00235     'localday2'               => array( 1,    'LOCALDAY2' ),
00236     'localdayname'            => array( 1,    'LOCALDAYNAME' ),
00237     'localyear'               => array( 1,    'LOCALYEAR' ),
00238     'localtime'               => array( 1,    'LOCALTIME' ),
00239     'localhour'               => array( 1,    'LOCALHOUR' ),
00240     'numberofpages'           => array( 1,    'NUMBEROFPAGES' ),
00241     'numberofarticles'        => array( 1,    'NUMBEROFARTICLES' ),
00242     'numberoffiles'           => array( 1,    'NUMBEROFFILES' ),
00243     'numberofusers'           => array( 1,    'NUMBEROFUSERS' ),
00244     'numberofactiveusers'     => array( 1,    'NUMBEROFACTIVEUSERS' ),
00245     'numberofedits'           => array( 1,    'NUMBEROFEDITS' ),
00246     'numberofviews'           => array( 1,    'NUMBEROFVIEWS' ),
00247     'pagename'                => array( 1,    'PAGENAME' ),
00248     'pagenamee'               => array( 1,    'PAGENAMEE' ),
00249     'namespace'               => array( 1,    'NAMESPACE' ),
00250     'namespacee'              => array( 1,    'NAMESPACEE' ),
00251     'namespacenumber'         => array( 1,    'NAMESPACENUMBER' ),
00252     'talkspace'               => array( 1,    'TALKSPACE' ),
00253     'talkspacee'              => array( 1,    'TALKSPACEE' ),
00254     'subjectspace'            => array( 1,    'SUBJECTSPACE', 'ARTICLESPACE' ),
00255     'subjectspacee'           => array( 1,    'SUBJECTSPACEE', 'ARTICLESPACEE' ),
00256     'fullpagename'            => array( 1,    'FULLPAGENAME' ),
00257     'fullpagenamee'           => array( 1,    'FULLPAGENAMEE' ),
00258     'subpagename'             => array( 1,    'SUBPAGENAME' ),
00259     'subpagenamee'            => array( 1,    'SUBPAGENAMEE' ),
00260     'rootpagename'            => array( 1,    'ROOTPAGENAME' ),
00261     'rootpagenamee'           => array( 1,    'ROOTPAGENAMEE' ),
00262     'basepagename'            => array( 1,    'BASEPAGENAME' ),
00263     'basepagenamee'           => array( 1,    'BASEPAGENAMEE' ),
00264     'talkpagename'            => array( 1,    'TALKPAGENAME' ),
00265     'talkpagenamee'           => array( 1,    'TALKPAGENAMEE' ),
00266     'subjectpagename'         => array( 1,    'SUBJECTPAGENAME', 'ARTICLEPAGENAME' ),
00267     'subjectpagenamee'        => array( 1,    'SUBJECTPAGENAMEE', 'ARTICLEPAGENAMEE' ),
00268     'msg'                     => array( 0,    'MSG:' ),
00269     'subst'                   => array( 0,    'SUBST:' ),
00270     'safesubst'               => array( 0,    'SAFESUBST:' ),
00271     'msgnw'                   => array( 0,    'MSGNW:' ),
00272     'img_thumbnail'           => array( 1,    'thumbnail', 'thumb' ),
00273     'img_manualthumb'         => array( 1,    'thumbnail=$1', 'thumb=$1' ),
00274     'img_right'               => array( 1,    'right' ),
00275     'img_left'                => array( 1,    'left' ),
00276     'img_none'                => array( 1,    'none' ),
00277     'img_width'               => array( 1,    '$1px' ),
00278     'img_center'              => array( 1,    'center', 'centre' ),
00279     'img_framed'              => array( 1,    'framed', 'enframed', 'frame' ),
00280     'img_frameless'           => array( 1,    'frameless' ),
00281     'img_lang'                => array( 1,    'lang=$1' ),
00282     'img_page'                => array( 1,    'page=$1', 'page $1' ),
00283     'img_upright'             => array( 1,    'upright', 'upright=$1', 'upright $1' ),
00284     'img_border'              => array( 1,    'border' ),
00285     'img_baseline'            => array( 1,    'baseline' ),
00286     'img_sub'                 => array( 1,    'sub' ),
00287     'img_super'               => array( 1,    'super', 'sup' ),
00288     'img_top'                 => array( 1,    'top' ),
00289     'img_text_top'            => array( 1,    'text-top' ),
00290     'img_middle'              => array( 1,    'middle' ),
00291     'img_bottom'              => array( 1,    'bottom' ),
00292     'img_text_bottom'         => array( 1,    'text-bottom' ),
00293     'img_link'                => array( 1,    'link=$1' ),
00294     'img_alt'                 => array( 1,    'alt=$1' ),
00295     'img_class'               => array( 1,    'class=$1' ),
00296     'int'                     => array( 0,    'INT:' ),
00297     'sitename'                => array( 1,    'SITENAME' ),
00298     'ns'                      => array( 0,    'NS:' ),
00299     'nse'                     => array( 0,    'NSE:' ),
00300     'localurl'                => array( 0,    'LOCALURL:' ),
00301     'localurle'               => array( 0,    'LOCALURLE:' ),
00302     'articlepath'             => array( 0,    'ARTICLEPATH' ),
00303     'pageid'                  => array( 0,    'PAGEID' ),
00304     'server'                  => array( 0,    'SERVER' ),
00305     'servername'              => array( 0,    'SERVERNAME' ),
00306     'scriptpath'              => array( 0,    'SCRIPTPATH' ),
00307     'stylepath'               => array( 0,    'STYLEPATH' ),
00308     'grammar'                 => array( 0,    'GRAMMAR:' ),
00309     'gender'                  => array( 0,    'GENDER:' ),
00310     'notitleconvert'          => array( 0,    '__NOTITLECONVERT__', '__NOTC__' ),
00311     'nocontentconvert'        => array( 0,    '__NOCONTENTCONVERT__', '__NOCC__' ),
00312     'currentweek'             => array( 1,    'CURRENTWEEK' ),
00313     'currentdow'              => array( 1,    'CURRENTDOW' ),
00314     'localweek'               => array( 1,    'LOCALWEEK' ),
00315     'localdow'                => array( 1,    'LOCALDOW' ),
00316     'revisionid'              => array( 1,    'REVISIONID' ),
00317     'revisionday'             => array( 1,    'REVISIONDAY' ),
00318     'revisionday2'            => array( 1,    'REVISIONDAY2' ),
00319     'revisionmonth'           => array( 1,    'REVISIONMONTH' ),
00320     'revisionmonth1'          => array( 1,    'REVISIONMONTH1' ),
00321     'revisionyear'            => array( 1,    'REVISIONYEAR' ),
00322     'revisiontimestamp'       => array( 1,    'REVISIONTIMESTAMP' ),
00323     'revisionuser'            => array( 1,    'REVISIONUSER' ),
00324     'revisionsize'            => array( 1,    'REVISIONSIZE' ),
00325     'plural'                  => array( 0,    'PLURAL:' ),
00326     'fullurl'                 => array( 0,    'FULLURL:' ),
00327     'fullurle'                => array( 0,    'FULLURLE:' ),
00328     'canonicalurl'            => array( 0,    'CANONICALURL:' ),
00329     'canonicalurle'           => array( 0,    'CANONICALURLE:' ),
00330     'lcfirst'                 => array( 0,    'LCFIRST:' ),
00331     'ucfirst'                 => array( 0,    'UCFIRST:' ),
00332     'lc'                      => array( 0,    'LC:' ),
00333     'uc'                      => array( 0,    'UC:' ),
00334     'raw'                     => array( 0,    'RAW:' ),
00335     'displaytitle'            => array( 1,    'DISPLAYTITLE' ),
00336     'rawsuffix'               => array( 1,    'R' ),
00337     'nocommafysuffix'         => array( 0,    'NOSEP' ),
00338     'newsectionlink'          => array( 1,    '__NEWSECTIONLINK__' ),
00339     'nonewsectionlink'        => array( 1,    '__NONEWSECTIONLINK__' ),
00340     'currentversion'          => array( 1,    'CURRENTVERSION' ),
00341     'urlencode'               => array( 0,    'URLENCODE:' ),
00342     'anchorencode'            => array( 0,    'ANCHORENCODE' ),
00343     'currenttimestamp'        => array( 1,    'CURRENTTIMESTAMP' ),
00344     'localtimestamp'          => array( 1,    'LOCALTIMESTAMP' ),
00345     'directionmark'           => array( 1,    'DIRECTIONMARK', 'DIRMARK' ),
00346     'language'                => array( 0,    '#LANGUAGE:' ),
00347     'contentlanguage'         => array( 1,    'CONTENTLANGUAGE', 'CONTENTLANG' ),
00348     'pagesinnamespace'        => array( 1,    'PAGESINNAMESPACE:', 'PAGESINNS:' ),
00349     'numberofadmins'          => array( 1,    'NUMBEROFADMINS' ),
00350     'formatnum'               => array( 0,    'FORMATNUM' ),
00351     'padleft'                 => array( 0,    'PADLEFT' ),
00352     'padright'                => array( 0,    'PADRIGHT' ),
00353     'special'                 => array( 0,    'special' ),
00354     'speciale'                => array( 0,    'speciale' ),
00355     'defaultsort'             => array( 1,    'DEFAULTSORT:', 'DEFAULTSORTKEY:', 'DEFAULTCATEGORYSORT:' ),
00356     'filepath'                => array( 0,    'FILEPATH:' ),
00357     'tag'                     => array( 0,    'tag' ),
00358     'hiddencat'               => array( 1,    '__HIDDENCAT__' ),
00359     'pagesincategory'         => array( 1,    'PAGESINCATEGORY', 'PAGESINCAT' ),
00360     'pagesize'                => array( 1,    'PAGESIZE' ),
00361     'index'                   => array( 1,    '__INDEX__' ),
00362     'noindex'                 => array( 1,    '__NOINDEX__' ),
00363     'numberingroup'           => array( 1,    'NUMBERINGROUP', 'NUMINGROUP' ),
00364     'staticredirect'          => array( 1,    '__STATICREDIRECT__' ),
00365     'protectionlevel'         => array( 1,    'PROTECTIONLEVEL' ),
00366     'cascadingsources'        => array( 1,    'CASCADINGSOURCES' ),
00367     'formatdate'              => array( 0,    'formatdate', 'dateformat' ),
00368     'url_path'                => array( 0,    'PATH' ),
00369     'url_wiki'                => array( 0,    'WIKI' ),
00370     'url_query'               => array( 0,    'QUERY' ),
00371     'defaultsort_noerror'     => array( 0,    'noerror' ),
00372     'defaultsort_noreplace'   => array( 0,    'noreplace' ),
00373     'pagesincategory_all'     => array( 0,    'all' ),
00374     'pagesincategory_pages'   => array( 0,    'pages' ),
00375     'pagesincategory_subcats' => array( 0,    'subcats' ),
00376     'pagesincategory_files'   => array( 0,    'files' ),
00377 );
00378 
00387 $specialPageAliases = array(
00388     'Activeusers'               => array( 'ActiveUsers' ),
00389     'Allmessages'               => array( 'AllMessages' ),
00390     'AllMyUploads'              => array( 'AllMyUploads', 'AllMyFiles' ),
00391     'Allpages'                  => array( 'AllPages' ),
00392     'Ancientpages'              => array( 'AncientPages' ),
00393     'Badtitle'                  => array( 'Badtitle' ),
00394     'Blankpage'                 => array( 'BlankPage' ),
00395     'Block'                     => array( 'Block', 'BlockIP', 'BlockUser' ),
00396     'Booksources'               => array( 'BookSources' ),
00397     'BrokenRedirects'           => array( 'BrokenRedirects' ),
00398     'Categories'                => array( 'Categories' ),
00399     'ChangeEmail'               => array( 'ChangeEmail' ),
00400     'ChangePassword'            => array( 'ChangePassword', 'ResetPass', 'ResetPassword' ),
00401     'ComparePages'              => array( 'ComparePages' ),
00402     'Confirmemail'              => array( 'ConfirmEmail' ),
00403     'Contributions'             => array( 'Contributions', 'Contribs' ),
00404     'CreateAccount'             => array( 'CreateAccount' ),
00405     'Deadendpages'              => array( 'DeadendPages' ),
00406     'DeletedContributions'      => array( 'DeletedContributions' ),
00407     'Diff'                      => array( 'Diff' ),
00408     'DoubleRedirects'           => array( 'DoubleRedirects' ),
00409     'EditWatchlist'             => array( 'EditWatchlist' ),
00410     'Emailuser'                 => array( 'EmailUser' ),
00411     'ExpandTemplates'           => array( 'ExpandTemplates' ),
00412     'Export'                    => array( 'Export' ),
00413     'Fewestrevisions'           => array( 'FewestRevisions' ),
00414     'FileDuplicateSearch'       => array( 'FileDuplicateSearch' ),
00415     'Filepath'                  => array( 'FilePath' ),
00416     'Import'                    => array( 'Import' ),
00417     'Invalidateemail'           => array( 'InvalidateEmail' ),
00418     'JavaScriptTest'            => array( 'JavaScriptTest' ),
00419     'BlockList'                 => array( 'BlockList', 'ListBlocks', 'IPBlockList' ),
00420     'LinkSearch'                => array( 'LinkSearch' ),
00421     'Listadmins'                => array( 'ListAdmins' ),
00422     'Listbots'                  => array( 'ListBots' ),
00423     'Listfiles'                 => array( 'ListFiles', 'FileList', 'ImageList' ),
00424     'Listgrouprights'           => array( 'ListGroupRights', 'UserGroupRights' ),
00425     'Listredirects'             => array( 'ListRedirects' ),
00426     'ListDuplicatedFiles'       => array( 'ListDuplicatedFiles', 'ListFileDuplicates' ),
00427     'Listusers'                 => array( 'ListUsers', 'UserList' ),
00428     'Lockdb'                    => array( 'LockDB' ),
00429     'Log'                       => array( 'Log', 'Logs' ),
00430     'Lonelypages'               => array( 'LonelyPages', 'OrphanedPages' ),
00431     'Longpages'                 => array( 'LongPages' ),
00432     'MergeHistory'              => array( 'MergeHistory' ),
00433     'MIMEsearch'                => array( 'MIMESearch' ),
00434     'Mostcategories'            => array( 'MostCategories' ),
00435     'Mostimages'                => array( 'MostLinkedFiles', 'MostFiles', 'MostImages' ),
00436     'Mostinterwikis'            => array( 'MostInterwikis' ),
00437     'Mostlinked'                => array( 'MostLinkedPages', 'MostLinked' ),
00438     'Mostlinkedcategories'      => array( 'MostLinkedCategories', 'MostUsedCategories' ),
00439     'Mostlinkedtemplates'       => array( 'MostLinkedTemplates', 'MostUsedTemplates' ),
00440     'Mostrevisions'             => array( 'MostRevisions' ),
00441     'Movepage'                  => array( 'MovePage' ),
00442     'Mycontributions'           => array( 'MyContributions' ),
00443     'Mypage'                    => array( 'MyPage' ),
00444     'Mytalk'                    => array( 'MyTalk' ),
00445     'Myuploads'                 => array( 'MyUploads', 'MyFiles' ),
00446     'Newimages'                 => array( 'NewFiles', 'NewImages' ),
00447     'Newpages'                  => array( 'NewPages' ),
00448     'PagesWithProp'             => array( 'PagesWithProp', 'Pageswithprop', 'PagesByProp', 'Pagesbyprop' ),
00449     'PasswordReset'             => array( 'PasswordReset' ),
00450     'PermanentLink'             => array( 'PermanentLink', 'PermaLink' ),
00451     'Popularpages'              => array( 'PopularPages' ),
00452     'Preferences'               => array( 'Preferences' ),
00453     'Prefixindex'               => array( 'PrefixIndex' ) ,
00454     'Protectedpages'            => array( 'ProtectedPages' ),
00455     'Protectedtitles'           => array( 'ProtectedTitles' ),
00456     'Randompage'                => array( 'Random', 'RandomPage' ),
00457     'RandomInCategory'          => array( 'RandomInCategory' ),
00458     'Randomredirect'            => array( 'RandomRedirect' ),
00459     'Recentchanges'             => array( 'RecentChanges' ),
00460     'Recentchangeslinked'       => array( 'RecentChangesLinked', 'RelatedChanges' ),
00461     'Redirect'                  => array( 'Redirect' ),
00462     'ResetTokens'               => array( 'ResetTokens' ),
00463     'Revisiondelete'            => array( 'RevisionDelete' ),
00464     'RunJobs'                   => array( 'RunJobs' ),
00465     'Search'                    => array( 'Search' ),
00466     'Shortpages'                => array( 'ShortPages' ),
00467     'Specialpages'              => array( 'SpecialPages' ),
00468     'Statistics'                => array( 'Statistics' ),
00469     'Tags'                      => array( 'Tags' ),
00470     'TrackingCategories'        => array( 'TrackingCategories' ),
00471     'Unblock'                   => array( 'Unblock' ),
00472     'Uncategorizedcategories'   => array( 'UncategorizedCategories' ),
00473     'Uncategorizedimages'       => array( 'UncategorizedFiles', 'UncategorizedImages' ),
00474     'Uncategorizedpages'        => array( 'UncategorizedPages' ),
00475     'Uncategorizedtemplates'    => array( 'UncategorizedTemplates' ),
00476     'Undelete'                  => array( 'Undelete' ),
00477     'Unlockdb'                  => array( 'UnlockDB' ),
00478     'Unusedcategories'          => array( 'UnusedCategories' ),
00479     'Unusedimages'              => array( 'UnusedFiles', 'UnusedImages' ),
00480     'Unusedtemplates'           => array( 'UnusedTemplates' ),
00481     'Unwatchedpages'            => array( 'UnwatchedPages' ),
00482     'Upload'                    => array( 'Upload' ),
00483     'UploadStash'               => array( 'UploadStash' ),
00484     'Userlogin'                 => array( 'UserLogin', 'Login' ),
00485     'Userlogout'                => array( 'UserLogout', 'Logout' ),
00486     'Userrights'                => array( 'UserRights', 'MakeSysop', 'MakeBot' ),
00487     'Version'                   => array( 'Version' ),
00488     'Wantedcategories'          => array( 'WantedCategories' ),
00489     'Wantedfiles'               => array( 'WantedFiles' ),
00490     'Wantedpages'               => array( 'WantedPages', 'BrokenLinks' ),
00491     'Wantedtemplates'           => array( 'WantedTemplates' ),
00492     'Watchlist'                 => array( 'Watchlist' ),
00493     'Whatlinkshere'             => array( 'WhatLinksHere' ),
00494     'Withoutinterwiki'          => array( 'WithoutInterwiki' ),
00495 );
00496 
00501 $linkTrail = '/^([a-z]+)(.*)$/sD';
00502 
00507 $linkPrefixCharset = 'a-zA-Z\\x{80}-\\x{10ffff}';
00508 
00513 $imageFiles = array(
00514     'button-bold'     => 'button_bold.png',
00515     'button-italic'   => 'button_italic.png',
00516     'button-link'     => 'button_link.png',
00517     'button-extlink'  => 'button_extlink.png',
00518     'button-headline' => 'button_headline.png',
00519     'button-image'    => 'button_image.png',
00520     'button-media'    => 'button_media.png',
00521     'button-nowiki'   => 'button_nowiki.png',
00522     'button-sig'      => 'button_sig.png',
00523     'button-hr'       => 'button_hr.png',
00524 );
00525 
00530 $preloadedMessages = array(
00531     'aboutpage',
00532     'aboutsite',
00533     'accesskey-ca-edit',
00534     'accesskey-ca-history',
00535     'accesskey-ca-nstab-main',
00536     'accesskey-ca-talk',
00537     'accesskey-ca-view',
00538     'accesskey-n-currentevents',
00539     'accesskey-n-help',
00540     'accesskey-n-mainpage-description',
00541     'accesskey-n-portal',
00542     'accesskey-n-randompage',
00543     'accesskey-n-recentchanges',
00544     'accesskey-p-logo',
00545     'accesskey-pt-login',
00546     'accesskey-search',
00547     'accesskey-search-fulltext',
00548     'accesskey-search-go',
00549     'accesskey-t-permalink',
00550     'accesskey-t-recentchangeslinked',
00551     'accesskey-t-specialpages',
00552     'accesskey-t-whatlinkshere',
00553     'actions',
00554     'anonnotice',
00555     'currentevents',
00556     'currentevents-url',
00557     'disclaimerpage',
00558     'disclaimers',
00559     'edit',
00560     'editsection',
00561     'editsectionhint',
00562     'help',
00563     'helppage',
00564     'interlanguage-link-title',
00565     'jumpto',
00566     'jumptonavigation',
00567     'jumptosearch',
00568     'lastmodifiedat',
00569     'mainpage',
00570     'mainpage-description',
00571     'mainpage-nstab',
00572     'namespaces',
00573     'navigation',
00574     'nav-login-createaccount',
00575     'nstab-main',
00576     'nstab-talk',
00577     'opensearch-desc',
00578     'pagecategories',
00579     'pagecategorieslink',
00580     'pagetitle',
00581     'pagetitle-view-mainpage',
00582     'permalink',
00583     'personaltools',
00584     'portal',
00585     'portal-url',
00586     'printableversion',
00587     'privacy',
00588     'privacypage',
00589     'randompage',
00590     'randompage-url',
00591     'recentchanges',
00592     'recentchangeslinked-toolbox',
00593     'recentchanges-url',
00594     'retrievedfrom',
00595     'search',
00596     'searcharticle',
00597     'searchbutton',
00598     'sidebar',
00599     'navigation-heading',
00600     'site-atom-feed',
00601     'sitenotice',
00602     'specialpages',
00603     'tagline',
00604     'talk',
00605     'toolbox',
00606     'tooltip-ca-edit',
00607     'tooltip-ca-history',
00608     'tooltip-ca-nstab-main',
00609     'tooltip-ca-talk',
00610     'tooltip-ca-view',
00611     'tooltip-n-currentevents',
00612     'tooltip-n-help',
00613     'tooltip-n-mainpage-description',
00614     'tooltip-n-portal',
00615     'tooltip-n-randompage',
00616     'tooltip-n-recentchanges',
00617     'tooltip-p-logo',
00618     'tooltip-p-navigation',
00619     'tooltip-p-tb',
00620     'tooltip-pt-login',
00621     'tooltip-search',
00622     'tooltip-search-fulltext',
00623     'tooltip-search-go',
00624     'tooltip-t-permalink',
00625     'tooltip-t-recentchangeslinked',
00626     'tooltip-t-specialpages',
00627     'tooltip-t-whatlinkshere',
00628     'variants',
00629     'vector-view-edit',
00630     'vector-view-history',
00631     'vector-view-view',
00632     'viewcount',
00633     'views',
00634     'whatlinkshere',
00635 );
00636