MediaWiki  REL1_22
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     'formatdate'              => array( 0,    'formatdate', 'dateformat' ),
00367     'url_path'                => array( 0,    'PATH' ),
00368     'url_wiki'                => array( 0,    'WIKI' ),
00369     'url_query'               => array( 0,    'QUERY' ),
00370     'defaultsort_noerror'     => array( 0,    'noerror' ),
00371     'defaultsort_noreplace'   => array( 0,    'noreplace' ),
00372     'pagesincategory_all'     => array( 0,    'all' ),
00373     'pagesincategory_pages'   => array( 0,    'pages' ),
00374     'pagesincategory_subcats' => array( 0,    'subcats' ),
00375     'pagesincategory_files'   => array( 0,    'files' ),
00376 );
00377 
00386 $specialPageAliases = array(
00387     'Activeusers'               => array( 'ActiveUsers' ),
00388     'Allmessages'               => array( 'AllMessages' ),
00389     'AllMyUploads'              => array( 'AllMyUploads', 'AllMyFiles' ),
00390     'Allpages'                  => array( 'AllPages' ),
00391     'Ancientpages'              => array( 'AncientPages' ),
00392     'Badtitle'                  => array( 'Badtitle' ),
00393     'Blankpage'                 => array( 'BlankPage' ),
00394     'Block'                     => array( 'Block', 'BlockIP', 'BlockUser' ),
00395     'Booksources'               => array( 'BookSources' ),
00396     'BrokenRedirects'           => array( 'BrokenRedirects' ),
00397     'Categories'                => array( 'Categories' ),
00398     'ChangeEmail'               => array( 'ChangeEmail' ),
00399     'ChangePassword'            => array( 'ChangePassword', 'ResetPass', 'ResetPassword' ),
00400     'ComparePages'              => array( 'ComparePages' ),
00401     'Confirmemail'              => array( 'ConfirmEmail' ),
00402     'Contributions'             => array( 'Contributions', 'Contribs' ),
00403     'CreateAccount'             => array( 'CreateAccount' ),
00404     'Deadendpages'              => array( 'DeadendPages' ),
00405     'DeletedContributions'      => array( 'DeletedContributions' ),
00406     'DoubleRedirects'           => array( 'DoubleRedirects' ),
00407     'EditWatchlist'             => array( 'EditWatchlist' ),
00408     'Emailuser'                 => array( 'EmailUser' ),
00409     'Export'                    => array( 'Export' ),
00410     'Fewestrevisions'           => array( 'FewestRevisions' ),
00411     'FileDuplicateSearch'       => array( 'FileDuplicateSearch' ),
00412     'Filepath'                  => array( 'FilePath' ),
00413     'Import'                    => array( 'Import' ),
00414     'Invalidateemail'           => array( 'InvalidateEmail' ),
00415     'JavaScriptTest'            => array( 'JavaScriptTest' ),
00416     'BlockList'                 => array( 'BlockList', 'ListBlocks', 'IPBlockList' ),
00417     'LinkSearch'                => array( 'LinkSearch' ),
00418     'Listadmins'                => array( 'ListAdmins' ),
00419     'Listbots'                  => array( 'ListBots' ),
00420     'Listfiles'                 => array( 'ListFiles', 'FileList', 'ImageList' ),
00421     'Listgrouprights'           => array( 'ListGroupRights', 'UserGroupRights' ),
00422     'Listredirects'             => array( 'ListRedirects' ),
00423     'Listusers'                 => array( 'ListUsers', 'UserList' ),
00424     'Lockdb'                    => array( 'LockDB' ),
00425     'Log'                       => array( 'Log', 'Logs' ),
00426     'Lonelypages'               => array( 'LonelyPages', 'OrphanedPages' ),
00427     'Longpages'                 => array( 'LongPages' ),
00428     'MergeHistory'              => array( 'MergeHistory' ),
00429     'MIMEsearch'                => array( 'MIMESearch' ),
00430     'Mostcategories'            => array( 'MostCategories' ),
00431     'Mostimages'                => array( 'MostLinkedFiles', 'MostFiles', 'MostImages' ),
00432     'Mostinterwikis'            => array( 'MostInterwikis' ),
00433     'Mostlinked'                => array( 'MostLinkedPages', 'MostLinked' ),
00434     'Mostlinkedcategories'      => array( 'MostLinkedCategories', 'MostUsedCategories' ),
00435     'Mostlinkedtemplates'       => array( 'MostLinkedTemplates', 'MostUsedTemplates' ),
00436     'Mostrevisions'             => array( 'MostRevisions' ),
00437     'Movepage'                  => array( 'MovePage' ),
00438     'Mycontributions'           => array( 'MyContributions' ),
00439     'Mypage'                    => array( 'MyPage' ),
00440     'Mytalk'                    => array( 'MyTalk' ),
00441     'Myuploads'                 => array( 'MyUploads', 'MyFiles' ),
00442     'Newimages'                 => array( 'NewFiles', 'NewImages' ),
00443     'Newpages'                  => array( 'NewPages' ),
00444     'PagesWithProp'             => array( 'PagesWithProp', 'Pageswithprop', 'PagesByProp', 'Pagesbyprop' ),
00445     'PasswordReset'             => array( 'PasswordReset' ),
00446     'PermanentLink'             => array( 'PermanentLink', 'PermaLink' ),
00447     'Popularpages'              => array( 'PopularPages' ),
00448     'Preferences'               => array( 'Preferences' ),
00449     'Prefixindex'               => array( 'PrefixIndex' ) ,
00450     'Protectedpages'            => array( 'ProtectedPages' ),
00451     'Protectedtitles'           => array( 'ProtectedTitles' ),
00452     'Randompage'                => array( 'Random', 'RandomPage' ),
00453     'RandomInCategory'          => array( 'RandomInCategory' ),
00454     'Randomredirect'            => array( 'RandomRedirect' ),
00455     'Recentchanges'             => array( 'RecentChanges' ),
00456     'Recentchangeslinked'       => array( 'RecentChangesLinked', 'RelatedChanges' ),
00457     'Redirect'                  => array( 'Redirect' ),
00458     'ResetTokens'               => array( 'ResetTokens' ),
00459     'Revisiondelete'            => array( 'RevisionDelete' ),
00460     'Search'                    => array( 'Search' ),
00461     'Shortpages'                => array( 'ShortPages' ),
00462     'Specialpages'              => array( 'SpecialPages' ),
00463     'Statistics'                => array( 'Statistics' ),
00464     'Tags'                      => array( 'Tags' ),
00465     'Unblock'                   => array( 'Unblock' ),
00466     'Uncategorizedcategories'   => array( 'UncategorizedCategories' ),
00467     'Uncategorizedimages'       => array( 'UncategorizedFiles', 'UncategorizedImages' ),
00468     'Uncategorizedpages'        => array( 'UncategorizedPages' ),
00469     'Uncategorizedtemplates'    => array( 'UncategorizedTemplates' ),
00470     'Undelete'                  => array( 'Undelete' ),
00471     'Unlockdb'                  => array( 'UnlockDB' ),
00472     'Unusedcategories'          => array( 'UnusedCategories' ),
00473     'Unusedimages'              => array( 'UnusedFiles', 'UnusedImages' ),
00474     'Unusedtemplates'           => array( 'UnusedTemplates' ),
00475     'Unwatchedpages'            => array( 'UnwatchedPages' ),
00476     'Upload'                    => array( 'Upload' ),
00477     'UploadStash'               => array( 'UploadStash' ),
00478     'Userlogin'                 => array( 'UserLogin', 'Login' ),
00479     'Userlogout'                => array( 'UserLogout', 'Logout' ),
00480     'Userrights'                => array( 'UserRights', 'MakeSysop', 'MakeBot' ),
00481     'Version'                   => array( 'Version' ),
00482     'Wantedcategories'          => array( 'WantedCategories' ),
00483     'Wantedfiles'               => array( 'WantedFiles' ),
00484     'Wantedpages'               => array( 'WantedPages', 'BrokenLinks' ),
00485     'Wantedtemplates'           => array( 'WantedTemplates' ),
00486     'Watchlist'                 => array( 'Watchlist' ),
00487     'Whatlinkshere'             => array( 'WhatLinksHere' ),
00488     'Withoutinterwiki'          => array( 'WithoutInterwiki' ),
00489 );
00490 
00495 $linkTrail = '/^([a-z]+)(.*)$/sD';
00496 
00501 $imageFiles = array(
00502     'button-bold'     => 'button_bold.png',
00503     'button-italic'   => 'button_italic.png',
00504     'button-link'     => 'button_link.png',
00505     'button-extlink'  => 'button_extlink.png',
00506     'button-headline' => 'button_headline.png',
00507     'button-image'    => 'button_image.png',
00508     'button-media'    => 'button_media.png',
00509     'button-math'     => 'button_math.png',
00510     'button-nowiki'   => 'button_nowiki.png',
00511     'button-sig'      => 'button_sig.png',
00512     'button-hr'       => 'button_hr.png',
00513 );
00514 
00519 $preloadedMessages = array(
00520     'aboutpage',
00521     'aboutsite',
00522     'accesskey-ca-edit',
00523     'accesskey-ca-history',
00524     'accesskey-ca-nstab-main',
00525     'accesskey-ca-talk',
00526     'accesskey-ca-view',
00527     'accesskey-n-currentevents',
00528     'accesskey-n-help',
00529     'accesskey-n-mainpage-description',
00530     'accesskey-n-portal',
00531     'accesskey-n-randompage',
00532     'accesskey-n-recentchanges',
00533     'accesskey-p-logo',
00534     'accesskey-pt-login',
00535     'accesskey-search',
00536     'accesskey-search-fulltext',
00537     'accesskey-search-go',
00538     'accesskey-t-permalink',
00539     'accesskey-t-recentchangeslinked',
00540     'accesskey-t-specialpages',
00541     'accesskey-t-whatlinkshere',
00542     'actions',
00543     'anonnotice',
00544     'currentevents',
00545     'currentevents-url',
00546     'disclaimerpage',
00547     'disclaimers',
00548     'edit',
00549     'editsection',
00550     'editsectionhint',
00551     'help',
00552     'helppage',
00553     'interlanguage-link-title',
00554     'jumpto',
00555     'jumptonavigation',
00556     'jumptosearch',
00557     'lastmodifiedat',
00558     'mainpage',
00559     'mainpage-description',
00560     'mainpage-nstab',
00561     'namespaces',
00562     'navigation',
00563     'nav-login-createaccount',
00564     'nstab-main',
00565     'nstab-talk',
00566     'opensearch-desc',
00567     'pagecategories',
00568     'pagecategorieslink',
00569     'pagetitle',
00570     'pagetitle-view-mainpage',
00571     'permalink',
00572     'personaltools',
00573     'portal',
00574     'portal-url',
00575     'printableversion',
00576     'privacy',
00577     'privacypage',
00578     'randompage',
00579     'randompage-url',
00580     'recentchanges',
00581     'recentchangeslinked-toolbox',
00582     'recentchanges-url',
00583     'retrievedfrom',
00584     'search',
00585     'searcharticle',
00586     'searchbutton',
00587     'sidebar',
00588     'navigation-heading',
00589     'site-atom-feed',
00590     'sitenotice',
00591     'specialpages',
00592     'tagline',
00593     'talk',
00594     'toolbox',
00595     'tooltip-ca-edit',
00596     'tooltip-ca-history',
00597     'tooltip-ca-nstab-main',
00598     'tooltip-ca-talk',
00599     'tooltip-ca-view',
00600     'tooltip-n-currentevents',
00601     'tooltip-n-help',
00602     'tooltip-n-mainpage-description',
00603     'tooltip-n-portal',
00604     'tooltip-n-randompage',
00605     'tooltip-n-recentchanges',
00606     'tooltip-p-logo',
00607     'tooltip-p-navigation',
00608     'tooltip-p-tb',
00609     'tooltip-pt-login',
00610     'tooltip-search',
00611     'tooltip-search-fulltext',
00612     'tooltip-search-go',
00613     'tooltip-t-permalink',
00614     'tooltip-t-recentchangeslinked',
00615     'tooltip-t-specialpages',
00616     'tooltip-t-whatlinkshere',
00617     'variants',
00618     'vector-view-edit',
00619     'vector-view-history',
00620     'vector-view-view',
00621     'viewcount',
00622     'views',
00623     'whatlinkshere',
00624 );
00625 
00626 # -------------------------------------------------------------------
00627 # Default messages
00628 # -------------------------------------------------------------------
00629 # Allowed characters in keys are: A-Z, a-z, 0-9, underscore (_) and
00630 # hyphen (-). If you need more characters, you may be able to change
00631 # the regex in MagicWord::initRegex
00632 
00633 $messages = array(
00634 /*
00635 The sidebar for MonoBook is generated from this message, lines that do not
00636 begin with * or ** are discarded, furthermore lines that do begin with ** and
00637 do not contain | are also discarded, but do not depend on this behavior for
00638 future releases. Also note that since each list value is wrapped in a unique
00639 (X)HTML id it should only appear once and include characters that are legal
00640 (X)HTML id names.
00641 */
00642 'sidebar' => '
00643 * navigation
00644 ** mainpage|mainpage-description
00645 ** recentchanges-url|recentchanges
00646 ** randompage-url|randompage
00647 ** helppage|help
00648 * SEARCH
00649 * TOOLBOX
00650 * LANGUAGES', # do not translate or duplicate this message to other languages
00651 
00652 # User preference toggles
00653 'tog-underline'               => 'Link underlining:',
00654 'tog-justify'                 => 'Justify paragraphs',
00655 'tog-hideminor'               => 'Hide minor edits in recent changes',
00656 'tog-hidepatrolled'           => 'Hide patrolled edits in recent changes',
00657 'tog-newpageshidepatrolled'   => 'Hide patrolled pages from new page list',
00658 'tog-extendwatchlist'         => 'Expand watchlist to show all changes, not just the most recent',
00659 'tog-usenewrc'                => 'Group changes by page in recent changes and watchlist',
00660 'tog-numberheadings'          => 'Auto-number headings',
00661 'tog-showtoolbar'             => 'Show edit toolbar',
00662 'tog-editondblclick'          => 'Edit pages on double click',
00663 'tog-editsection'             => 'Enable section editing via [edit] links',
00664 'tog-editsectiononrightclick' => 'Enable section editing by right clicking on section titles',
00665 'tog-showtoc'                 => 'Show table of contents (for pages with more than 3 headings)',
00666 'tog-rememberpassword'        => 'Remember my login on this browser (for a maximum of $1 {{PLURAL:$1|day|days}})',
00667 'tog-watchcreations'          => 'Add pages I create and files I upload to my watchlist',
00668 'tog-watchdefault'            => 'Add pages and files I edit to my watchlist',
00669 'tog-watchmoves'              => 'Add pages and files I move to my watchlist',
00670 'tog-watchdeletion'           => 'Add pages and files I delete to my watchlist',
00671 'tog-minordefault'            => 'Mark all edits minor by default',
00672 'tog-previewontop'            => 'Show preview before edit box',
00673 'tog-previewonfirst'          => 'Show preview on first edit',
00674 'tog-nocache'                 => 'Disable browser page caching',
00675 'tog-enotifwatchlistpages'    => 'Email me when a page or file on my watchlist is changed',
00676 'tog-enotifusertalkpages'     => 'Email me when my user talk page is changed',
00677 'tog-enotifminoredits'        => 'Email me also for minor edits of pages and files',
00678 'tog-enotifrevealaddr'        => 'Reveal my email address in notification emails',
00679 'tog-shownumberswatching'     => 'Show the number of watching users',
00680 'tog-oldsig'                  => 'Existing signature:',
00681 'tog-fancysig'                => 'Treat signature as wikitext (without an automatic link)',
00682 'tog-uselivepreview'          => 'Use live preview (experimental)',
00683 'tog-forceeditsummary'        => 'Prompt me when entering a blank edit summary',
00684 'tog-watchlisthideown'        => 'Hide my edits from the watchlist',
00685 'tog-watchlisthidebots'       => 'Hide bot edits from the watchlist',
00686 'tog-watchlisthideminor'      => 'Hide minor edits from the watchlist',
00687 'tog-watchlisthideliu'        => 'Hide edits by logged in users from the watchlist',
00688 'tog-watchlisthideanons'      => 'Hide edits by anonymous users from the watchlist',
00689 'tog-watchlisthidepatrolled'  => 'Hide patrolled edits from the watchlist',
00690 'tog-ccmeonemails'            => 'Send me copies of emails I send to other users',
00691 'tog-diffonly'                => 'Do not show page content below diffs',
00692 'tog-showhiddencats'          => 'Show hidden categories',
00693 'tog-noconvertlink'           => 'Disable link title conversion', # only translate this message to other languages if you have to change it
00694 'tog-norollbackdiff'          => 'Omit diff after performing a rollback',
00695 'tog-useeditwarning'          => 'Warn me when I leave an edit page with unsaved changes',
00696 'tog-prefershttps'            => 'Always use a secure connection when logged in',
00697 
00698 'underline-always'  => 'Always',
00699 'underline-never'   => 'Never',
00700 'underline-default' => 'Skin or browser default',
00701 
00702 # Font style option in Special:Preferences
00703 'editfont-style'     => 'Edit area font style:',
00704 'editfont-default'   => 'Browser default',
00705 'editfont-monospace' => 'Monospaced font',
00706 'editfont-sansserif' => 'Sans-serif font',
00707 'editfont-serif'     => 'Serif font',
00708 
00709 # Dates
00710 'sunday'         => 'Sunday',
00711 'monday'         => 'Monday',
00712 'tuesday'        => 'Tuesday',
00713 'wednesday'      => 'Wednesday',
00714 'thursday'       => 'Thursday',
00715 'friday'         => 'Friday',
00716 'saturday'       => 'Saturday',
00717 'sun'            => 'Sun',
00718 'mon'            => 'Mon',
00719 'tue'            => 'Tue',
00720 'wed'            => 'Wed',
00721 'thu'            => 'Thu',
00722 'fri'            => 'Fri',
00723 'sat'            => 'Sat',
00724 'january'        => 'January',
00725 'february'       => 'February',
00726 'march'          => 'March',
00727 'april'          => 'April',
00728 'may_long'       => 'May',
00729 'june'           => 'June',
00730 'july'           => 'July',
00731 'august'         => 'August',
00732 'september'      => 'September',
00733 'october'        => 'October',
00734 'november'       => 'November',
00735 'december'       => 'December',
00736 'january-gen'    => 'January',
00737 'february-gen'   => 'February',
00738 'march-gen'      => 'March',
00739 'april-gen'      => 'April',
00740 'may-gen'        => 'May',
00741 'june-gen'       => 'June',
00742 'july-gen'       => 'July',
00743 'august-gen'     => 'August',
00744 'september-gen'  => 'September',
00745 'october-gen'    => 'October',
00746 'november-gen'   => 'November',
00747 'december-gen'   => 'December',
00748 'jan'            => 'Jan',
00749 'feb'            => 'Feb',
00750 'mar'            => 'Mar',
00751 'apr'            => 'Apr',
00752 'may'            => 'May',
00753 'jun'            => 'Jun',
00754 'jul'            => 'Jul',
00755 'aug'            => 'Aug',
00756 'sep'            => 'Sep',
00757 'oct'            => 'Oct',
00758 'nov'            => 'Nov',
00759 'dec'            => 'Dec',
00760 'january-date'   => 'January $1',
00761 'february-date'  => 'February $1',
00762 'march-date'     => 'March $1',
00763 'april-date'     => 'April $1',
00764 'may-date'       => 'May $1',
00765 'june-date'      => 'June $1',
00766 'july-date'      => 'July $1',
00767 'august-date'    => 'August $1',
00768 'september-date' => 'September $1',
00769 'october-date'   => 'October $1',
00770 'november-date'  => 'November $1',
00771 'december-date'  => 'December $1',
00772 
00773 # Categories related messages
00774 'pagecategories'                 => '{{PLURAL:$1|Category|Categories}}',
00775 'pagecategorieslink'             => 'Special:Categories', # do not translate or duplicate this message to other languages
00776 'category_header'                => 'Pages in category "$1"',
00777 'subcategories'                  => 'Subcategories',
00778 'category-media-header'          => 'Media in category "$1"',
00779 'category-empty'                 => "''This category currently contains no pages or media.''",
00780 'hidden-categories'              => '{{PLURAL:$1|Hidden category|Hidden categories}}',
00781 'hidden-category-category'       => 'Hidden categories',
00782 'category-subcat-count'          => '{{PLURAL:$2|This category has only the following subcategory.|This category has the following {{PLURAL:$1|subcategory|$1 subcategories}}, out of $2 total.}}',
00783 'category-subcat-count-limited'  => 'This category has the following {{PLURAL:$1|subcategory|$1 subcategories}}.',
00784 'category-article-count'         => '{{PLURAL:$2|This category contains only the following page.|The following {{PLURAL:$1|page is|$1 pages are}} in this category, out of $2 total.}}',
00785 'category-article-count-limited' => 'The following {{PLURAL:$1|page is|$1 pages are}} in the current category.',
00786 'category-file-count'            => '{{PLURAL:$2|This category contains only the following file.|The following {{PLURAL:$1|file is|$1 files are}} in this category, out of $2 total.}}',
00787 'category-file-count-limited'    => 'The following {{PLURAL:$1|file is|$1 files are}} in the current category.',
00788 'listingcontinuesabbrev'         => 'cont.',
00789 'index-category'                 => 'Indexed pages',
00790 'noindex-category'               => 'Noindexed pages',
00791 'broken-file-category'           => 'Pages with broken file links',
00792 'categoryviewer-pagedlinks'      => '($1) ($2)', # only translate this message to other languages if you have to change it
00793 
00794 'linkprefix' => '/^((?>.*(?<![a-zA-Z\\x80-\\xff])))(.+)$/sD', # only translate this message to other languages if you have to change it
00795 
00796 'about'         => 'About',
00797 'article'       => 'Content page',
00798 'newwindow'     => '(opens in new window)',
00799 'cancel'        => 'Cancel',
00800 'moredotdotdot' => 'More...',
00801 'morenotlisted' => 'This list is not complete.',
00802 'mypage'        => 'Page',
00803 'mytalk'        => 'Talk',
00804 'anontalk'      => 'Talk for this IP address',
00805 'navigation'    => 'Navigation',
00806 'and'           => '&#32;and',
00807 
00808 # Cologne Blue skin
00809 'qbfind'         => 'Find',
00810 'qbbrowse'       => 'Browse',
00811 'qbedit'         => 'Edit',
00812 'qbpageoptions'  => 'This page',
00813 'qbmyoptions'    => 'My pages',
00814 'qbspecialpages' => 'Special pages',
00815 'faq'            => 'FAQ',
00816 'faqpage'        => 'Project:FAQ',
00817 'sitetitle'      => '{{SITENAME}}', # do not translate or duplicate this message to other languages
00818 'sitesubtitle'   => '', # do not translate or duplicate this message to other languages
00819 
00820 # Vector skin
00821 'vector-action-addsection'       => 'Add topic',
00822 'vector-action-delete'           => 'Delete',
00823 'vector-action-move'             => 'Move',
00824 'vector-action-protect'          => 'Protect',
00825 'vector-action-undelete'         => 'Undelete',
00826 'vector-action-unprotect'        => 'Change protection',
00827 'vector-simplesearch-preference' => 'Enable simplified search bar (Vector skin only)',
00828 'vector-view-create'             => 'Create',
00829 'vector-view-edit'               => 'Edit',
00830 'vector-view-history'            => 'View history',
00831 'vector-view-view'               => 'Read',
00832 'vector-view-viewsource'         => 'View source',
00833 'actions'                        => 'Actions',
00834 'namespaces'                     => 'Namespaces',
00835 'variants'                       => 'Variants',
00836 
00837 'navigation-heading' => 'Navigation menu',
00838 'errorpagetitle'     => 'Error',
00839 'returnto'           => 'Return to $1.',
00840 'tagline'            => 'From {{SITENAME}}',
00841 'help'               => 'Help',
00842 'search'             => 'Search',
00843 'searchbutton'       => 'Search',
00844 'go'                 => 'Go',
00845 'searcharticle'      => 'Go',
00846 'history'            => 'Page history',
00847 'history_short'      => 'History',
00848 'updatedmarker'      => 'updated since my last visit',
00849 'printableversion'   => 'Printable version',
00850 'permalink'          => 'Permanent link',
00851 'print'              => 'Print',
00852 'view'               => 'View',
00853 'edit'               => 'Edit',
00854 'create'             => 'Create',
00855 'editthispage'       => 'Edit this page',
00856 'create-this-page'   => 'Create this page',
00857 'delete'             => 'Delete',
00858 'deletethispage'     => 'Delete this page',
00859 'undeletethispage'   => 'Undelete this page',
00860 'undelete_short'     => 'Undelete {{PLURAL:$1|one edit|$1 edits}}',
00861 'viewdeleted_short'  => 'View {{PLURAL:$1|one deleted edit|$1 deleted edits}}',
00862 'protect'            => 'Protect',
00863 'protect_change'     => 'change',
00864 'protectthispage'    => 'Protect this page',
00865 'unprotect'          => 'Change protection',
00866 'unprotectthispage'  => 'Change protection of this page',
00867 'newpage'            => 'New page',
00868 'talkpage'           => 'Discuss this page',
00869 'talkpagelinktext'   => 'Talk',
00870 'specialpage'        => 'Special page',
00871 'personaltools'      => 'Personal tools',
00872 'postcomment'        => 'New section',
00873 'addsection'         => '+', # do not translate or duplicate this message to other languages
00874 'articlepage'        => 'View content page',
00875 'talk'               => 'Discussion',
00876 'views'              => 'Views',
00877 'toolbox'            => 'Tools',
00878 'userpage'           => 'View user page',
00879 'projectpage'        => 'View project page',
00880 'imagepage'          => 'View file page',
00881 'mediawikipage'      => 'View message page',
00882 'templatepage'       => 'View template page',
00883 'viewhelppage'       => 'View help page',
00884 'categorypage'       => 'View category page',
00885 'viewtalkpage'       => 'View discussion',
00886 'otherlanguages'     => 'In other languages',
00887 'redirectedfrom'     => '(Redirected from $1)',
00888 'redirectpagesub'    => 'Redirect page',
00889 'talkpageheader'     => '-', # do not translate or duplicate this message to other languages
00890 'lastmodifiedat'     => 'This page was last modified on $1, at $2.',
00891 'viewcount'          => 'This page has been accessed {{PLURAL:$1|once|$1 times}}.',
00892 'protectedpage'      => 'Protected page',
00893 'jumpto'             => 'Jump to:',
00894 'jumptonavigation'   => 'navigation',
00895 'jumptosearch'       => 'search',
00896 'view-pool-error'    => 'Sorry, the servers are overloaded at the moment.
00897 Too many users are trying to view this page.
00898 Please wait a while before you try to access this page again.
00899 
00900 $1',
00901 'pool-timeout'       => 'Timeout waiting for the lock',
00902 'pool-queuefull'     => 'Pool queue is full',
00903 'pool-errorunknown'  => 'Unknown error',
00904 
00905 # All link text and link target definitions of links into project namespace that get used by other message strings, with the exception of user group pages (see grouppage).
00906 'aboutsite'            => 'About {{SITENAME}}',
00907 'aboutpage'            => 'Project:About',
00908 'copyright'            => 'Content is available under $1 unless otherwise noted.',
00909 'copyrightpage'        => '{{ns:project}}:Copyrights',
00910 'currentevents'        => 'Current events',
00911 'currentevents-url'    => 'Project:Current events',
00912 'disclaimers'          => 'Disclaimers',
00913 'disclaimerpage'       => 'Project:General disclaimer',
00914 'edithelp'             => 'Editing help',
00915 'edithelppage'         => 'https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Editing_pages', # do not translate or duplicate this message to other languages
00916 'helppage'             => 'https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents',
00917 'mainpage'             => 'Main Page',
00918 'mainpage-description' => 'Main page',
00919 'policy-url'           => 'Project:Policy',
00920 'portal'               => 'Community portal',
00921 'portal-url'           => 'Project:Community portal',
00922 'privacy'              => 'Privacy policy',
00923 'privacypage'          => 'Project:Privacy policy',
00924 
00925 'badaccess'        => 'Permission error',
00926 'badaccess-group0' => 'You are not allowed to execute the action you have requested.',
00927 'badaccess-groups' => 'The action you have requested is limited to users in {{PLURAL:$2|the group|one of the groups}}: $1.',
00928 
00929 'versionrequired'     => 'Version $1 of MediaWiki required',
00930 'versionrequiredtext' => 'Version $1 of MediaWiki is required to use this page.
00931 See [[Special:Version|version page]].',
00932 
00933 'ok'                           => 'OK',
00934 'pagetitle'                    => '$1 - {{SITENAME}}', # only translate this message to other languages if you have to change it
00935 'pagetitle-view-mainpage'      => '{{SITENAME}}', # only translate this message to other languages if you have to change it
00936 'backlinksubtitle'             => '← $1', # only translate this message to other languages if you have to change it
00937 'retrievedfrom'                => 'Retrieved from "$1"',
00938 'youhavenewmessages'           => 'You have $1 ($2).',
00939 'newmessageslink'              => 'new messages',
00940 'newmessagesdifflink'          => 'last change',
00941 'youhavenewmessagesfromusers'  => 'You have $1 from {{PLURAL:$3|another user|$3 users}} ($2).',
00942 'youhavenewmessagesmanyusers'  => 'You have $1 from many users ($2).',
00943 'newmessageslinkplural'        => '{{PLURAL:$1|a new message|new messages}}',
00944 'newmessagesdifflinkplural'    => 'last {{PLURAL:$1|change|changes}}',
00945 'youhavenewmessagesmulti'      => 'You have new messages on $1',
00946 'newtalkseparator'             => ',&#32;', # do not translate or duplicate this message to other languages
00947 'editsection'                  => 'edit',
00948 'editold'                      => 'edit',
00949 'viewsourceold'                => 'view source',
00950 'editlink'                     => 'edit',
00951 'viewsourcelink'               => 'view source',
00952 'editsectionhint'              => 'Edit section: $1',
00953 'toc'                          => 'Contents',
00954 'showtoc'                      => 'show',
00955 'hidetoc'                      => 'hide',
00956 'collapsible-collapse'         => 'Collapse',
00957 'collapsible-expand'           => 'Expand',
00958 'thisisdeleted'                => 'View or restore $1?',
00959 'viewdeleted'                  => 'View $1?',
00960 'restorelink'                  => '{{PLURAL:$1|one deleted edit|$1 deleted edits}}',
00961 'feedlinks'                    => 'Feed:',
00962 'feed-invalid'                 => 'Invalid subscription feed type.',
00963 'feed-unavailable'             => 'Syndication feeds are not available',
00964 'site-rss-feed'                => '$1 RSS feed',
00965 'site-atom-feed'               => '$1 Atom feed',
00966 'page-rss-feed'                => '"$1" RSS feed',
00967 'page-atom-feed'               => '"$1" Atom feed',
00968 'feed-atom'                    => 'Atom', # only translate this message to other languages if you have to change it
00969 'feed-rss'                     => 'RSS', # only translate this message to other languages if you have to change it
00970 'sitenotice'                   => '-', # do not translate or duplicate this message to other languages
00971 'anonnotice'                   => '-', # do not translate or duplicate this message to other languages
00972 'newsectionheaderdefaultlevel' => '== $1 ==', # do not translate or duplicate this message to other languages
00973 'red-link-title'               => '$1 (page does not exist)',
00974 'sort-descending'              => 'Sort descending',
00975 'sort-ascending'               => 'Sort ascending',
00976 'interlanguage-link-title'     => '$1 – $2', # only translate this message to other languages if you have to change it
00977 
00978 # Short words for each namespace, by default used in the namespace tab in monobook
00979 'nstab-main'      => 'Page',
00980 'nstab-user'      => 'User page',
00981 'nstab-media'     => 'Media page',
00982 'nstab-special'   => 'Special page',
00983 'nstab-project'   => 'Project page',
00984 'nstab-image'     => 'File',
00985 'nstab-mediawiki' => 'Message',
00986 'nstab-template'  => 'Template',
00987 'nstab-help'      => 'Help page',
00988 'nstab-category'  => 'Category',
00989 'mainpage-nstab'  => '', # do not translate or duplicate this message to other languages
00990 
00991 # Main script and global functions
00992 'nosuchaction'      => 'No such action',
00993 'nosuchactiontext'  => 'The action specified by the URL is invalid.
00994 You might have mistyped the URL, or followed an incorrect link.
00995 This might also indicate a bug in the software used by {{SITENAME}}.',
00996 'nosuchspecialpage' => 'No such special page',
00997 'nospecialpagetext' => '<strong>You have requested an invalid special page.</strong>
00998 
00999 A list of valid special pages can be found at [[Special:SpecialPages|{{int:specialpages}}]].',
01000 
01001 # General errors
01002 'error'                         => 'Error',
01003 'databaseerror'                 => 'Database error',
01004 'databaseerror-text'            => 'A database query error has occurred.
01005 This may indicate a bug in the software.',
01006 'databaseerror-textcl'          => 'A database query error has occurred.',
01007 'databaseerror-query'           => 'Query: $1',
01008 'databaseerror-function'        => 'Function: $1',
01009 'databaseerror-error'           => 'Error: $1',
01010 'laggedslavemode'               => "'''Warning:''' Page may not contain recent updates.",
01011 'readonly'                      => 'Database locked',
01012 'enterlockreason'               => 'Enter a reason for the lock, including an estimate of when the lock will be released',
01013 'readonlytext'                  => 'The database is currently locked to new entries and other modifications, probably for routine database maintenance, after which it will be back to normal.
01014 
01015 The administrator who locked it offered this explanation: $1',
01016 'missing-article'               => 'The database did not find the text of a page that it should have found, named "$1" $2.
01017 
01018 This is usually caused by following an outdated diff or history link to a page that has been deleted.
01019 
01020 If this is not the case, you may have found a bug in the software.
01021 Please report this to an [[Special:ListUsers/sysop|administrator]], making note of the URL.',
01022 'missingarticle-rev'            => '(revision#: $1)',
01023 'missingarticle-diff'           => '(Diff: $1, $2)',
01024 'readonly_lag'                  => 'The database has been automatically locked while the slave database servers catch up to the master',
01025 'internalerror'                 => 'Internal error',
01026 'internalerror_info'            => 'Internal error: $1',
01027 'fileappenderrorread'           => 'Could not read "$1" during append.',
01028 'fileappenderror'               => 'Could not append "$1" to "$2".',
01029 'filecopyerror'                 => 'Could not copy file "$1" to "$2".',
01030 'filerenameerror'               => 'Could not rename file "$1" to "$2".',
01031 'filedeleteerror'               => 'Could not delete file "$1".',
01032 'directorycreateerror'          => 'Could not create directory "$1".',
01033 'filenotfound'                  => 'Could not find file "$1".',
01034 'fileexistserror'               => 'Unable to write to file "$1": File exists.',
01035 'unexpected'                    => 'Unexpected value: "$1"="$2".',
01036 'formerror'                     => 'Error: Could not submit form.',
01037 'badarticleerror'               => 'This action cannot be performed on this page.',
01038 'cannotdelete'                  => 'The page or file "$1" could not be deleted.
01039 It may have already been deleted by someone else.',
01040 'cannotdelete-title'            => 'Cannot delete page "$1"',
01041 'delete-hook-aborted'           => 'Deletion aborted by hook.
01042 It gave no explanation.',
01043 'no-null-revision'              => 'Could not create new null revision for page "$1"',
01044 'badtitle'                      => 'Bad title',
01045 'badtitletext'                  => 'The requested page title was invalid, empty, or an incorrectly linked inter-language or inter-wiki title.
01046 It may contain one or more characters that cannot be used in titles.',
01047 'perfcached'                    => 'The following data is cached and may not be up to date. A maximum of {{PLURAL:$1|one result is|$1 results are}} available in the cache.',
01048 'perfcachedts'                  => 'The following data is cached, and was last updated $1. A maximum of {{PLURAL:$4|one result is|$4 results are}} available in the cache.',
01049 'querypage-no-updates'          => 'Updates for this page are currently disabled.
01050 Data here will not presently be refreshed.',
01051 'wrong_wfQuery_params'          => 'Incorrect parameters to wfQuery()<br />
01052 Function: $1<br />
01053 Query: $2',
01054 'viewsource'                    => 'View source',
01055 'viewsource-title'              => 'View source for $1',
01056 'actionthrottled'               => 'Action throttled',
01057 'actionthrottledtext'           => 'As an anti-spam measure, you are limited from performing this action too many times in a short space of time, and you have exceeded this limit.
01058 Please try again in a few minutes.',
01059 'protectedpagetext'             => 'This page has been protected to prevent editing or other actions.',
01060 'viewsourcetext'                => 'You can view and copy the source of this page:',
01061 'viewyourtext'                  => "You can view and copy the source of '''your edits''' to this page:",
01062 'protectedinterface'            => 'This page provides interface text for the software on this wiki, and is protected to prevent abuse.
01063 To add or change translations for all wikis, please use [//translatewiki.net/ translatewiki.net], the MediaWiki localisation project.',
01064 'editinginterface'              => "'''Warning:''' You are editing a page that is used to provide interface text for the software.
01065 Changes to this page will affect the appearance of the user interface for other users on this wiki.
01066 To add or change translations for all wikis, please use [//translatewiki.net/ translatewiki.net], the MediaWiki localisation project.",
01067 'cascadeprotected'              => 'This page has been protected from editing because it is included in the following {{PLURAL:$1|page, which is|pages, which are}} protected with the "cascading" option turned on:
01068 $2',
01069 'namespaceprotected'            => "You do not have permission to edit pages in the '''$1''' namespace.",
01070 'customcssprotected'            => "You do not have permission to edit this CSS page because it contains another user's personal settings.",
01071 'customjsprotected'             => "You do not have permission to edit this JavaScript page because it contains another user's personal settings.",
01072 'mycustomcssprotected'          => 'You do not have permission to edit this CSS page.',
01073 'mycustomjsprotected'           => 'You do not have permission to edit this JavaScript page.',
01074 'myprivateinfoprotected'        => 'You do not have permission to edit your private information.',
01075 'mypreferencesprotected'        => 'You do not have permission to edit your preferences.',
01076 'ns-specialprotected'           => 'Special pages cannot be edited.',
01077 'titleprotected'                => 'This title has been protected from creation by [[User:$1|$1]].
01078 The reason given is "\'\'$2\'\'".',
01079 'filereadonlyerror'             => 'Unable to modify the file "$1" because the file repository "$2" is in read-only mode.
01080 
01081 The administrator who locked it offered this explanation: "$3".',
01082 'invalidtitle-knownnamespace'   => 'Invalid title with namespace "$2" and text "$3"',
01083 'invalidtitle-unknownnamespace' => 'Invalid title with unknown namespace number $1 and text "$2"',
01084 'exception-nologin'             => 'Not logged in',
01085 'exception-nologin-text'        => 'Please [[Special:Userlogin|log in]] to be able to access this page or action.',
01086 
01087 # Virus scanner
01088 'virus-badscanner'     => "Bad configuration: Unknown virus scanner: ''$1''",
01089 'virus-scanfailed'     => 'scan failed (code $1)',
01090 'virus-unknownscanner' => 'unknown antivirus:',
01091 
01092 # Login and logout pages
01093 'logouttext'                      => "'''You are now logged out.'''
01094 
01095 Note that some pages may continue to be displayed as if you were still logged in, until you clear your browser cache.",
01096 'welcomeuser'                     => 'Welcome, $1!',
01097 'welcomecreation-msg'             => 'Your account has been created.
01098 You can change your {{SITENAME}} [[Special:Preferences|preferences]] if you wish.',
01099 'yourname'                        => 'Username:',
01100 'userlogin-yourname'              => 'Username',
01101 'userlogin-yourname-ph'           => 'Enter your username',
01102 'createacct-another-username-ph'  => 'Enter the username',
01103 'createacct-helpusername'         => '', # do not translate or duplicate this message to other languages
01104 'yourpassword'                    => 'Password:',
01105 'userlogin-yourpassword'          => 'Password',
01106 'userlogin-yourpassword-ph'       => 'Enter your password',
01107 'createacct-yourpassword-ph'      => 'Enter a password',
01108 'yourpasswordagain'               => 'Retype password:',
01109 'createacct-yourpasswordagain'    => 'Confirm password',
01110 'createacct-yourpasswordagain-ph' => 'Enter password again',
01111 'remembermypassword'              => 'Remember my login on this browser (for a maximum of $1 {{PLURAL:$1|day|days}})',
01112 'userlogin-remembermypassword'    => 'Keep me logged in',
01113 'userlogin-signwithsecure'        => 'Use secure connection',
01114 'yourdomainname'                  => 'Your domain:',
01115 'password-change-forbidden'       => 'You cannot change passwords on this wiki.',
01116 'externaldberror'                 => 'There was either an authentication database error or you are not allowed to update your external account.',
01117 'login'                           => 'Log in',
01118 'nav-login-createaccount'         => 'Log in / create account',
01119 'loginprompt'                     => 'You must have cookies enabled to log in to {{SITENAME}}.',
01120 'userlogin'                       => 'Log in / create account',
01121 'userloginnocreate'               => 'Log in',
01122 'logout'                          => 'Log out',
01123 'userlogout'                      => 'Log out',
01124 'userlogout-summary'              => '', # do not translate or duplicate this message to other languages
01125 'notloggedin'                     => 'Not logged in',
01126 'userlogin-noaccount'             => "Don't have an account?",
01127 'userlogin-joinproject'           => 'Join {{SITENAME}}',
01128 'nologin'                         => "Don't have an account? $1.",
01129 'nologinlink'                     => 'Create an account',
01130 'createaccount'                   => 'Create account',
01131 'gotaccount'                      => 'Already have an account? $1.',
01132 'gotaccountlink'                  => 'Log in',
01133 'userlogin-resetlink'             => 'Forgotten your login details?',
01134 'userlogin-resetpassword-link'    => 'Forgot your password?',
01135 'helplogin-url'                   => 'https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Logging_in',
01136 'userlogin-helplink2'              => 'Help with logging in',
01137 'userlogin-loggedin'              => 'You are already logged in as {{GENDER:$1|$1}}.
01138 Use the form below to log in as another user.',
01139 'userlogin-createanother'         => 'Create another account',
01140 'createacct-join'                 => 'Enter your information below.',
01141 'createacct-another-join'         => "Enter the new account's information below.",
01142 'createacct-emailrequired'        => 'Email address',
01143 'createacct-emailoptional'        => 'Email address (optional)',
01144 'createacct-email-ph'             => 'Enter your email address',
01145 'createacct-another-email-ph'     => 'Enter email address',
01146 'createaccountmail'               => 'Use a temporary random password and send it to the specified email address',
01147 'createacct-realname'             => 'Real name (optional)',
01148 'createaccountreason'             => 'Reason:',
01149 'createacct-reason'               => 'Reason',
01150 'createacct-reason-ph'            => 'Why you are creating another account',
01151 'createacct-captcha'              => 'Security check',
01152 'createacct-imgcaptcha-help'      => '', # do not translate or duplicate this message to other languages
01153 'createacct-imgcaptcha-ph'        => 'Enter the text you see above',
01154 'createacct-submit'               => 'Create your account',
01155 'createacct-another-submit'       => 'Create another account',
01156 'createacct-benefit-heading'      => '{{SITENAME}} is made by people like you.',
01157 'createacct-benefit-icon1'        => 'icon-edits', # do not translate or duplicate this message to other languages
01158 'createacct-benefit-head1'        => '{{NUMBEROFEDITS}}', # do not translate or duplicate this message to other languages
01159 'createacct-benefit-body1'        => '{{PLURAL:$1|edit|edits}}',
01160 'createacct-benefit-icon2'        => 'icon-pages', # do not translate or duplicate this message to other languages
01161 'createacct-benefit-head2'        => '{{NUMBEROFARTICLES}}', # do not translate or duplicate this message to other languages
01162 'createacct-benefit-body2'        => '{{PLURAL:$1|page|pages}}',
01163 'createacct-benefit-icon3'        => 'icon-contributors', # do not translate or duplicate this message to other languages
01164 'createacct-benefit-head3'        => '{{NUMBEROFACTIVEUSERS}}', # do not translate or duplicate this message to other languages
01165 'createacct-benefit-body3'        => 'recent {{PLURAL:$1|contributor|contributors}}',
01166 'badretype'                       => 'The passwords you entered do not match.',
01167 'userexists'                      => 'Username entered already in use.
01168 Please choose a different name.',
01169 'loginerror'                      => 'Login error',
01170 'createacct-error'                => 'Account creation error',
01171 'createaccounterror'              => 'Could not create account: $1',
01172 'nocookiesnew'                    => 'The user account was created, but you are not logged in.
01173 {{SITENAME}} uses cookies to log in users.
01174 You have cookies disabled.
01175 Please enable them, then log in with your new username and password.',
01176 'nocookieslogin'                  => '{{SITENAME}} uses cookies to log in users.
01177 You have cookies disabled.
01178 Please enable them and try again.',
01179 'nocookiesfornew'                 => 'The user account was not created, as we could not confirm its source.
01180 Ensure you have cookies enabled, reload this page and try again.',
01181 'nocookiesforlogin'               => '{{int:nocookieslogin}}', # only translate this message to other languages if you have to change it
01182 'noname'                          => 'You have not specified a valid username.',
01183 'loginsuccesstitle'               => 'Login successful',
01184 'loginsuccess'                    => "'''You are now logged in to {{SITENAME}} as \"\$1\".'''",
01185 'nosuchuser'                      => 'There is no user by the name "$1".
01186 Usernames are case sensitive.
01187 Check your spelling, or [[Special:UserLogin/signup|create a new account]].',
01188 'nosuchusershort'                 => 'There is no user by the name "$1".
01189 Check your spelling.',
01190 'nouserspecified'                 => 'You have to specify a username.',
01191 'login-userblocked'               => 'This user is blocked. Login not allowed.',
01192 'wrongpassword'                   => 'Incorrect password entered.
01193 Please try again.',
01194 'wrongpasswordempty'              => 'Password entered was blank.
01195 Please try again.',
01196 'passwordtooshort'                => 'Passwords must be at least {{PLURAL:$1|1 character|$1 characters}}.',
01197 'password-name-match'             => 'Your password must be different from your username.',
01198 'password-login-forbidden'        => 'The use of this username and password has been forbidden.',
01199 'mailmypassword'                  => 'Email new password',
01200 'passwordremindertitle'           => 'New temporary password for {{SITENAME}}',
01201 'passwordremindertext'            => 'Someone (probably you, from IP address $1) requested a new
01202 password for {{SITENAME}} ($4). A temporary password for user
01203 "$2" has been created and was set to "$3". If this was your
01204 intent, you will need to log in and choose a new password now.
01205 Your temporary password will expire in {{PLURAL:$5|one day|$5 days}}.
01206 
01207 If someone else made this request, or if you have remembered your password,
01208 and you no longer wish to change it, you may ignore this message and
01209 continue using your old password.',
01210 'noemail'                         => 'There is no email address recorded for user "$1".',
01211 'noemailcreate'                   => 'You need to provide a valid email address.',
01212 'passwordsent'                    => 'A new password has been sent to the email address registered for "$1".
01213 Please log in again after you receive it.',
01214 'blocked-mailpassword'            => 'Your IP address is blocked from editing, and so is not allowed to use the password recovery function to prevent abuse.',
01215 'eauthentsent'                    => 'A confirmation email has been sent to the specified email address.
01216 Before any other email is sent to the account, you will have to follow the instructions in the email, to confirm that the account is actually yours.',
01217 'throttled-mailpassword'          => 'A password reset email has already been sent, within the last {{PLURAL:$1|hour|$1 hours}}.
01218 To prevent abuse, only one password reset email will be sent per {{PLURAL:$1|hour|$1 hours}}.',
01219 'loginstart'                      => '', # do not translate or duplicate this message to other languages
01220 'loginend'                        => '', # do not translate or duplicate this message to other languages
01221 'loginend-https'                  => '', # do not translate or duplicate this message to other languages
01222 'signupstart'                     => '{{int:loginstart}}', # do not translate or duplicate this message to other languages
01223 'signupend'                       => '{{int:loginend}}', # do not translate or duplicate this message to other languages
01224 'signupend-https'                 => '', # do not translate or duplicate this message to other languages
01225 'mailerror'                       => 'Error sending mail: $1',
01226 'acct_creation_throttle_hit'      => 'Visitors to this wiki using your IP address have created {{PLURAL:$1|1 account|$1 accounts}} in the last day, which is the maximum allowed in this time period.
01227 As a result, visitors using this IP address cannot create any more accounts at the moment.',
01228 'emailauthenticated'              => 'Your email address was confirmed on $2 at $3.',
01229 'emailnotauthenticated'           => 'Your email address is not yet confirmed.
01230 No email will be sent for any of the following features.',
01231 'noemailprefs'                    => 'Specify an email address in your preferences for these features to work.',
01232 'emailconfirmlink'                => 'Confirm your email address',
01233 'invalidemailaddress'             => 'The email address cannot be accepted as it appears to have an invalid format.
01234 Please enter a well-formatted address or empty that field.',
01235 'cannotchangeemail'               => 'Account email addresses cannot be changed on this wiki.',
01236 'emaildisabled'                   => 'This site cannot send emails.',
01237 'accountcreated'                  => 'Account created',
01238 'accountcreatedtext'              => 'The user account for [[{{ns:User}}:$1|$1]] ([[{{ns:User talk}}:$1|talk]]) has been created.',
01239 'createaccount-title'             => 'Account creation for {{SITENAME}}',
01240 'createaccount-text'              => 'Someone created an account for your email address on {{SITENAME}} ($4) named "$2", with password "$3".
01241 You should log in and change your password now.
01242 
01243 You may ignore this message, if this account was created in error.',
01244 'usernamehasherror'               => 'Username cannot contain hash characters',
01245 'login-throttled'                 => 'You have made too many recent login attempts.
01246 Please wait $1 before trying again.',
01247 'login-abort-generic'             => 'Your login was unsuccessful - Aborted',
01248 'loginlanguagelabel'              => 'Language: $1',
01249 'loginlanguagelinks'              => '* {{#language:de}}|de
01250 * {{#language:en}}|en
01251 * {{#language:eo}}|eo
01252 * {{#language:fr}}|fr
01253 * {{#language:es}}|es
01254 * {{#language:it}}|it
01255 * {{#language:nl}}|nl', # do not translate or duplicate this message to other languages
01256 'suspicious-userlogout'           => 'Your request to log out was denied because it looks like it was sent by a broken browser or caching proxy.',
01257 'createacct-another-realname-tip' => 'Real name is optional.
01258 If you choose to provide it, this will be used for giving the user attribution for their work.',
01259 
01260 # Email sending
01261 'pear-mail-error'        => '$1', # do not translate or duplicate this message to other languages
01262 'php-mail-error'         => '$1', # do not translate or duplicate this message to other languages
01263 'php-mail-error-unknown' => "Unknown error in PHP's mail() function.",
01264 'user-mail-no-addy'      => 'Tried to send email without an email address.',
01265 'user-mail-no-body'      => 'Tried to send email with an empty or unreasonably short body.',
01266 
01267 # Change password dialog
01268 'resetpass'                 => 'Change password',
01269 'resetpass_announce'        => 'You logged in with a temporary emailed code.
01270 To finish logging in, you must set a new password here:',
01271 'resetpass_text'            => '<!-- Add text here -->', # only translate this message to other languages if you have to change it
01272 'resetpass_header'          => 'Change account password',
01273 'oldpassword'               => 'Old password:',
01274 'newpassword'               => 'New password:',
01275 'retypenew'                 => 'Retype new password:',
01276 'resetpass_submit'          => 'Set password and log in',
01277 'changepassword-success'    => 'Your password has been changed successfully!',
01278 'resetpass_forbidden'       => 'Passwords cannot be changed',
01279 'resetpass-no-info'         => 'You must be logged in to access this page directly.',
01280 'resetpass-submit-loggedin' => 'Change password',
01281 'resetpass-submit-cancel'   => 'Cancel',
01282 'resetpass-wrong-oldpass'   => 'Invalid temporary or current password.
01283 You may have already successfully changed your password or requested a new temporary password.',
01284 'resetpass-temp-password'   => 'Temporary password:',
01285 'resetpass-abort-generic'   => 'Password change has been aborted by an extension.',
01286 
01287 # Special:PasswordReset
01288 'passwordreset'                    => 'Reset password',
01289 'passwordreset-text-one'           => 'Complete this form to reset your password.',
01290 'passwordreset-text-many'          => '{{PLURAL:$1|Fill one of the fields to reset your password.}}',
01291 'passwordreset-legend'             => 'Reset password',
01292 'passwordreset-disabled'           => 'Password resets have been disabled on this wiki.',
01293 'passwordreset-emaildisabled'      => 'Email features have been disabled on this wiki.',
01294 'passwordreset-username'           => 'Username:',
01295 'passwordreset-domain'             => 'Domain:',
01296 'passwordreset-capture'            => 'View the resulting email?',
01297 'passwordreset-capture-help'       => 'If you check this box, the email (with the temporary password) will be shown to you as well as being sent to the user.',
01298 'passwordreset-email'              => 'Email address:',
01299 'passwordreset-emailtitle'         => 'Account details on {{SITENAME}}',
01300 'passwordreset-emailtext-ip'       => 'Someone (probably you, from IP address $1) requested a reset of your
01301 password for {{SITENAME}} ($4). The following user {{PLURAL:$3|account is|accounts are}}
01302 associated with this email address:
01303 
01304 $2
01305 
01306 {{PLURAL:$3|This temporary password|These temporary passwords}} will expire in {{PLURAL:$5|one day|$5 days}}.
01307 You should log in and choose a new password now. If someone else made this
01308 request, or if you have remembered your original password, and you no longer
01309 wish to change it, you may ignore this message and continue using your old
01310 password.',
01311 'passwordreset-emailtext-user'     => 'User $1 on {{SITENAME}} requested a reset of your password for {{SITENAME}}
01312 ($4). The following user {{PLURAL:$3|account is|accounts are}} associated with this email address:
01313 
01314 $2
01315 
01316 {{PLURAL:$3|This temporary password|These temporary passwords}} will expire in {{PLURAL:$5|one day|$5 days}}.
01317 You should log in and choose a new password now. If someone else made this
01318 request, or if you have remembered your original password, and you no longer
01319 wish to change it, you may ignore this message and continue using your old
01320 password.',
01321 'passwordreset-emailelement'       => 'Username: $1
01322 Temporary password: $2',
01323 'passwordreset-emailsent'          => 'A password reset email has been sent.',
01324 'passwordreset-emailsent-capture'  => 'A password reset email has been sent, which is shown below.',
01325 'passwordreset-emailerror-capture' => 'A password reset email was generated, which is shown below, but sending it to the {{GENDER:$2|user}} failed: $1',
01326 
01327 # Special:ChangeEmail
01328 'changeemail'          => 'Change email address',
01329 'changeemail-summary'  => '', # do not translate or duplicate this message to other languages
01330 'changeemail-header'   => 'Change account email address',
01331 'changeemail-text'     => 'Complete this form to change your email address. You will need to enter your password to confirm this change.',
01332 'changeemail-no-info'  => 'You must be logged in to access this page directly.',
01333 'changeemail-oldemail' => 'Current email address:',
01334 'changeemail-newemail' => 'New email address:',
01335 'changeemail-none'     => '(none)',
01336 'changeemail-password' => 'Your {{SITENAME}} password:',
01337 'changeemail-submit'   => 'Change email',
01338 'changeemail-cancel'   => 'Cancel',
01339 
01340 # Special:ResetTokens
01341 'resettokens'                 => 'Reset tokens',
01342 'resettokens-summary'         => '', # do not translate or duplicate this message to other languages
01343 'resettokens-text'            => 'You can reset tokens which allow access to certain private data associated with your account here.
01344 
01345 You should do it if you accidentally shared them with someone or if your account has been compromised.',
01346 'resettokens-no-tokens'       => 'There are no tokens to reset.',
01347 'resettokens-legend'          => 'Reset tokens',
01348 'resettokens-tokens'          => 'Tokens:',
01349 'resettokens-token-label'     => '$1 (current value: $2)',
01350 'resettokens-watchlist-token' => 'Token for the web feed (Atom/RSS) of [[Special:Watchlist|changes to pages on your watchlist]]',
01351 'resettokens-done'            => 'Tokens reset.',
01352 'resettokens-resetbutton'     => 'Reset selected tokens',
01353 
01354 # Edit page toolbar
01355 'bold_sample'     => 'Bold text',
01356 'bold_tip'        => 'Bold text',
01357 'italic_sample'   => 'Italic text',
01358 'italic_tip'      => 'Italic text',
01359 'link_sample'     => 'Link title',
01360 'link_tip'        => 'Internal link',
01361 'extlink_sample'  => 'http://www.example.com link title',
01362 'extlink_tip'     => 'External link (remember http:// prefix)',
01363 'headline_sample' => 'Headline text',
01364 'headline_tip'    => 'Level 2 headline',
01365 'nowiki_sample'   => 'Insert non-formatted text here',
01366 'nowiki_tip'      => 'Ignore wiki formatting',
01367 'image_sample'    => 'Example.jpg', # only translate this message to other languages if you have to change it
01368 'image_tip'       => 'Embedded file',
01369 'media_sample'    => 'Example.ogg', # only translate this message to other languages if you have to change it
01370 'media_tip'       => 'File link',
01371 'sig_tip'         => 'Your signature with timestamp',
01372 'hr_tip'          => 'Horizontal line (use sparingly)',
01373 
01374 # Edit pages
01375 'summary'                          => 'Summary:',
01376 'subject'                          => 'Subject/headline:',
01377 'minoredit'                        => 'This is a minor edit',
01378 'watchthis'                        => 'Watch this page',
01379 'savearticle'                      => 'Save page',
01380 'preview'                          => 'Preview',
01381 'showpreview'                      => 'Show preview',
01382 'showlivepreview'                  => 'Live preview',
01383 'showdiff'                         => 'Show changes',
01384 'anoneditwarning'                  => "'''Warning:''' You are not logged in.
01385 Your IP address will be recorded in this page's edit history.",
01386 'anonpreviewwarning'               => "''You are not logged in. Saving will record your IP address in this page's edit history.''",
01387 'missingsummary'                   => "'''Reminder:''' You have not provided an edit summary.
01388 If you click \"{{int:savearticle}}\" again, your edit will be saved without one.",
01389 'missingcommenttext'               => 'Please enter a comment below.',
01390 'missingcommentheader'             => "'''Reminder:''' You have not provided a subject/headline for this comment.
01391 If you click \"{{int:savearticle}}\" again, your edit will be saved without one.",
01392 'summary-preview'                  => 'Summary preview:',
01393 'subject-preview'                  => 'Subject/headline preview:',
01394 'blockedtitle'                     => 'User is blocked',
01395 'blockedtext'                      => "'''Your username or IP address has been blocked.'''
01396 
01397 The block was made by $1.
01398 The reason given is ''$2''.
01399 
01400 * Start of block: $8
01401 * Expiry of block: $6
01402 * Intended blockee: $7
01403 
01404 You can contact $1 or another [[{{MediaWiki:Grouppage-sysop}}|administrator]] to discuss the block.
01405 You cannot use the \"email this user\" feature unless a valid email address is specified in your [[Special:Preferences|account preferences]] and you have not been blocked from using it.
01406 Your current IP address is $3, and the block ID is #$5.
01407 Please include all above details in any queries you make.",
01408 'autoblockedtext'                  => "Your IP address has been automatically blocked because it was used by another user, who was blocked by $1.
01409 The reason given is:
01410 
01411 :''$2''
01412 
01413 * Start of block: $8
01414 * Expiry of block: $6
01415 * Intended blockee: $7
01416 
01417 You may contact $1 or one of the other [[{{MediaWiki:Grouppage-sysop}}|administrators]] to discuss the block.
01418 
01419 Note that you may not use the \"email this user\" feature unless you have a valid email address registered in your [[Special:Preferences|user preferences]] and you have not been blocked from using it.
01420 
01421 Your current IP address is $3, and the block ID is #$5.
01422 Please include all above details in any queries you make.",
01423 'blockednoreason'                  => 'no reason given',
01424 'whitelistedittext'                => 'You have to $1 to edit pages.',
01425 'confirmedittext'                  => 'You must confirm your email address before editing pages.
01426 Please set and validate your email address through your [[Special:Preferences|user preferences]].',
01427 'nosuchsectiontitle'               => 'Cannot find section',
01428 'nosuchsectiontext'                => 'You tried to edit a section that does not exist.
01429 It may have been moved or deleted while you were viewing the page.',
01430 'loginreqtitle'                    => 'Login required',
01431 'loginreqlink'                     => 'log in',
01432 'loginreqpagetext'                 => 'You must $1 to view other pages.',
01433 'accmailtitle'                     => 'Password sent',
01434 'accmailtext'                      => "A randomly generated password for [[User talk:$1|$1]] has been sent to $2. It can be changed on the ''[[Special:ChangePassword|change password]]'' page upon logging in.",
01435 'newarticle'                       => '(New)',
01436 'newarticletext'                           => "You have followed a link to a page that does not exist yet.
01437 To create the page, start typing in the box below (see the [$1 help page] for more info).
01438 If you are here by mistake, click your browser's <strong>back</strong> button.",
01439 'newarticletextanon'                       => '{{int:newarticletext|$1}}', # do not translate or duplicate this message to other languages
01440 'talkpagetext'                     => '<!-- MediaWiki:talkpagetext -->', # do not translate or duplicate this message to other languages
01441 'anontalkpagetext'                 => "----
01442 ''This is the discussion page for an anonymous user who has not created an account yet, or who does not use it.''
01443 We therefore have to use the numerical IP address to identify him/her.
01444 Such an IP address can be shared by several users.
01445 If you are an anonymous user and feel that irrelevant comments have been directed at you, please [[Special:UserLogin/signup|create an account]] or [[Special:UserLogin|log in]] to avoid future confusion with other anonymous users.",
01446 'noarticletext'                    => 'There is currently no text in this page.
01447 You can [[Special:Search/{{PAGENAME}}|search for this page title]] in other pages,
01448 <span class="plainlinks">[{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} search the related logs],
01449 or [{{fullurl:{{FULLPAGENAME}}|action=edit}} edit this page]</span>.',
01450 'noarticletext-nopermission'       => 'There is currently no text in this page.
01451 You can [[Special:Search/{{PAGENAME}}|search for this page title]] in other pages, or <span class="plainlinks">[{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} search the related logs]</span>, but you do not have permission to create this page.',
01452 'noarticletextanon'                => '{{int:noarticletext}}', # do not translate or duplicate this message to other languages
01453 'missing-revision'                 => 'The revision #$1 of the page named "{{PAGENAME}}" does not exist.
01454 
01455 This is usually caused by following an outdated history link to a page that has been deleted.
01456 Details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].',
01457 'userpage-userdoesnotexist'        => 'User account "$1" is not registered.
01458 Please check if you want to create/edit this page.',
01459 'userpage-userdoesnotexist-view'   => 'User account "$1" is not registered.',
01460 'blocked-notice-logextract'        => 'This user is currently blocked.
01461 The latest block log entry is provided below for reference:',
01462 'clearyourcache'                   => "'''Note:''' After saving, you may have to bypass your browser's cache to see the changes.
01463 * '''Firefox / Safari:''' Hold ''Shift'' while clicking ''Reload'', or press either ''Ctrl-F5'' or ''Ctrl-R'' (''⌘-R'' on a Mac)
01464 * '''Google Chrome:''' Press ''Ctrl-Shift-R'' (''⌘-Shift-R'' on a Mac)
01465 * '''Internet Explorer:''' Hold ''Ctrl'' while clicking ''Refresh'', or press ''Ctrl-F5''
01466 * '''Opera:''' Clear the cache in ''Tools → Preferences''",
01467 'usercssyoucanpreview'             => "'''Tip:''' Use the \"{{int:showpreview}}\" button to test your new CSS before saving.",
01468 'userjsyoucanpreview'              => "'''Tip:''' Use the \"{{int:showpreview}}\" button to test your new JavaScript before saving.",
01469 'usercsspreview'                   => "'''Remember that you are only previewing your user CSS.'''
01470 '''It has not yet been saved!'''",
01471 'userjspreview'                    => "'''Remember that you are only testing/previewing your user JavaScript.'''
01472 '''It has not yet been saved!'''",
01473 'sitecsspreview'                   => "'''Remember that you are only previewing this CSS.'''
01474 '''It has not yet been saved!'''",
01475 'sitejspreview'                    => "'''Remember that you are only previewing this JavaScript code.'''
01476 '''It has not yet been saved!'''",
01477 'userinvalidcssjstitle'            => "'''Warning:''' There is no skin \"\$1\".
01478 Custom .css and .js pages use a lowercase title, e.g. {{ns:user}}:Foo/vector.css as opposed to {{ns:user}}:Foo/Vector.css.",
01479 'updated'                          => '(Updated)',
01480 'note'                             => "'''Note:'''",
01481 'previewnote'                      => "'''Remember that this is only a preview.'''
01482 Your changes have not yet been saved!",
01483 'continue-editing'                 => 'Go to editing area',
01484 'previewconflict'                  => 'This preview reflects the text in the upper text editing area as it will appear if you choose to save.',
01485 'session_fail_preview'             => "'''Sorry! We could not process your edit due to a loss of session data.'''
01486 Please try again.
01487 If it still does not work, try [[Special:UserLogout|logging out]] and logging back in.",
01488 'session_fail_preview_html'        => "'''Sorry! We could not process your edit due to a loss of session data.'''
01489 
01490 ''Because {{SITENAME}} has raw HTML enabled, the preview is hidden as a precaution against JavaScript attacks.''
01491 
01492 '''If this is a legitimate edit attempt, please try again.'''
01493 If it still does not work, try [[Special:UserLogout|logging out]] and logging back in.",
01494 'token_suffix_mismatch'            => "'''Your edit has been rejected because your client mangled the punctuation characters in the edit token.'''
01495 The edit has been rejected to prevent corruption of the page text.
01496 This sometimes happens when you are using a buggy web-based anonymous proxy service.",
01497 'edit_form_incomplete'             => "'''Some parts of the edit form did not reach the server; double-check that your edits are intact and try again.'''",
01498 'editing'                          => 'Editing $1',
01499 'creating'                         => 'Creating $1',
01500 'editingsection'                   => 'Editing $1 (section)',
01501 'editingcomment'                   => 'Editing $1 (new section)',
01502 'editconflict'                     => 'Edit conflict: $1',
01503 'explainconflict'                  => "Someone else has changed this page since you started editing it.
01504 The upper text area contains the page text as it currently exists.
01505 Your changes are shown in the lower text area.
01506 You will have to merge your changes into the existing text.
01507 '''Only''' the text in the upper text area will be saved when you press \"{{int:savearticle}}\".",
01508 'yourtext'                         => 'Your text',
01509 'storedversion'                    => 'Stored revision',
01510 'nonunicodebrowser'                => "'''Warning: Your browser is not Unicode compliant.'''
01511 A workaround is in place to allow you to safely edit pages: Non-ASCII characters will appear in the edit box as hexadecimal codes.",
01512 'editingold'                       => "'''Warning: You are editing an out-of-date revision of this page.'''
01513 If you save it, any changes made since this revision will be lost.",
01514 'yourdiff'                         => 'Differences',
01515 'copyrightwarning'                 => "Please note that all contributions to {{SITENAME}} are considered to be released under the $2 (see $1 for details).
01516 If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.<br />
01517 You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
01518 '''Do not submit copyrighted work without permission!'''",
01519 'copyrightwarning2'                => "Please note that all contributions to {{SITENAME}} may be edited, altered, or removed by other contributors.
01520 If you do not want your writing to be edited mercilessly, then do not submit it here.<br />
01521 You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see $1 for details).
01522 '''Do not submit copyrighted work without permission!'''",
01523 'editpage-head-copy-warn'          => '-', # do not translate or duplicate this message to other languages
01524 'editpage-tos-summary'             => '-', # do not translate or duplicate this message to other languages
01525 'longpage-hint'                    => '-', # do not translate or duplicate this message to other languages
01526 'longpageerror'                    => "'''Error: The text you have submitted is {{PLURAL:$1|one kilobyte|$1 kilobytes}} long, which is longer than the maximum of {{PLURAL:$2|one kilobyte|$2 kilobytes}}.'''
01527 It cannot be saved.",
01528 'readonlywarning'                  => "'''Warning: The database has been locked for maintenance, so you will not be able to save your edits right now.'''
01529 You may wish to copy and paste your text into a text file and save it for later.
01530 
01531 The administrator who locked it offered this explanation: $1",
01532 'protectedpagewarning'             => "'''Warning: This page has been protected so that only users with administrator privileges can edit it.'''
01533 The latest log entry is provided below for reference:",
01534 'semiprotectedpagewarning'         => "'''Note:''' This page has been protected so that only registered users can edit it.
01535 The latest log entry is provided below for reference:",
01536 'cascadeprotectedwarning'          => "'''Warning:''' This page has been protected so that only users with administrator privileges can edit it because it is included in the following cascade-protected {{PLURAL:$1|page|pages}}:",
01537 'titleprotectedwarning'            => "'''Warning: This page has been protected so that [[Special:ListGroupRights|specific rights]] are needed to create it.'''
01538 The latest log entry is provided below for reference:",
01539 'templatesused'                    => '{{PLURAL:$1|Template|Templates}} used on this page:',
01540 'templatesusedpreview'             => '{{PLURAL:$1|Template|Templates}} used in this preview:',
01541 'templatesusedsection'             => '{{PLURAL:$1|Template|Templates}} used in this section:',
01542 'template-protected'               => '(protected)',
01543 'template-semiprotected'           => '(semi-protected)',
01544 'hiddencategories'                 => 'This page is a member of {{PLURAL:$1|1 hidden category|$1 hidden categories}}:',
01545 'edittools'                        => '<!-- Text here will be shown below edit and upload forms. -->', # only translate this message to other languages if you have to change it
01546 'edittools-upload'                 => '-', # only translate this message to other languages if you have to change it
01547 'nocreatetext'                     => '{{SITENAME}} has restricted the ability to create new pages.
01548 You can go back and edit an existing page, or [[Special:UserLogin|log in or create an account]].',
01549 'nocreate-loggedin'                => 'You do not have permission to create new pages.',
01550 'sectioneditnotsupported-title'    => 'Section editing not supported',
01551 'sectioneditnotsupported-text'     => 'Section editing is not supported in this page.',
01552 'permissionserrors'                => 'Permission error',
01553 'permissionserrorstext'            => 'You do not have permission to do that, for the following {{PLURAL:$1|reason|reasons}}:',
01554 'permissionserrorstext-withaction' => 'You do not have permission to $2, for the following {{PLURAL:$1|reason|reasons}}:',
01555 'recreate-moveddeleted-warn'       => "'''Warning: You are recreating a page that was previously deleted.'''
01556 
01557 You should consider whether it is appropriate to continue editing this page.
01558 The deletion and move log for this page are provided here for convenience:",
01559 'moveddeleted-notice'              => 'This page has been deleted.
01560 The deletion and move log for the page are provided below for reference.',
01561 'log-fulllog'                      => 'View full log',
01562 'edit-hook-aborted'                => 'Edit aborted by hook.
01563 It gave no explanation.',
01564 'edit-gone-missing'                => 'Could not update the page.
01565 It appears to have been deleted.',
01566 'edit-conflict'                    => 'Edit conflict.',
01567 'edit-no-change'                   => 'Your edit was ignored because no change was made to the text.',
01568 'postedit-confirmation'            => 'Your edit was saved.',
01569 'edit-already-exists'              => 'Could not create a new page.
01570 It already exists.',
01571 'addsection-preload'               => '', # do not translate or duplicate this message to other languages
01572 'addsection-editintro'             => '', # do not translate or duplicate this message to other languages
01573 'defaultmessagetext'               => 'Default message text',
01574 'content-failed-to-parse'          => 'Failed to parse $2 content for $1 model: $3',
01575 'invalid-content-data'             => 'Invalid content data',
01576 'content-not-allowed-here'         => '"$1" content is not allowed on page [[$2]]',
01577 'editwarning-warning'              => 'Leaving this page may cause you to lose any changes you have made.
01578 If you are logged in, you can disable this warning in the "Editing" section of your preferences.',
01579 
01580 # Content models
01581 'content-model-wikitext'   => 'wikitext',
01582 'content-model-text'       => 'plain text',
01583 'content-model-javascript' => 'JavaScript',
01584 'content-model-css'        => 'CSS',
01585 
01586 # Parser/template warnings
01587 'expensive-parserfunction-warning'        => "'''Warning:''' This page contains too many expensive parser function calls.
01588 
01589 It should have less than $2 {{PLURAL:$2|call|calls}}, there {{PLURAL:$1|is now $1 call|are now $1 calls}}.",
01590 'expensive-parserfunction-category'       => 'Pages with too many expensive parser function calls',
01591 'post-expand-template-inclusion-warning'  => "'''Warning:''' Template include size is too large.
01592 Some templates will not be included.",
01593 'post-expand-template-inclusion-category' => 'Pages where template include size is exceeded',
01594 'post-expand-template-argument-warning'   => "'''Warning:''' This page contains at least one template argument that has a too large expansion size.
01595 These arguments have been omitted.",
01596 'post-expand-template-argument-category'  => 'Pages containing omitted template arguments',
01597 'parser-template-loop-warning'            => 'Template loop detected: [[$1]]',
01598 'parser-template-recursion-depth-warning' => 'Template recursion depth limit exceeded ($1)',
01599 'language-converter-depth-warning'        => 'Language converter depth limit exceeded ($1)',
01600 'node-count-exceeded-category'            => 'Pages where node-count is exceeded',
01601 'node-count-exceeded-warning'             => 'Page exceeded the node-count',
01602 'expansion-depth-exceeded-category'       => 'Pages where expansion depth is exceeded',
01603 'expansion-depth-exceeded-warning'        => 'Page exceeded the expansion depth',
01604 'parser-unstrip-loop-warning'             => 'Unstrip loop detected',
01605 'parser-unstrip-recursion-limit'          => 'Unstrip recursion limit exceeded ($1)',
01606 'converter-manual-rule-error'             => 'Error detected in manual language conversion rule',
01607 
01608 # "Undo" feature
01609 'undo-success'                 => 'The edit can be undone.
01610 Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.',
01611 'undo-failure'                 => 'The edit could not be undone due to conflicting intermediate edits.',
01612 'undo-norev'                   => 'The edit could not be undone because it does not exist or was deleted.',
01613 'undo-summary'                 => 'Undo revision $1 by [[Special:Contributions/$2|$2]] ([[User talk:$2|talk]])',
01614 'undo-summary-username-hidden' => 'Undo revision $1 by a hidden user',
01615 
01616 # Account creation failure
01617 'cantcreateaccounttitle' => 'Cannot create account',
01618 'cantcreateaccount-text' => "Account creation from this IP address ('''$1''') has been blocked by [[User:$3|$3]].
01619 
01620 The reason given by $3 is ''$2''",
01621 
01622 # History pages
01623 'viewpagelogs'           => 'View logs for this page',
01624 'nohistory'              => 'There is no edit history for this page.',
01625 'currentrev'             => 'Latest revision',
01626 'currentrev-asof'        => 'Latest revision as of $1',
01627 'revisionasof'           => 'Revision as of $1',
01628 'revision-info'          => 'Revision as of $1 by $2',
01629 'revision-info-current'  => '-', # do not translate or duplicate this message to other languages
01630 'revision-nav'           => '($1) $2{{int:pipe-separator}}$3 ($4){{int:pipe-separator}}$5 ($6)', # do not translate or duplicate this message to other languages
01631 'previousrevision'       => '← Older revision',
01632 'nextrevision'           => 'Newer revision →',
01633 'currentrevisionlink'    => 'Latest revision',
01634 'cur'                    => 'cur',
01635 'next'                   => 'next',
01636 'last'                   => 'prev',
01637 'page_first'             => 'first',
01638 'page_last'              => 'last',
01639 'histlegend'             => "Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.<br />
01640 Legend: '''({{int:cur}})''' = difference with latest revision, '''({{int:last}})''' = difference with preceding revision, '''{{int:minoreditletter}}''' = minor edit.",
01641 'history-fieldset-title' => 'Browse history',
01642 'history-show-deleted'   => 'Deleted only',
01643 'history_copyright'      => '-', # do not translate or duplicate this message to other languages
01644 'histfirst'              => 'oldest',
01645 'histlast'               => 'newest',
01646 'historysize'            => '({{PLURAL:$1|1 byte|$1 bytes}})',
01647 'historyempty'           => '(empty)',
01648 
01649 # Revision feed
01650 'history-feed-title'          => 'Revision history',
01651 'history-feed-description'    => 'Revision history for this page on the wiki',
01652 'history-feed-item-nocomment' => '$1 at $2',
01653 'history-feed-empty'          => 'The requested page does not exist.
01654 It may have been deleted from the wiki, or renamed.
01655 Try [[Special:Search|searching on the wiki]] for relevant new pages.',
01656 
01657 # Revision deletion
01658 'rev-deleted-comment'         => '(edit summary removed)',
01659 'rev-deleted-user'            => '(username removed)',
01660 'rev-deleted-event'           => '(log action removed)',
01661 'rev-deleted-user-contribs'   => '[username or IP address removed - edit hidden from contributions]',
01662 'rev-deleted-text-permission' => "This page revision has been '''deleted'''.
01663 Details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].",
01664 'rev-deleted-text-unhide'     => "This page revision has been '''deleted'''.
01665 Details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].
01666 You can still [$1 view this revision] if you wish to proceed.",
01667 'rev-suppressed-text-unhide'  => "This page revision has been '''suppressed'''.
01668 Details can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].
01669 You can still [$1 view this revision] if you wish to proceed.",
01670 'rev-deleted-text-view'       => "This page revision has been '''deleted'''.
01671 You can view it; details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].",
01672 'rev-suppressed-text-view'    => "This page revision has been '''suppressed'''.
01673 You can view it; details can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].",
01674 'rev-deleted-no-diff'         => "You cannot view this diff because one of the revisions has been '''deleted'''.
01675 Details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].",
01676 'rev-suppressed-no-diff'      => "You cannot view this diff because one of the revisions has been '''deleted'''.",
01677 'rev-deleted-unhide-diff'     => "One of the revisions of this diff has been '''deleted'''.
01678 Details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].
01679 You can still [$1 view this diff] if you wish to proceed.",
01680 'rev-suppressed-unhide-diff'  => "One of the revisions of this diff has been '''suppressed'''.
01681 Details can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].
01682 You can still [$1 view this diff] if you wish to proceed.",
01683 'rev-deleted-diff-view'       => "One of the revisions of this diff has been '''deleted'''.
01684 You can view this diff; details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].",
01685 'rev-suppressed-diff-view'    => "One of the revisions of this diff has been '''suppressed'''.
01686 You can view this diff; details can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].",
01687 'rev-delundel'                => 'change visibility',
01688 'rev-showdeleted'             => 'show',
01689 'revisiondelete'              => 'Delete/undelete revisions',
01690 'revdelete-nooldid-title'     => 'Invalid target revision',
01691 'revdelete-nooldid-text'      => 'You have either not specified a target revision(s) to perform this
01692 function, the specified revision does not exist, or you are attempting to hide the current revision.',
01693 'revdelete-nologtype-title'   => 'No log type given',
01694 'revdelete-nologtype-text'    => 'You have not specified a log type to perform this action on.',
01695 'revdelete-nologid-title'     => 'Invalid log entry',
01696 'revdelete-nologid-text'      => 'You have either not specified a target log event to perform this function or the specified entry does not exist.',
01697 'revdelete-no-file'           => 'The file specified does not exist.',
01698 'revdelete-show-file-confirm' => 'Are you sure you want to view a deleted revision of the file "<nowiki>$1</nowiki>" from $2 at $3?',
01699 'revdelete-show-file-submit'  => 'Yes',
01700 'revdelete-selected'          => "'''{{PLURAL:$2|Selected revision|Selected revisions}} of [[:$1]]:'''",
01701 'logdelete-selected'          => "'''{{PLURAL:$1|Selected log event|Selected log events}}:'''",
01702 'revdelete-text'              => "'''Deleted revisions and events will still appear in the page history and logs, but parts of their content will be inaccessible to the public.'''
01703 Other administrators on {{SITENAME}} will still be able to access the hidden content and can undelete it again through this same interface, unless additional restrictions are set.",
01704 'revdelete-confirm'           => 'Please confirm that you intend to do this, that you understand the consequences, and that you are doing this in accordance with [[{{MediaWiki:Policy-url}}|the policy]].',
01705 'revdelete-suppress-text'     => "Suppression should '''only''' be used for the following cases:
01706 * Potentially libelous information
01707 * Inappropriate personal information
01708 *: ''home addresses and telephone numbers, national identification numbers, etc.''",
01709 'revdelete-legend'            => 'Set visibility restrictions',
01710 'revdelete-hide-text'         => 'Revision text',
01711 'revdelete-hide-image'        => 'Hide file content',
01712 'revdelete-hide-name'         => 'Hide action and target',
01713 'revdelete-hide-comment'      => 'Edit summary',
01714 'revdelete-hide-user'         => "Editor's username/IP address",
01715 'revdelete-hide-restricted'   => 'Suppress data from administrators as well as others',
01716 'revdelete-radio-same'        => '(do not change)',
01717 'revdelete-radio-set'         => 'Hidden',
01718 'revdelete-radio-unset'       => 'Visible',
01719 'revdelete-suppress'          => 'Suppress data from administrators as well as others',
01720 'revdelete-unsuppress'        => 'Remove restrictions on restored revisions',
01721 'revdelete-log'               => 'Reason:',
01722 'revdelete-submit'            => 'Apply to selected {{PLURAL:$1|revision|revisions}}',
01723 'revdelete-success'           => "'''Revision visibility successfully updated.'''",
01724 'revdelete-failure'           => "'''Revision visibility could not be updated:'''
01725 $1",
01726 'logdelete-success'           => "'''Log visibility successfully set.'''",
01727 'logdelete-failure'           => "'''Log visibility could not be set:'''
01728 $1",
01729 'revdel-restore'              => 'change visibility',
01730 'revdel-restore-deleted'      => 'deleted revisions',
01731 'revdel-restore-visible'      => 'visible revisions',
01732 'pagehist'                    => 'Page history',
01733 'deletedhist'                 => 'Deleted history',
01734 'revdelete-hide-current'      => 'Error hiding the item dated $2, $1: This is the current revision.
01735 It cannot be hidden.',
01736 'revdelete-show-no-access'    => 'Error showing the item dated $2, $1: This item has been marked "restricted".
01737 You do not have access to it.',
01738 'revdelete-modify-no-access'  => 'Error modifying the item dated $2, $1: This item has been marked "restricted".
01739 You do not have access to it.',
01740 'revdelete-modify-missing'    => 'Error modifying item ID $1: It is missing from the database!',
01741 'revdelete-no-change'         => "'''Warning:''' The item dated $2, $1 already had the requested visibility settings.",
01742 'revdelete-concurrent-change' => 'Error modifying the item dated $2, $1: Its status appears to have been changed by someone else while you attempted to modify it.
01743 Please check the logs.',
01744 'revdelete-only-restricted'   => 'Error hiding the item dated $2, $1: You cannot suppress items from view by administrators without also selecting one of the other visibility options.',
01745 'revdelete-reason-dropdown'   => '*Common delete reasons
01746 ** Copyright violation
01747 ** Inappropriate comment or personal information
01748 ** Inappropriate username
01749 ** Potentially libelous information',
01750 'revdelete-otherreason'       => 'Other/additional reason:',
01751 'revdelete-reasonotherlist'   => 'Other reason',
01752 'revdelete-edit-reasonlist'   => 'Edit delete reasons',
01753 'revdelete-offender'          => 'Revision author:',
01754 
01755 # Suppression log
01756 'suppressionlog'     => 'Suppression log',
01757 'suppressionlogtext' => 'Below is a list of deletions and blocks involving content hidden from administrators.
01758 See the [[Special:BlockList|block list]] for the list of currently operational bans and blocks.',
01759 
01760 # History merging
01761 'mergehistory'                     => 'Merge page histories',
01762 'mergehistory-header'              => 'This page lets you merge revisions of the history of one source page into a newer page.
01763 Make sure that this change will maintain historical page continuity.',
01764 'mergehistory-box'                 => 'Merge revisions of two pages:',
01765 'mergehistory-from'                => 'Source page:',
01766 'mergehistory-into'                => 'Destination page:',
01767 'mergehistory-list'                => 'Mergeable edit history',
01768 'mergehistory-merge'               => 'The following revisions of [[:$1]] can be merged into [[:$2]].
01769 Use the radio button column to merge in only the revisions created at and before the specified time.
01770 Note that using the navigation links will reset this column.',
01771 'mergehistory-go'                  => 'Show mergeable edits',
01772 'mergehistory-submit'              => 'Merge revisions',
01773 'mergehistory-empty'               => 'No revisions can be merged.',
01774 'mergehistory-success'             => '$3 {{PLURAL:$3|revision|revisions}} of [[:$1]] successfully merged into [[:$2]].',
01775 'mergehistory-fail'                => 'Unable to perform history merge, please recheck the page and time parameters.',
01776 'mergehistory-no-source'           => 'Source page $1 does not exist.',
01777 'mergehistory-no-destination'      => 'Destination page $1 does not exist.',
01778 'mergehistory-invalid-source'      => 'Source page must be a valid title.',
01779 'mergehistory-invalid-destination' => 'Destination page must be a valid title.',
01780 'mergehistory-autocomment'         => 'Merged [[:$1]] into [[:$2]]',
01781 'mergehistory-comment'             => 'Merged [[:$1]] into [[:$2]]: $3',
01782 'mergehistory-same-destination'    => 'Source and destination pages cannot be the same',
01783 'mergehistory-reason'              => 'Reason:',
01784 'mergehistory-revisionrow'         => '$1 ($2) $3 . . $4 $5 $6', # only translate this message to other languages if you have to change it
01785 
01786 # Merge log
01787 'mergelog'           => 'Merge log',
01788 'pagemerge-logentry' => 'merged [[$1]] into [[$2]] (revisions up to $3)',
01789 'revertmerge'        => 'Unmerge',
01790 'mergelogpagetext'   => 'Below is a list of the most recent merges of one page history into another.',
01791 
01792 # Diffs
01793 'history-title'               => 'Revision history of "$1"',
01794 'difference-title'            => 'Difference between revisions of "$1"',
01795 'difference-title-multipage'  => 'Difference between pages "$1" and "$2"',
01796 'difference-multipage'        => '(Difference between pages)',
01797 'lineno'                      => 'Line $1:',
01798 'compareselectedversions'     => 'Compare selected revisions',
01799 'showhideselectedversions'    => 'Change visibility of selected revisions',
01800 'editundo'                    => 'undo',
01801 'diff-empty'                  => '(No difference)',
01802 'diff-multi'                  => '({{PLURAL:$1|One intermediate revision|$1 intermediate revisions}} by {{PLURAL:$2|one user|$2 users}} not shown)',
01803 'diff-multi-manyusers'        => '({{PLURAL:$1|One intermediate revision|$1 intermediate revisions}} by more than $2 {{PLURAL:$2|user|users}} not shown)',
01804 'difference-missing-revision' => '{{PLURAL:$2|One revision|$2 revisions}} of this difference ($1) {{PLURAL:$2|was|were}} not found.
01805 
01806 This is usually caused by following an outdated diff link to a page that has been deleted.
01807 Details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].',
01808 
01809 # Search results
01810 'search-summary'                   => '', # do not translate or duplicate this message to other languages
01811 'searchresults'                    => 'Search results',
01812 'searchresults-title'              => 'Search results for "$1"',
01813 'searchresulttext'                 => 'For more information about searching {{SITENAME}}, see [[{{MediaWiki:Helppage}}|{{int:help}}]].',
01814 'searchsubtitle'                   => 'You searched for \'\'\'[[:$1]]\'\'\' ([[Special:Prefixindex/$1|all pages starting with "$1"]]{{int:pipe-separator}}[[Special:WhatLinksHere/$1|all pages that link to "$1"]])',
01815 'searchsubtitleinvalid'            => "You searched for '''$1'''",
01816 'toomanymatches'                   => 'Too many matches were returned, please try a different query',
01817 'titlematches'                     => 'Page title matches',
01818 'notitlematches'                   => 'No page title matches',
01819 'textmatches'                      => 'Page text matches',
01820 'notextmatches'                    => 'No page text matches',
01821 'prevn'                            => 'previous {{PLURAL:$1|$1}}',
01822 'nextn'                            => 'next {{PLURAL:$1|$1}}',
01823 'prevn-title'                      => 'Previous $1 {{PLURAL:$1|result|results}}',
01824 'nextn-title'                      => 'Next $1 {{PLURAL:$1|result|results}}',
01825 'shown-title'                      => 'Show $1 {{PLURAL:$1|result|results}} per page',
01826 'viewprevnext'                     => 'View ($1 {{int:pipe-separator}} $2) ($3)',
01827 'searchmenu-legend'                => 'Search options',
01828 'searchmenu-exists'                => "'''There is a page named \"[[:\$1]]\" on this wiki.'''",
01829 'searchmenu-new'                   => "'''Create the page \"[[:\$1]]\" on this wiki!'''",
01830 'searchmenu-new-nocreate'          => '', # do not translate or duplicate this message to other languages
01831 'searchmenu-prefix'                => '[[Special:PrefixIndex/$1|Browse pages with this prefix]]',
01832 'searchprofile-articles'           => 'Content pages',
01833 'searchprofile-project'            => 'Help and Project pages',
01834 'searchprofile-images'             => 'Multimedia',
01835 'searchprofile-everything'         => 'Everything',
01836 'searchprofile-advanced'           => 'Advanced',
01837 'searchprofile-articles-tooltip'   => 'Search in $1',
01838 'searchprofile-project-tooltip'    => 'Search in $1',
01839 'searchprofile-images-tooltip'     => 'Search for files',
01840 'searchprofile-everything-tooltip' => 'Search all of content (including talk pages)',
01841 'searchprofile-advanced-tooltip'   => 'Search in custom namespaces',
01842 'search-result-size'               => '$1 ({{PLURAL:$2|1 word|$2 words}})',
01843 'search-result-category-size'      => '{{PLURAL:$1|1 member|$1 members}} ({{PLURAL:$2|1 subcategory|$2 subcategories}}, {{PLURAL:$3|1 file|$3 files}})',
01844 'search-result-score'              => 'Relevance: $1%',
01845 'search-redirect'                  => '(redirect $1)',
01846 'search-section'                   => '(section $1)',
01847 'search-suggest'                   => 'Did you mean: $1',
01848 'search-interwiki-caption'         => 'Sister projects',
01849 'search-interwiki-default'         => '$1 results:',
01850 'search-interwiki-custom'          => '', # do not translate or duplicate this message to other languages
01851 'search-interwiki-more'            => '(more)',
01852 'search-relatedarticle'            => 'Related',
01853 'mwsuggest-disable'                => 'Disable search suggestions',
01854 'searcheverything-enable'          => 'Search in all namespaces',
01855 'searchrelated'                    => 'related',
01856 'searchall'                        => 'all',
01857 'showingresults'                   => "Showing below up to {{PLURAL:$1|'''1''' result|'''$1''' results}} starting with #'''$2'''.",
01858 'showingresultsnum'                => "Showing below {{PLURAL:$3|'''1''' result|'''$3''' results}} starting with #'''$2'''.",
01859 'showingresultsheader'             => "{{PLURAL:$5|Result '''$1''' of '''$3'''|Results '''$1 - $2''' of '''$3'''}} for '''$4'''",
01860 'nonefound'                        => "'''Note:''' Only some namespaces are searched by default.
01861 Try prefixing your query with ''all:'' to search all content (including talk pages, templates, etc), or use the desired namespace as prefix.",
01862 'search-nonefound'                 => 'There were no results matching the query.',
01863 'powersearch'                      => 'Advanced search',
01864 'powersearch-legend'               => 'Advanced search',
01865 'powersearch-ns'                   => 'Search in namespaces:',
01866 'powersearch-redir'                => 'List redirects',
01867 'powersearch-field'                => 'Search for',
01868 'powersearch-togglelabel'          => 'Check:',
01869 'powersearch-toggleall'            => 'All',
01870 'powersearch-togglenone'           => 'None',
01871 'search-external'                  => 'External search',
01872 'searchdisabled'                   => '{{SITENAME}} search is disabled.
01873 You can search via Google in the meantime.
01874 Note that their indexes of {{SITENAME}} content may be out of date.',
01875 'googlesearch'                     => '<form method="get" action="//www.google.com/search" id="googlesearch">
01876     <input type="hidden" name="domains" value="{{SERVER}}" />
01877     <input type="hidden" name="num" value="50" />
01878     <input type="hidden" name="ie" value="$2" />
01879     <input type="hidden" name="oe" value="$2" />
01880 
01881     <input type="text" name="q" size="31" maxlength="255" value="$1" />
01882     <input type="submit" name="btnG" value="$3" />
01883   <div>
01884     <input type="radio" name="sitesearch" id="gwiki" value="{{SERVER}}" checked="checked" /><label for="gwiki">{{SITENAME}}</label>
01885     <input type="radio" name="sitesearch" id="gWWW" value="" /><label for="gWWW">WWW</label>
01886   </div>
01887 </form>', # do not translate or duplicate this message to other languages
01888 'search-error'                     => 'An error has occurred while searching: $1',
01889 
01890 # OpenSearch description
01891 'opensearch-desc' => '{{SITENAME}} ({{CONTENTLANGUAGE}})', # do not translate or duplicate this message to other languages
01892 
01893 # Preferences page
01894 'preferences'                   => 'Preferences',
01895 'preferences-summary'           => '', # do not translate or duplicate this message to other languages
01896 'mypreferences'                 => 'Preferences',
01897 'prefs-edits'                   => 'Number of edits:',
01898 'prefsnologin'                  => 'Not logged in',
01899 'prefsnologintext'              => 'You must be <span class="plainlinks">[{{fullurl:{{#Special:UserLogin}}|returnto=$1}} logged in]</span> to set user preferences.',
01900 'changepassword'                => 'Change password',
01901 'changepassword-summary'        => '', # do not translate or duplicate this message to other languages
01902 'prefs-skin'                    => 'Skin',
01903 'skin-preview'                  => 'Preview',
01904 'datedefault'                   => 'No preference',
01905 'prefs-beta'                    => 'Beta features',
01906 'prefs-datetime'                => 'Date and time',
01907 'prefs-labs'                    => 'Labs features',
01908 'prefs-user-pages'              => 'User pages',
01909 'prefs-personal'                => 'User profile',
01910 'prefs-rc'                      => 'Recent changes',
01911 'prefs-watchlist'               => 'Watchlist',
01912 'prefs-watchlist-days'          => 'Days to show in watchlist:',
01913 'prefs-watchlist-days-max'      => 'Maximum $1 {{PLURAL:$1|day|days}}',
01914 'prefs-watchlist-edits'         => 'Maximum number of changes to show in expanded watchlist:',
01915 'prefs-watchlist-edits-max'     => 'Maximum number: 1000',
01916 'prefs-watchlist-token'         => 'Watchlist token:',
01917 'prefs-misc'                    => 'Misc',
01918 'prefs-resetpass'               => 'Change password',
01919 'prefs-changeemail'             => 'Change email address',
01920 'prefs-setemail'                => 'Set an email address',
01921 'prefs-email'                   => 'Email options',
01922 'prefs-rendering'               => 'Appearance',
01923 'saveprefs'                     => 'Save',
01924 'resetprefs'                    => 'Clear unsaved changes',
01925 'restoreprefs'                  => 'Restore all default settings (in all sections)',
01926 'prefs-editing'                 => 'Editing',
01927 'rows'                          => 'Rows:',
01928 'columns'                       => 'Columns:',
01929 'searchresultshead'             => 'Search',
01930 'resultsperpage'                => 'Hits per page:',
01931 'stub-threshold'                => 'Threshold for <a href="#" class="stub">stub link</a> formatting (bytes):',
01932 'stub-threshold-disabled'       => 'Disabled',
01933 'recentchangesdays'             => 'Days to show in recent changes:',
01934 'recentchangesdays-max'         => 'Maximum $1 {{PLURAL:$1|day|days}}',
01935 'recentchangescount'            => 'Number of edits to show by default:',
01936 'prefs-help-recentchangescount' => 'This includes recent changes, page histories, and logs.',
01937 'prefs-help-watchlist-token2'   => 'This is the secret key to the web feed of your watchlist.
01938 Anyone who knows it will be able to read your watchlist, so do not share it.
01939 [[Special:ResetTokens|Click here if you need to reset it]].',
01940 'savedprefs'                    => 'Your preferences have been saved.',
01941 'timezonelegend'                => 'Time zone:',
01942 'localtime'                     => 'Local time:',
01943 'timezoneuseserverdefault'      => 'Use wiki default ($1)',
01944 'timezoneuseoffset'             => 'Other (specify offset)',
01945 'timezoneoffset'                => 'Offset¹:',
01946 'servertime'                    => 'Server time:',
01947 'guesstimezone'                 => 'Fill in from browser',
01948 'timezoneregion-africa'         => 'Africa',
01949 'timezoneregion-america'        => 'America',
01950 'timezoneregion-antarctica'     => 'Antarctica',
01951 'timezoneregion-arctic'         => 'Arctic',
01952 'timezoneregion-asia'           => 'Asia',
01953 'timezoneregion-atlantic'       => 'Atlantic Ocean',
01954 'timezoneregion-australia'      => 'Australia',
01955 'timezoneregion-europe'         => 'Europe',
01956 'timezoneregion-indian'         => 'Indian Ocean',
01957 'timezoneregion-pacific'        => 'Pacific Ocean',
01958 'allowemail'                    => 'Enable email from other users',
01959 'prefs-searchoptions'           => 'Search',
01960 'prefs-namespaces'              => 'Namespaces',
01961 'defaultns'                     => 'Otherwise search in these namespaces:',
01962 'default'                       => 'default',
01963 'prefs-files'                   => 'Files',
01964 'prefs-custom-css'              => 'Custom CSS',
01965 'prefs-custom-js'               => 'Custom JavaScript',
01966 'prefs-common-css-js'           => 'Shared CSS/JavaScript for all skins:',
01967 'prefs-reset-intro'             => 'You can use this page to reset your preferences to the site defaults.
01968 This cannot be undone.',
01969 'prefs-emailconfirm-label'      => 'Email confirmation:',
01970 'youremail'                     => 'Email:',
01971 'username'                      => '{{GENDER:$1|Username}}:',
01972 'uid'                           => '{{GENDER:$1|User}} ID:',
01973 'prefs-memberingroups'          => '{{GENDER:$2|Member}} of {{PLURAL:$1|group|groups}}:',
01974 'prefs-memberingroups-type'     => '$1', # only translate this message to other languages if you have to change it
01975 'prefs-registration'            => 'Registration time:',
01976 'prefs-registration-date-time'  => '$1', # only translate this message to other languages if you have to change it
01977 'yourrealname'                  => 'Real name:',
01978 'yourlanguage'                  => 'Language:',
01979 'yourvariant'                   => 'Content language variant:',
01980 'prefs-help-variant'            => 'Your preferred variant or orthography to display the content pages of this wiki in.',
01981 'yournick'                      => 'New signature:',
01982 'prefs-help-signature'          => 'Comments on talk pages should be signed with "<nowiki>~~~~</nowiki>", which will be converted into your signature and a timestamp.',
01983 'badsig'                        => 'Invalid raw signature.
01984 Check HTML tags.',
01985 'badsiglength'                  => 'Your signature is too long.
01986 It must not be more than $1 {{PLURAL:$1|character|characters}} long.',
01987 'yourgender'                    => 'How do you prefer to be described?',
01988 'gender-unknown'                => 'I prefer not to say',
01989 'gender-male'                   => 'He edits wiki pages',
01990 'gender-female'                 => 'She edits wiki pages',
01991 'prefs-help-gender'             => 'Setting this preference is optional.
01992 The software uses its value to address you and to mention you to others using the appropriate grammatical gender.
01993 This information will be public.',
01994 'email'                         => 'Email',
01995 'prefs-help-realname'           => 'Real name is optional.
01996 If you choose to provide it, this will be used for giving you attribution for your work.',
01997 'prefs-help-email'              => 'Email address is optional, but is needed for password resets, should you forget your password.',
01998 'prefs-help-email-others'       => 'You can also choose to let others contact you by email through a link on your user or talk page.
01999 Your email address is not revealed when other users contact you.',
02000 'prefs-help-email-required'     => 'Email address is required.',
02001 'prefs-info'                    => 'Basic information',
02002 'prefs-i18n'                    => 'Internationalisation',
02003 'prefs-signature'               => 'Signature',
02004 'prefs-dateformat'              => 'Date format',
02005 'prefs-timeoffset'              => 'Time offset',
02006 'prefs-advancedediting'         => 'General options',
02007 'prefs-editor'                  => 'Editor',
02008 'prefs-preview'                 => 'Preview',
02009 'prefs-advancedrc'              => 'Advanced options',
02010 'prefs-advancedrendering'       => 'Advanced options',
02011 'prefs-advancedsearchoptions'   => 'Advanced options',
02012 'prefs-advancedwatchlist'       => 'Advanced options',
02013 'prefs-displayrc'               => 'Display options',
02014 'prefs-displaysearchoptions'    => 'Display options',
02015 'prefs-displaywatchlist'        => 'Display options',
02016 'prefs-tokenwatchlist'          => 'Token',
02017 'prefs-diffs'                   => 'Diffs',
02018 'prefs-help-prefershttps'       => 'This preference will take effect on your next login.',
02019 
02020 # User preference: email validation using jQuery
02021 'email-address-validity-valid'   => 'Email address appears valid',
02022 'email-address-validity-invalid' => 'Enter a valid email address',
02023 
02024 # User rights
02025 'userrights'                     => 'User rights management',
02026 'userrights-summary'             => '', # do not translate or duplicate this message to other languages
02027 'userrights-lookup-user'         => 'Manage user groups',
02028 'userrights-user-editname'       => 'Enter a username:',
02029 'editusergroup'                  => 'Edit user groups',
02030 'editinguser'                    => "Changing user rights of user '''[[User:$1|$1]]''' $2",
02031 'userrights-editusergroup'       => 'Edit user groups',
02032 'saveusergroups'                 => 'Save user groups',
02033 'userrights-groupsmember'        => 'Member of:',
02034 'userrights-groupsmember-auto'   => 'Implicit member of:',
02035 'userrights-groupsmember-type'   => '$1', # only translate this message to other languages if you have to change it
02036 'userrights-groups-help'         => 'You may alter the groups this user is in:
02037 * A checked box means the user is in that group.
02038 * An unchecked box means the user is not in that group.
02039 * A * indicates that you cannot remove the group once you have added it, or vice versa.',
02040 'userrights-reason'              => 'Reason:',
02041 'userrights-no-interwiki'        => 'You do not have permission to edit user rights on other wikis.',
02042 'userrights-nodatabase'          => 'Database $1 does not exist or is not local.',
02043 'userrights-nologin'             => 'You must [[Special:UserLogin|log in]] with an administrator account to assign user rights.',
02044 'userrights-notallowed'          => 'You do not have permission to add or remove user rights.',
02045 'userrights-changeable-col'      => 'Groups you can change',
02046 'userrights-unchangeable-col'    => 'Groups you cannot change',
02047 'userrights-irreversible-marker' => '$1*', # only translate this message to other languages if you have to change it
02048 'userrights-conflict'            => 'Conflict of user rights changes! Please review and confirm your changes.',
02049 'userrights-removed-self'        => 'You successfully removed your own rights. As such, you are no longer able to access this page.',
02050 
02051 # Groups
02052 'group'               => 'Group:',
02053 'group-user'          => 'Users',
02054 'group-autoconfirmed' => 'Autoconfirmed users',
02055 'group-bot'           => 'Bots',
02056 'group-sysop'         => 'Administrators',
02057 'group-bureaucrat'    => 'Bureaucrats',
02058 'group-suppress'      => 'Oversights',
02059 'group-all'           => '(all)',
02060 
02061 'group-user-member'          => '{{GENDER:$1|user}}',
02062 'group-autoconfirmed-member' => '{{GENDER:$1|autoconfirmed user}}',
02063 'group-bot-member'           => '{{GENDER:$1|bot}}',
02064 'group-sysop-member'         => '{{GENDER:$1|administrator}}',
02065 'group-bureaucrat-member'    => '{{GENDER:$1|bureaucrat}}',
02066 'group-suppress-member'      => '{{GENDER:$1|oversight}}',
02067 
02068 'grouppage-user'          => '{{ns:project}}:Users',
02069 'grouppage-autoconfirmed' => '{{ns:project}}:Autoconfirmed users',
02070 'grouppage-bot'           => '{{ns:project}}:Bots',
02071 'grouppage-sysop'         => '{{ns:project}}:Administrators',
02072 'grouppage-bureaucrat'    => '{{ns:project}}:Bureaucrats',
02073 'grouppage-suppress'      => '{{ns:project}}:Oversight',
02074 
02075 # Rights
02076 'right-read'                  => 'Read pages',
02077 'right-edit'                  => 'Edit pages',
02078 'right-createpage'            => 'Create pages (which are not discussion pages)',
02079 'right-createtalk'            => 'Create discussion pages',
02080 'right-createaccount'         => 'Create new user accounts',
02081 'right-minoredit'             => 'Mark edits as minor',
02082 'right-move'                  => 'Move pages',
02083 'right-move-subpages'         => 'Move pages with their subpages',
02084 'right-move-rootuserpages'    => 'Move root user pages',
02085 'right-movefile'              => 'Move files',
02086 'right-suppressredirect'      => 'Not create redirects from source pages when moving pages',
02087 'right-upload'                => 'Upload files',
02088 'right-reupload'              => 'Overwrite existing files',
02089 'right-reupload-own'          => 'Overwrite existing files uploaded by oneself',
02090 'right-reupload-shared'       => 'Override files on the shared media repository locally',
02091 'right-upload_by_url'         => 'Upload files from a URL',
02092 'right-purge'                 => 'Purge the site cache for a page without confirmation',
02093 'right-autoconfirmed'         => 'Not be affected by IP-based rate limits',
02094 'right-bot'                   => 'Be treated as an automated process',
02095 'right-nominornewtalk'        => 'Not have minor edits to discussion pages trigger the new messages prompt',
02096 'right-apihighlimits'         => 'Use higher limits in API queries',
02097 'right-writeapi'              => 'Use of the write API',
02098 'right-delete'                => 'Delete pages',
02099 'right-bigdelete'             => 'Delete pages with large histories',
02100 'right-deletelogentry'        => 'Delete and undelete specific log entries',
02101 'right-deleterevision'        => 'Delete and undelete specific revisions of pages',
02102 'right-deletedhistory'        => 'View deleted history entries, without their associated text',
02103 'right-deletedtext'           => 'View deleted text and changes between deleted revisions',
02104 'right-browsearchive'         => 'Search deleted pages',
02105 'right-undelete'              => 'Undelete a page',
02106 'right-suppressrevision'      => 'Review and restore revisions hidden from administrators',
02107 'right-suppressionlog'        => 'View private logs',
02108 'right-block'                 => 'Block other users from editing',
02109 'right-blockemail'            => 'Block a user from sending email',
02110 'right-hideuser'              => 'Block a username, hiding it from the public',
02111 'right-ipblock-exempt'        => 'Bypass IP blocks, auto-blocks and range blocks',
02112 'right-proxyunbannable'       => 'Bypass automatic blocks of proxies',
02113 'right-unblockself'           => 'Unblock oneself',
02114 'right-protect'               => 'Change protection levels and edit cascade-protected pages',
02115 'right-editprotected'         => 'Edit pages protected as "{{int:protect-level-sysop}}"',
02116 'right-editsemiprotected'     => 'Edit pages protected as "{{int:protect-level-autoconfirmed}}"',
02117 'right-editinterface'         => 'Edit the user interface',
02118 'right-editusercssjs'         => "Edit other users' CSS and JavaScript files",
02119 'right-editusercss'           => "Edit other users' CSS files",
02120 'right-edituserjs'            => "Edit other users' JavaScript files",
02121 'right-editmyusercss'         => 'Edit your own user CSS files',
02122 'right-editmyuserjs'          => 'Edit your own user JavaScript files',
02123 'right-viewmywatchlist'       => 'View your own watchlist',
02124 'right-editmywatchlist'       => 'Edit your own watchlist. Note some actions will still add pages even without this right.',
02125 'right-viewmyprivateinfo'     => 'View your own private data (e.g. email address, real name)',
02126 'right-editmyprivateinfo'     => 'Edit your own private data (e.g. email address, real name)',
02127 'right-editmyoptions'         => 'Edit your own preferences',
02128 'right-rollback'              => 'Quickly rollback the edits of the last user who edited a particular page',
02129 'right-markbotedits'          => 'Mark rolled-back edits as bot edits',
02130 'right-noratelimit'           => 'Not be affected by rate limits',
02131 'right-import'                => 'Import pages from other wikis',
02132 'right-importupload'          => 'Import pages from a file upload',
02133 'right-patrol'                => "Mark others' edits as patrolled",
02134 'right-autopatrol'            => "Have one's own edits automatically marked as patrolled",
02135 'right-patrolmarks'           => 'View recent changes patrol marks',
02136 'right-unwatchedpages'        => 'View a list of unwatched pages',
02137 'right-mergehistory'          => 'Merge the history of pages',
02138 'right-userrights'            => 'Edit all user rights',
02139 'right-userrights-interwiki'  => 'Edit user rights of users on other wikis',
02140 'right-siteadmin'             => 'Lock and unlock the database',
02141 'right-override-export-depth' => 'Export pages including linked pages up to a depth of 5',
02142 'right-sendemail'             => 'Send email to other users',
02143 'right-passwordreset'         => 'View password reset emails',
02144 
02145 # Special:Log/newusers
02146 'newuserlogpage'     => 'User creation log',
02147 'newuserlogpagetext' => 'This is a log of user creations.',
02148 
02149 # User rights log
02150 'rightslog'     => 'User rights log',
02151 'rightslogtext' => 'This is a log of changes to user rights.',
02152 
02153 # Associated actions - in the sentence "You do not have permission to X"
02154 'action-read'                 => 'read this page',
02155 'action-edit'                 => 'edit this page',
02156 'action-createpage'           => 'create pages',
02157 'action-createtalk'           => 'create discussion pages',
02158 'action-createaccount'        => 'create this user account',
02159 'action-minoredit'            => 'mark this edit as minor',
02160 'action-move'                 => 'move this page',
02161 'action-move-subpages'        => 'move this page, and its subpages',
02162 'action-move-rootuserpages'   => 'move root user pages',
02163 'action-movefile'             => 'move this file',
02164 'action-upload'               => 'upload this file',
02165 'action-reupload'             => 'overwrite this existing file',
02166 'action-reupload-shared'      => 'override this file on a shared repository',
02167 'action-upload_by_url'        => 'upload this file from a URL',
02168 'action-writeapi'             => 'use the write API',
02169 'action-delete'               => 'delete this page',
02170 'action-deleterevision'       => 'delete this revision',
02171 'action-deletedhistory'       => "view this page's deleted history",
02172 'action-browsearchive'        => 'search deleted pages',
02173 'action-undelete'             => 'undelete this page',
02174 'action-suppressrevision'     => 'review and restore this hidden revision',
02175 'action-suppressionlog'       => 'view this private log',
02176 'action-block'                => 'block this user from editing',
02177 'action-protect'              => 'change protection levels for this page',
02178 'action-rollback'             => 'quickly rollback the edits of the last user who edited a particular page',
02179 'action-import'               => 'import pages from another wiki',
02180 'action-importupload'         => 'import pages from a file upload',
02181 'action-patrol'               => "mark others' edits as patrolled",
02182 'action-autopatrol'           => 'have your edit marked as patrolled',
02183 'action-unwatchedpages'       => 'view the list of unwatched pages',
02184 'action-mergehistory'         => 'merge the history of this page',
02185 'action-userrights'           => 'edit all user rights',
02186 'action-userrights-interwiki' => 'edit user rights of users on other wikis',
02187 'action-siteadmin'            => 'lock or unlock the database',
02188 'action-sendemail'            => 'send emails',
02189 'action-editmywatchlist'      => 'edit your watchlist',
02190 'action-viewmywatchlist'      => 'view your watchlist',
02191 'action-viewmyprivateinfo'    => 'view your private information',
02192 'action-editmyprivateinfo'    => 'edit your private information',
02193 
02194 # Recent changes
02195 'nchanges'                          => '$1 {{PLURAL:$1|change|changes}}',
02196 'enhancedrc-since-last-visit'       => '$1 {{PLURAL:$1|since last visit}}',
02197 'enhancedrc-history'                => 'history',
02198 'recentchanges'                     => 'Recent changes',
02199 'recentchanges-url'                 => 'Special:RecentChanges', # do not translate or duplicate this message to other languages
02200 'recentchanges-legend'              => 'Recent changes options',
02201 'recentchanges-summary'             => 'Track the most recent changes to the wiki on this page.',
02202 'recentchangestext'                 => '-', # do not translate or duplicate this message to other languages
02203 'recentchanges-noresult'            => 'No changes during the given period matching these criteria.',
02204 'recentchanges-feed-description'    => 'Track the most recent changes to the wiki in this feed.',
02205 'recentchanges-label-newpage'       => 'This edit created a new page',
02206 'recentchanges-label-minor'         => 'This is a minor edit',
02207 'recentchanges-label-bot'           => 'This edit was performed by a bot',
02208 'recentchanges-label-unpatrolled'   => 'This edit has not yet been patrolled',
02209 'rcnote'                            => "Below {{PLURAL:$1|is '''1''' change|are the last '''$1''' changes}} in the last {{PLURAL:$2|day|'''$2''' days}}, as of $5, $4.",
02210 'rcnotefrom'                        => "Below are the changes since '''$2''' (up to '''$1''' shown).",
02211 'rclistfrom'                        => 'Show new changes starting from $1',
02212 'rcshowhideminor'                   => '$1 minor edits',
02213 'rcshowhidebots'                    => '$1 bots',
02214 'rcshowhideliu'                     => '$1 logged-in users',
02215 'rcshowhideanons'                   => '$1 anonymous users',
02216 'rcshowhidepatr'                    => '$1 patrolled edits',
02217 'rcshowhidemine'                    => '$1 my edits',
02218 'rclinks'                           => 'Show last $1 changes in last $2 days<br />$3',
02219 'diff'                              => 'diff',
02220 'hist'                              => 'hist',
02221 'hide'                              => 'Hide',
02222 'show'                              => 'Show',
02223 'minoreditletter'                   => 'm',
02224 'newpageletter'                     => 'N',
02225 'boteditletter'                     => 'b',
02226 'unpatrolledletter'                 => '!', # only translate this message to other languages if you have to change it
02227 'number_of_watching_users_RCview'   => '[$1]', # do not translate or duplicate this message to other languages
02228 'number_of_watching_users_pageview' => '[$1 watching {{PLURAL:$1|user|users}}]',
02229 'rc_categories'                     => 'Limit to categories (separate with "|")',
02230 'rc_categories_any'                 => 'Any',
02231 'rc-change-size'                    => '$1', # only translate this message to other languages if you have to change it
02232 'rc-change-size-new'                => '$1 {{PLURAL:$1|byte|bytes}} after change',
02233 'newsectionsummary'                 => '/* $1 */ new section',
02234 'rc-enhanced-expand'                => 'Show details',
02235 'rc-enhanced-hide'                  => 'Hide details',
02236 'rc-old-title'                      => 'originally created as "$1"',
02237 
02238 # Recent changes linked
02239 'recentchangeslinked'         => 'Related changes',
02240 'recentchangeslinked-feed'    => 'Related changes',
02241 'recentchangeslinked-toolbox' => 'Related changes',
02242 'recentchangeslinked-title'   => 'Changes related to "$1"',
02243 'recentchangeslinked-summary' => "This is a list of changes made recently to pages linked from a specified page (or to members of a specified category).
02244 Pages on [[Special:Watchlist|your watchlist]] are '''bold'''.",
02245 'recentchangeslinked-page'    => 'Page name:',
02246 'recentchangeslinked-to'      => 'Show changes to pages linked to the given page instead',
02247 
02248 # Upload
02249 'upload'                      => 'Upload file',
02250 'uploadbtn'                   => 'Upload file',
02251 'reuploaddesc'                => 'Cancel upload and return to the upload form',
02252 'upload-tryagain'             => 'Submit modified file description',
02253 'uploadnologin'               => 'Not logged in',
02254 'uploadnologintext'           => 'You must $1 to upload files.',
02255 'upload_directory_missing'    => 'The upload directory ($1) is missing and could not be created by the webserver.',
02256 'upload_directory_read_only'  => 'The upload directory ($1) is not writable by the webserver.',
02257 'uploaderror'                 => 'Upload error',
02258 'upload-summary'              => '', # do not translate or duplicate this message to other languages
02259 'upload-recreate-warning'     => "'''Warning: A file by that name has been deleted or moved.'''
02260 
02261 The deletion and move log for this page are provided here for convenience:",
02262 'uploadtext'                  => "Use the form below to upload files.
02263 To view or search previously uploaded files go to the [[Special:FileList|list of uploaded files]], (re)uploads are also logged in the [[Special:Log/upload|upload log]], deletions in the [[Special:Log/delete|deletion log]].
02264 
02265 To include a file in a page, use a link in one of the following forms:
02266 * '''<code><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.jpg]]</nowiki></code>''' to use the full version of the file
02267 * '''<code><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.png|200px|thumb|left|alt text]]</nowiki></code>''' to use a 200 pixel wide rendition in a box in the left margin with \"alt text\" as description
02268 * '''<code><nowiki>[[</nowiki>{{ns:media}}<nowiki>:File.ogg]]</nowiki></code>''' for directly linking to the file without displaying the file",
02269 'upload-permitted'            => 'Permitted file types: $1.',
02270 'upload-preferred'            => 'Preferred file types: $1.',
02271 'upload-prohibited'           => 'Prohibited file types: $1.',
02272 'uploadfooter'                => '-', # do not translate or duplicate this message to other languages
02273 'upload-default-description'  => '-', # do not translate or duplicate this message to other languages
02274 'uploadlog'                   => 'upload log',
02275 'uploadlogpage'               => 'Upload log',
02276 'uploadlogpagetext'           => 'Below is a list of the most recent file uploads.
02277 See the [[Special:NewFiles|gallery of new files]] for a more visual overview.',
02278 'filename'                    => 'Filename',
02279 'filedesc'                    => 'Summary',
02280 'fileuploadsummary'           => 'Summary:',
02281 'filereuploadsummary'         => 'File changes:',
02282 'filestatus'                  => 'Copyright status:',
02283 'filesource'                  => 'Source:',
02284 'uploadedfiles'               => 'Uploaded files',
02285 'ignorewarning'               => 'Ignore warning and save file anyway',
02286 'ignorewarnings'              => 'Ignore any warnings',
02287 'minlength1'                  => 'Filenames must be at least one letter.',
02288 'illegalfilename'             => 'The filename "$1" contains characters that are not allowed in page titles.
02289 Please rename the file and try uploading it again.',
02290 'filename-toolong'            => 'Filenames may not be longer than 240 bytes.',
02291 'badfilename'                 => 'Filename has been changed to "$1".',
02292 'filetype-mime-mismatch'      => 'File extension ".$1" does not match the detected MIME type of the file ($2).',
02293 'filetype-badmime'            => 'Files of the MIME type "$1" are not allowed to be uploaded.',
02294 'filetype-bad-ie-mime'        => 'Cannot upload this file because Internet Explorer would detect it as "$1", which is a disallowed and potentially dangerous file type.',
02295 'filetype-unwanted-type'      => "'''\".\$1\"''' is an unwanted file type.
02296 Preferred {{PLURAL:\$3|file type is|file types are}} \$2.",
02297 'filetype-banned-type'        => '\'\'\'".$1"\'\'\' {{PLURAL:$4|is not a permitted file type|are not permitted file types}}.
02298 Permitted {{PLURAL:$3|file type is|file types are}} $2.',
02299 'filetype-missing'            => 'The file has no extension (like ".jpg").',
02300 'empty-file'                  => 'The file you submitted was empty.',
02301 'file-too-large'              => 'The file you submitted was too large.',
02302 'filename-tooshort'           => 'The filename is too short.',
02303 'filetype-banned'             => 'This type of file is banned.',
02304 'verification-error'          => 'This file did not pass file verification.',
02305 'hookaborted'                 => 'The modification you tried to make was aborted by an extension.',
02306 'illegal-filename'            => 'The filename is not allowed.',
02307 'overwrite'                   => 'Overwriting an existing file is not allowed.',
02308 'unknown-error'               => 'An unknown error occurred.',
02309 'tmp-create-error'            => 'Could not create temporary file.',
02310 'tmp-write-error'             => 'Error writing temporary file.',
02311 'large-file'                  => 'It is recommended that files are no larger than $1;
02312 this file is $2.',
02313 'largefileserver'             => 'This file is bigger than the server is configured to allow.',
02314 'emptyfile'                   => 'The file you uploaded seems to be empty.
02315 This might be due to a typo in the filename.
02316 Please check whether you really want to upload this file.',
02317 'windows-nonascii-filename'   => 'This wiki does not support filenames with special characters.',
02318 'fileexists'                  => 'A file with this name exists already, please check <strong>[[:$1]]</strong> if you are not sure if you want to change it.
02319 [[$1|thumb]]',
02320 'filepageexists'              => 'The description page for this file has already been created at <strong>[[:$1]]</strong>, but no file with this name currently exists.
02321 The summary you enter will not appear on the description page.
02322 To make your summary appear there, you will need to manually edit it.
02323 [[$1|thumb]]',
02324 'fileexists-extension'        => 'A file with a similar name exists: [[$2|thumb]]
02325 * Name of the uploading file: <strong>[[:$1]]</strong>
02326 * Name of the existing file: <strong>[[:$2]]</strong>
02327 Please choose a different name.',
02328 'fileexists-thumbnail-yes'    => "The file seems to be an image of reduced size ''(thumbnail)''.
02329 [[$1|thumb]]
02330 Please check the file <strong>[[:$1]]</strong>.
02331 If the checked file is the same image of original size it is not necessary to upload an extra thumbnail.",
02332 'file-thumbnail-no'           => "The filename begins with <strong>$1</strong>.
02333 It seems to be an image of reduced size ''(thumbnail)''.
02334 If you have this image in full resolution upload this one, otherwise change the filename please.",
02335 'fileexists-forbidden'        => 'A file with this name already exists, and cannot be overwritten.
02336 If you still want to upload your file, please go back and use a new name.
02337 [[File:$1|thumb|center|$1]]',
02338 'fileexists-shared-forbidden' => 'A file with this name exists already in the shared file repository.
02339 If you still want to upload your file, please go back and use a new name.
02340 [[File:$1|thumb|center|$1]]',
02341 'file-exists-duplicate'       => 'This file is a duplicate of the following {{PLURAL:$1|file|files}}:',
02342 'file-deleted-duplicate'      => "A file identical to this file ([[:$1]]) has previously been deleted.
02343 You should check that file's deletion history before proceeding to re-upload it.",
02344 'uploadwarning'               => 'Upload warning',
02345 'uploadwarning-text'          => 'Please modify the file description below and try again.',
02346 'savefile'                    => 'Save file',
02347 'uploadedimage'               => 'uploaded "[[$1]]"',
02348 'overwroteimage'              => 'uploaded a new version of "[[$1]]"',
02349 'uploaddisabled'              => 'Uploads disabled.',
02350 'copyuploaddisabled'          => 'Upload by URL disabled.',
02351 'uploadfromurl-queued'        => 'Your upload has been queued.',
02352 'uploaddisabledtext'          => 'File uploads are disabled.',
02353 'php-uploaddisabledtext'      => 'File uploads are disabled in PHP.
02354 Please check the file_uploads setting.',
02355 'uploadscripted'              => 'This file contains HTML or script code that may be erroneously interpreted by a web browser.',
02356 'uploadscriptednamespace'     => 'This SVG file contains an illegal namespace \'$1\'',
02357 'uploadinvalidxml'            => 'The XML in the uploaded file could not be parsed.',
02358 'uploadvirus'                 => 'The file contains a virus!
02359 Details: $1',
02360 'uploadjava'                  => 'The file is a ZIP file that contains a Java .class file.
02361 Uploading Java files is not allowed because they can cause security restrictions to be bypassed.',
02362 'upload-source'               => 'Source file',
02363 'sourcefilename'              => 'Source filename:',
02364 'sourceurl'                   => 'Source URL:',
02365 'destfilename'                => 'Destination filename:',
02366 'upload-maxfilesize'          => 'Maximum file size: $1',
02367 'upload-description'          => 'File description',
02368 'upload-options'              => 'Upload options',
02369 'watchthisupload'             => 'Watch this file',
02370 'filewasdeleted'              => 'A file of this name has been previously uploaded and subsequently deleted.
02371 You should check the $1 before proceeding to upload it again.',
02372 'filename-bad-prefix'         => "The name of the file you are uploading begins with '''\"\$1\"''', which is a non-descriptive name typically assigned automatically by digital cameras.
02373 Please choose a more descriptive name for your file.",
02374 'filename-prefix-blacklist'   => ' #<!-- leave this line exactly as it is --> <pre>
02375 # Syntax is as follows:
02376 #   * Everything from a "#" character to the end of the line is a comment
02377 #   * Every non-blank line is a prefix for typical filenames assigned automatically by digital cameras
02378 CIMG # Casio
02379 DSC_ # Nikon
02380 DSCF # Fuji
02381 DSCN # Nikon
02382 DUW # some mobile phones
02383 IMG # generic
02384 JD # Jenoptik
02385 MGP # Pentax
02386 PICT # misc.
02387  #</pre> <!-- leave this line exactly as it is -->', # only translate this message to other languages if you have to change it
02388 'upload-success-subj'         => 'Successful upload',
02389 'upload-success-msg'          => 'Your upload from [$2] was successful. It is available here: [[:{{ns:file}}:$1]]',
02390 'upload-failure-subj'         => 'Upload problem',
02391 'upload-failure-msg'          => 'There was a problem with your upload from [$2]:
02392 
02393 $1',
02394 'upload-warning-subj'         => 'Upload warning',
02395 'upload-warning-msg'          => 'There was a problem with your upload from [$2]. You may return to the [[Special:Upload/stash/$1|upload form]] to correct this problem.',
02396 
02397 'upload-proto-error'                => 'Incorrect protocol',
02398 'upload-proto-error-text'           => 'Remote upload requires URLs beginning with <code>http://</code> or <code>ftp://</code>.',
02399 'upload-file-error'                 => 'Internal error',
02400 'upload-file-error-text'            => 'An internal error occurred when attempting to create a temporary file on the server.
02401 Please contact an [[Special:ListUsers/sysop|administrator]].',
02402 'upload-misc-error'                 => 'Unknown upload error',
02403 'upload-misc-error-text'            => 'An unknown error occurred during the upload.
02404 Please verify that the URL is valid and accessible and try again.
02405 If the problem persists, contact an [[Special:ListUsers/sysop|administrator]].',
02406 'upload-too-many-redirects'         => 'The URL contained too many redirects',
02407 'upload-unknown-size'               => 'Unknown size',
02408 'upload-http-error'                 => 'An HTTP error occurred: $1',
02409 'upload-copy-upload-invalid-domain' => 'Copy uploads are not available from this domain.',
02410 
02411 # File backend
02412 'backend-fail-stream'        => 'Could not stream file "$1".',
02413 'backend-fail-backup'        => 'Could not backup file "$1".',
02414 'backend-fail-notexists'     => 'The file $1 does not exist.',
02415 'backend-fail-hashes'        => 'Could not get file hashes for comparison.',
02416 'backend-fail-notsame'       => 'A non-identical file already exists at "$1".',
02417 'backend-fail-invalidpath'   => '"$1" is not a valid storage path.',
02418 'backend-fail-delete'        => 'Could not delete file "$1".',
02419 'backend-fail-describe'      => 'Could not change metadata for file "$1".',
02420 'backend-fail-alreadyexists' => 'The file "$1" already exists.',
02421 'backend-fail-store'         => 'Could not store file "$1" at "$2".',
02422 'backend-fail-copy'          => 'Could not copy file "$1" to "$2".',
02423 'backend-fail-move'          => 'Could not move file "$1" to "$2".',
02424 'backend-fail-opentemp'      => 'Could not open temporary file.',
02425 'backend-fail-writetemp'     => 'Could not write to temporary file.',
02426 'backend-fail-closetemp'     => 'Could not close temporary file.',
02427 'backend-fail-read'          => 'Could not read file "$1".',
02428 'backend-fail-create'        => 'Could not write file "$1".',
02429 'backend-fail-maxsize'       => 'Could not write file "$1" because it is larger than {{PLURAL:$2|one byte|$2 bytes}}.',
02430 'backend-fail-readonly'      => 'The storage backend "$1" is currently read-only. The reason given is: "\'\'$2\'\'"',
02431 'backend-fail-synced'        => 'The file "$1" is in an inconsistent state within the internal storage backends',
02432 'backend-fail-connect'       => 'Could not connect to storage backend "$1".',
02433 'backend-fail-internal'      => 'An unknown error occurred in storage backend "$1".',
02434 'backend-fail-contenttype'   => 'Could not determine the content type of the file to store at "$1".',
02435 'backend-fail-batchsize'     => 'The storage backend was given a batch of $1 file {{PLURAL:$1|operation|operations}}; the limit is $2 {{PLURAL:$2|operation|operations}}.',
02436 'backend-fail-usable'        => 'Could not read or write file "$1" due to insufficient permissions or missing directories/containers.',
02437 
02438 # File journal errors
02439 'filejournal-fail-dbconnect' => 'Could not connect to the journal database for storage backend "$1".',
02440 'filejournal-fail-dbquery'   => 'Could not update the journal database for storage backend "$1".',
02441 
02442 # Lock manager
02443 'lockmanager-notlocked'        => 'Could not unlock "$1"; it is not locked.',
02444 'lockmanager-fail-closelock'   => 'Could not close lock file for "$1".',
02445 'lockmanager-fail-deletelock'  => 'Could not delete lock file for "$1".',
02446 'lockmanager-fail-acquirelock' => 'Could not acquire lock for "$1".',
02447 'lockmanager-fail-openlock'    => 'Could not open lock file for "$1".',
02448 'lockmanager-fail-releaselock' => 'Could not release lock for "$1".',
02449 'lockmanager-fail-db-bucket'   => 'Could not contact enough lock databases in bucket $1.',
02450 'lockmanager-fail-db-release'  => 'Could not release locks on database $1.',
02451 'lockmanager-fail-svr-acquire' => 'Could not acquire locks on server $1.',
02452 'lockmanager-fail-svr-release' => 'Could not release locks on server $1.',
02453 
02454 # ZipDirectoryReader
02455 'zip-file-open-error' => 'An error was encountered when opening the file for ZIP checks.',
02456 'zip-wrong-format'    => 'The specified file was not a ZIP file.',
02457 'zip-bad'             => 'The file is a corrupt or otherwise unreadable ZIP file.
02458 It cannot be properly checked for security.',
02459 'zip-unsupported'     => 'The file is a ZIP file that uses ZIP features not supported by MediaWiki.
02460 It cannot be properly checked for security.',
02461 
02462 # Special:UploadStash
02463 'uploadstash'          => 'Upload stash',
02464 'uploadstash-summary'  => 'This page provides access to files that are uploaded or in the process of uploading, but are not yet published to the wiki. These files are not visible to anyone but the user who uploaded them.',
02465 'uploadstash-clear'    => 'Clear stashed files',
02466 'uploadstash-nofiles'  => 'You have no stashed files.',
02467 'uploadstash-badtoken' => 'Performing of that action was unsuccessful, perhaps because your editing credentials expired. Try again.',
02468 'uploadstash-errclear' => 'Clearing the files was unsuccessful.',
02469 'uploadstash-refresh'  => 'Refresh the list of files',
02470 'invalid-chunk-offset' => 'Invalid chunk offset',
02471 
02472 # img_auth script messages
02473 'img-auth-accessdenied'     => 'Access denied',
02474 'img-auth-nopathinfo'       => 'Missing PATH_INFO.
02475 Your server is not set up to pass this information.
02476 It may be CGI-based and cannot support img_auth.
02477 See https://www.mediawiki.org/wiki/Manual:Image_Authorization.',
02478 'img-auth-notindir'         => 'Requested path is not in the configured upload directory.',
02479 'img-auth-badtitle'         => 'Unable to construct a valid title from "$1".',
02480 'img-auth-nologinnWL'       => 'You are not logged in and "$1" is not in the whitelist.',
02481 'img-auth-nofile'           => 'File "$1" does not exist.',
02482 'img-auth-isdir'            => 'You are trying to access a directory "$1".
02483 Only file access is allowed.',
02484 'img-auth-streaming'        => 'Streaming "$1".',
02485 'img-auth-public'           => 'The function of img_auth.php is to output files from a private wiki.
02486 This wiki is configured as a public wiki.
02487 For optimal security, img_auth.php is disabled.',
02488 'img-auth-noread'           => 'User does not have access to read "$1".',
02489 'img-auth-bad-query-string' => 'The URL has an invalid query string.',
02490 
02491 # HTTP errors
02492 'http-invalid-url'    => 'Invalid URL: $1',
02493 'http-invalid-scheme' => 'URLs with the "$1" scheme are not supported.',
02494 'http-request-error'  => 'HTTP request failed due to unknown error.',
02495 'http-read-error'     => 'HTTP read error.',
02496 'http-timed-out'      => 'HTTP request timed out.',
02497 'http-curl-error'     => 'Error fetching URL: $1',
02498 'http-bad-status'     => 'There was a problem during the HTTP request: $1 $2',
02499 
02500 # Some likely curl errors. More could be added from <http://curl.haxx.se/libcurl/c/libcurl-errors.html>
02501 'upload-curl-error6'       => 'Could not reach URL',
02502 'upload-curl-error6-text'  => 'The URL provided could not be reached.
02503 Please double-check that the URL is correct and the site is up.',
02504 'upload-curl-error28'      => 'Upload timeout',
02505 'upload-curl-error28-text' => 'The site took too long to respond.
02506 Please check the site is up, wait a short while and try again.
02507 You may want to try at a less busy time.',
02508 
02509 'license'            => 'Licensing:',
02510 'license-header'     => 'Licensing',
02511 'nolicense'          => 'None selected',
02512 'licenses'           => '-', # do not translate or duplicate this message to other languages
02513 'license-nopreview'  => '(Preview not available)',
02514 'upload_source_url'  => '(a valid, publicly accessible URL)',
02515 'upload_source_file' => '(a file on your computer)',
02516 
02517 # Special:ListFiles
02518 'listfiles-summary'           => 'This special page shows all uploaded files.',
02519 'listfiles_search_for'        => 'Search for media name:',
02520 'imgfile'                     => 'file',
02521 'listfiles'                   => 'File list',
02522 'listfiles_thumb'             => 'Thumbnail',
02523 'listfiles_date'              => 'Date',
02524 'listfiles_name'              => 'Name',
02525 'listfiles_user'              => 'User',
02526 'listfiles_size'              => 'Size',
02527 'listfiles_description'       => 'Description',
02528 'listfiles_count'             => 'Versions',
02529 'listfiles-show-all'          => 'Include old versions of images',
02530 'listfiles-latestversion'     => 'Current version',
02531 'listfiles-latestversion-yes' => 'Yes',
02532 'listfiles-latestversion-no'  => 'No',
02533 
02534 # File description page
02535 'file-anchor-link'                  => 'File',
02536 'filehist'                          => 'File history',
02537 'filehist-help'                     => 'Click on a date/time to view the file as it appeared at that time.',
02538 'filehist-deleteall'                => 'delete all',
02539 'filehist-deleteone'                => 'delete',
02540 'filehist-revert'                   => 'revert',
02541 'filehist-current'                  => 'current',
02542 'filehist-datetime'                 => 'Date/Time',
02543 'filehist-thumb'                    => 'Thumbnail',
02544 'filehist-thumbtext'                => 'Thumbnail for version as of $1',
02545 'filehist-nothumb'                  => 'No thumbnail',
02546 'filehist-user'                     => 'User',
02547 'filehist-dimensions'               => 'Dimensions',
02548 'filehist-filesize'                 => 'File size',
02549 'filehist-comment'                  => 'Comment',
02550 'filehist-missing'                  => 'File missing',
02551 'imagelinks'                        => 'File usage',
02552 'linkstoimage'                      => 'The following {{PLURAL:$1|page links|$1 pages link}} to this file:',
02553 'linkstoimage-more'                 => 'More than $1 {{PLURAL:$1|page links|pages link}} to this file.
02554 The following list shows the {{PLURAL:$1|first page link|first $1 page links}} to this file only.
02555 A [[Special:WhatLinksHere/$2|full list]] is available.',
02556 'nolinkstoimage'                    => 'There are no pages that link to this file.',
02557 'morelinkstoimage'                  => 'View [[Special:WhatLinksHere/$1|more links]] to this file.',
02558 'linkstoimage-redirect'             => '$1 (file redirect) $2',
02559 'duplicatesoffile'                  => 'The following {{PLURAL:$1|file is a duplicate|$1 files are duplicates}} of this file ([[Special:FileDuplicateSearch/$2|more details]]):',
02560 'sharedupload'                      => 'This file is from $1 and may be used by other projects.',
02561 'sharedupload-desc-there'           => 'This file is from $1 and may be used by other projects.
02562 Please see the [$2 file description page] for further information.',
02563 'sharedupload-desc-here'            => 'This file is from $1 and may be used by other projects.
02564 The description on its [$2 file description page] there is shown below.',
02565 'sharedupload-desc-edit'            => 'This file is from $1 and may be used by other projects.
02566 Maybe you want to edit the description on its [$2 file description page] there.',
02567 'sharedupload-desc-create'          => 'This file is from $1 and may be used by other projects.
02568 Maybe you want to edit the description on its [$2 file description page] there.',
02569 'shareddescriptionfollows'          => '-', # do not translate or duplicate this message to other languages
02570 'filepage-nofile'                   => 'No file by this name exists.',
02571 'filepage-nofile-link'              => 'No file by this name exists, but you can [$1 upload it].',
02572 'uploadnewversion-linktext'         => 'Upload a new version of this file',
02573 'shared-repo-from'                  => 'from $1',
02574 'shared-repo'                       => 'a shared repository',
02575 'shared-repo-name-wikimediacommons' => 'Wikimedia Commons', # only translate this message to other languages if you have to change it
02576 'filepage.css'                      => '/* CSS placed here is included on the file description page, also included on foreign client wikis */', # only translate this message to other languages if you have to change it
02577 'upload-disallowed-here'            => 'You cannot overwrite this file.',
02578 
02579 # File reversion
02580 'filerevert'                => 'Revert $1',
02581 'filerevert-legend'         => 'Revert file',
02582 'filerevert-intro'          => "You are about to revert the file '''[[Media:$1|$1]]''' to the [$4 version as of $3, $2].",
02583 'filerevert-comment'        => 'Reason:',
02584 'filerevert-defaultcomment' => 'Reverted to version as of $2, $1',
02585 'filerevert-submit'         => 'Revert',
02586 'filerevert-success'        => "'''[[Media:$1|$1]]''' has been reverted to the [$4 version as of $3, $2].",
02587 'filerevert-badversion'     => 'There is no previous local version of this file with the provided timestamp.',
02588 
02589 # File deletion
02590 'filedelete'                   => 'Delete $1',
02591 'filedelete-legend'            => 'Delete file',
02592 'filedelete-intro'             => "You are about to delete the file '''[[Media:$1|$1]]''' along with all of its history.",
02593 'filedelete-intro-old'         => "You are deleting the version of '''[[Media:$1|$1]]''' as of [$4 $3, $2].",
02594 'filedelete-comment'           => 'Reason:',
02595 'filedelete-submit'            => 'Delete',
02596 'filedelete-success'           => "'''$1''' has been deleted.",
02597 'filedelete-success-old'       => "The version of '''[[Media:$1|$1]]''' as of $3, $2 has been deleted.",
02598 'filedelete-nofile'            => "'''$1''' does not exist.",
02599 'filedelete-nofile-old'        => "There is no archived version of '''$1''' with the specified attributes.",
02600 'filedelete-otherreason'       => 'Other/additional reason:',
02601 'filedelete-reason-otherlist'  => 'Other reason',
02602 'filedelete-reason-dropdown'   => '*Common delete reasons
02603 ** Copyright violation
02604 ** Duplicated file',
02605 'filedelete-edit-reasonlist'   => 'Edit delete reasons',
02606 'filedelete-maintenance'       => 'Deletion and restoration of files temporarily disabled during maintenance.',
02607 'filedelete-maintenance-title' => 'Cannot delete file',
02608 
02609 # MIME search
02610 'mimesearch'         => 'MIME search',
02611 'mimesearch-summary' => 'This page enables the filtering of files for their MIME type.
02612 Input: contenttype/subtype, e.g. <code>image/jpeg</code>.',
02613 'mimetype'           => 'MIME type:',
02614 'download'           => 'download',
02615 
02616 # Unwatched pages
02617 'unwatchedpages'         => 'Unwatched pages',
02618 'unwatchedpages-summary' => '', # do not translate or duplicate this message to other languages
02619 
02620 # List redirects
02621 'listredirects'         => 'List of redirects',
02622 'listredirects-summary' => '', # do not translate or duplicate this message to other languages
02623 
02624 # Unused templates
02625 'unusedtemplates'         => 'Unused templates',
02626 'unusedtemplates-summary' => '', # do not translate or duplicate this message to other languages
02627 'unusedtemplatestext'     => 'This page lists all pages in the {{ns:template}} namespace that are not included in another page.
02628 Remember to check for other links to the templates before deleting them.',
02629 'unusedtemplateswlh'      => 'other links',
02630 
02631 # Random page
02632 'randompage'         => 'Random page',
02633 'randompage-nopages' => 'There are no pages in the following {{PLURAL:$2|namespace|namespaces}}: $1.',
02634 'randompage-url'     => 'Special:Random', # do not translate or duplicate this message to other languages
02635 
02636 # Random page in category
02637 'randomincategory'                       => 'Random page in category',
02638 'randomincategory-invalidcategory'       => '"$1" is not a valid category name.',
02639 'randomincategory-nopages'               => 'There are no pages in the [[:Category:$1|$1]] category.',
02640 'randomincategory-selectcategory'        => 'Get random page from category: $1 $2.',
02641 'randomincategory-selectcategory-submit' => 'Go',
02642 
02643 # Random redirect
02644 'randomredirect'         => 'Random redirect',
02645 'randomredirect-nopages' => 'There are no redirects in the namespace "$1".',
02646 
02647 # Statistics
02648 'statistics'                   => 'Statistics',
02649 'statistics-summary'           => '', # do not translate or duplicate this message to other languages
02650 'statistics-header-pages'      => 'Page statistics',
02651 'statistics-header-edits'      => 'Edit statistics',
02652 'statistics-header-views'      => 'View statistics',
02653 'statistics-header-users'      => 'User statistics',
02654 'statistics-header-hooks'      => 'Other statistics',
02655 'statistics-articles'          => 'Content pages',
02656 'statistics-pages'             => 'Pages',
02657 'statistics-pages-desc'        => 'All pages in the wiki, including talk pages, redirects, etc.',
02658 'statistics-files'             => 'Uploaded files',
02659 'statistics-edits'             => 'Page edits since {{SITENAME}} was set up',
02660 'statistics-edits-average'     => 'Average edits per page',
02661 'statistics-views-total'       => 'Views total',
02662 'statistics-views-total-desc'  => 'Views to non-existing pages and special pages are not included',
02663 'statistics-views-peredit'     => 'Views per edit',
02664 'statistics-users'             => 'Registered [[Special:ListUsers|users]]',
02665 'statistics-users-active'      => 'Active users',
02666 'statistics-users-active-desc' => 'Users who have performed an action in the last {{PLURAL:$1|day|$1 days}}',
02667 'statistics-mostpopular'       => 'Most viewed pages',
02668 'statistics-footer'            => '', # do not translate or duplicate this message to other languages
02669 
02670 'pageswithprop'                   => 'Pages with a page property',
02671 'pageswithprop-summary'           => '', # do not translate or duplicate this message to other languages
02672 'pageswithprop-legend'            => 'Pages with a page property',
02673 'pageswithprop-text'              => 'This page lists pages that use a particular page property.',
02674 'pageswithprop-prop'              => 'Property name:',
02675 'pageswithprop-submit'            => 'Go',
02676 'pageswithprop-prophidden-long'   => 'long text property value hidden ($1)',
02677 'pageswithprop-prophidden-binary' => 'binary property value hidden ($1)',
02678 
02679 'doubleredirects'                   => 'Double redirects',
02680 'doubleredirects-summary'           => '', # do not translate or duplicate this message to other languages
02681 'doubleredirectstext'               => 'This page lists pages that redirect to other redirect pages.
02682 Each row contains links to the first and second redirect, as well as the target of the second redirect, which is usually the "real" target page to which the first redirect should point.
02683 <del>Crossed out</del> entries have been solved.',
02684 'double-redirect-fixed-move'        => '[[$1]] has been moved.
02685 It now redirects to [[$2]].',
02686 'double-redirect-fixed-maintenance' => 'Fixing double redirect from [[$1]] to [[$2]].',
02687 'double-redirect-fixer'             => 'Redirect fixer',
02688 
02689 'brokenredirects'         => 'Broken redirects',
02690 'brokenredirects-summary' => '', # do not translate or duplicate this message to other languages
02691 'brokenredirectstext'     => 'The following redirects link to non-existent pages:',
02692 'brokenredirects-edit'    => 'edit',
02693 'brokenredirects-delete'  => 'delete',
02694 
02695 'withoutinterwiki'         => 'Pages without language links',
02696 'withoutinterwiki-summary' => 'The following pages do not link to other language versions.',
02697 'withoutinterwiki-legend'  => 'Prefix',
02698 'withoutinterwiki-submit'  => 'Show',
02699 
02700 'fewestrevisions'         => 'Pages with the fewest revisions',
02701 'fewestrevisions-summary' => '', # do not translate or duplicate this message to other languages
02702 
02703 # Miscellaneous special pages
02704 'nbytes'                          => '$1 {{PLURAL:$1|byte|bytes}}',
02705 'ncategories'                     => '$1 {{PLURAL:$1|category|categories}}',
02706 'ninterwikis'                     => '$1 {{PLURAL:$1|interwiki|interwikis}}',
02707 'nlinks'                          => '$1 {{PLURAL:$1|link|links}}',
02708 'nmembers'                        => '$1 {{PLURAL:$1|member|members}}',
02709 'nrevisions'                      => '$1 {{PLURAL:$1|revision|revisions}}',
02710 'nviews'                          => '$1 {{PLURAL:$1|view|views}}',
02711 'nimagelinks'                     => 'Used on $1 {{PLURAL:$1|page|pages}}',
02712 'ntransclusions'                  => 'used on $1 {{PLURAL:$1|page|pages}}',
02713 'specialpage-empty'               => 'There are no results for this report.',
02714 'lonelypages'                     => 'Orphaned pages',
02715 'lonelypages-summary'             => '', # do not translate or duplicate this message to other languages
02716 'lonelypagestext'                 => 'The following pages are not linked from or transcluded into other pages in {{SITENAME}}.',
02717 'uncategorizedpages'              => 'Uncategorized pages',
02718 'uncategorizedpages-summary'      => '', # do not translate or duplicate this message to other languages
02719 'uncategorizedcategories'         => 'Uncategorized categories',
02720 'uncategorizedcategories-summary' => '', # do not translate or duplicate this message to other languages
02721 'uncategorizedimages'             => 'Uncategorized files',
02722 'uncategorizedimages-summary'     => '', # do not translate or duplicate this message to other languages
02723 'uncategorizedtemplates'          => 'Uncategorized templates',
02724 'uncategorizedtemplates-summary'  => '', # do not translate or duplicate this message to other languages
02725 'unusedcategories'                => 'Unused categories',
02726 'unusedcategories-summary'        => '', # do not translate or duplicate this message to other languages
02727 'unusedimages'                    => 'Unused files',
02728 'unusedimages-summary'            => '', # do not translate or duplicate this message to other languages
02729 'popularpages'                    => 'Popular pages',
02730 'popularpages-summary'            => '', # do not translate or duplicate this message to other languages
02731 'wantedcategories'                => 'Wanted categories',
02732 'wantedcategories-summary'        => '', # do not translate or duplicate this message to other languages
02733 'wantedpages'                     => 'Wanted pages',
02734 'wantedpages-summary'             => '', # do not translate or duplicate this message to other languages
02735 'wantedpages-badtitle'            => 'Invalid title in result set: $1',
02736 'wantedfiles'                     => 'Wanted files',
02737 'wantedfiles-summary'             => '', # do not translate or duplicate this message to other languages
02738 'wantedfiletext-cat'              => 'The following files are used but do not exist. Files from foreign repositories may be listed despite existing. Any such false positives will be <del>struck out</del>. Additionally, pages that embed files that do not exist are listed in [[:$1]].',
02739 'wantedfiletext-nocat'            => 'The following files are used but do not exist. Files from foreign repositories may be listed despite existing. Any such false positives will be <del>struck out</del>.',
02740 'wantedtemplates'                 => 'Wanted templates',
02741 'wantedtemplates-summary'         => '', # do not translate or duplicate this message to other languages
02742 'mostlinked'                      => 'Most linked-to pages',
02743 'mostlinked-summary'              => '', # do not translate or duplicate this message to other languages
02744 'mostlinkedcategories'            => 'Most linked-to categories',
02745 'mostlinkedcategories-summary'    => '', # do not translate or duplicate this message to other languages
02746 'mostlinkedtemplates'             => 'Most linked-to templates',
02747 'mostlinkedtemplates-summary'     => '', # do not translate or duplicate this message to other languages
02748 'mostcategories'                  => 'Pages with the most categories',
02749 'mostcategories-summary'          => '', # do not translate or duplicate this message to other languages
02750 'mostimages'                      => 'Most linked-to files',
02751 'mostimages-summary'              => '', # do not translate or duplicate this message to other languages
02752 'mostinterwikis'                  => 'Pages with the most interwikis',
02753 'mostinterwikis-summary'          => '', # do not translate or duplicate this message to other languages
02754 'mostrevisions'                   => 'Pages with the most revisions',
02755 'mostrevisions-summary'           => '', # do not translate or duplicate this message to other languages
02756 'prefixindex'                     => 'All pages with prefix',
02757 'prefixindex-namespace'           => 'All pages with prefix ($1 namespace)',
02758 'prefixindex-summary'             => '', # do not translate or duplicate this message to other languages
02759 'prefixindex-strip'               => 'Strip prefix in list',
02760 'shortpages'                      => 'Short pages',
02761 'shortpages-summary'              => '', # do not translate or duplicate this message to other languages
02762 'longpages'                       => 'Long pages',
02763 'longpages-summary'               => '', # do not translate or duplicate this message to other languages
02764 'deadendpages'                    => 'Dead-end pages',
02765 'deadendpages-summary'            => '', # do not translate or duplicate this message to other languages
02766 'deadendpagestext'                => 'The following pages do not link to other pages in {{SITENAME}}.',
02767 'protectedpages'                  => 'Protected pages',
02768 'protectedpages-indef'            => 'Indefinite protections only',
02769 'protectedpages-summary'          => '', # do not translate or duplicate this message to other languages
02770 'protectedpages-cascade'          => 'Cascading protections only',
02771 'protectedpagestext'              => 'The following pages are protected from moving or editing',
02772 'protectedpagesempty'             => 'No pages are currently protected with these parameters.',
02773 'protectedtitles'                 => 'Protected titles',
02774 'protectedtitles-summary'         => '', # do not translate or duplicate this message to other languages
02775 'protectedtitlestext'             => 'The following titles are protected from creation',
02776 'protectedtitlesempty'            => 'No titles are currently protected with these parameters.',
02777 'listusers'                       => 'User list',
02778 'listusers-summary'               => '', # do not translate or duplicate this message to other languages
02779 'listusers-editsonly'             => 'Show only users with edits',
02780 'listusers-creationsort'          => 'Sort by creation date',
02781 'listusers-desc'                  => 'Sort in descending order',
02782 'usereditcount'                   => '$1 {{PLURAL:$1|edit|edits}}',
02783 'usercreated'                     => '{{GENDER:$3|Created}} on $1 at $2',
02784 'newpages'                        => 'New pages',
02785 'newpages-summary'                => '', # do not translate or duplicate this message to other languages
02786 'newpages-username'               => 'Username:',
02787 'ancientpages'                    => 'Oldest pages',
02788 'ancientpages-summary'            => '', # do not translate or duplicate this message to other languages
02789 'move'                            => 'Move',
02790 'movethispage'                    => 'Move this page',
02791 'unusedimagestext'                => 'The following files exist but are not embedded in any page.
02792 Please note that other web sites may link to a file with a direct URL, and so may still be listed here despite being in active use.',
02793 'unusedcategoriestext'            => 'The following category pages exist, although no other page or category makes use of them.',
02794 'notargettitle'                   => 'No target',
02795 'notargettext'                    => 'You have not specified a target page or user to perform this function on.',
02796 'nopagetitle'                     => 'No such target page',
02797 'nopagetext'                      => 'The target page you have specified does not exist.',
02798 'pager-newer-n'                   => '{{PLURAL:$1|newer 1|newer $1}}',
02799 'pager-older-n'                   => '{{PLURAL:$1|older 1|older $1}}',
02800 'suppress'                        => 'Oversight',
02801 'querypage-disabled'              => 'This special page is disabled for performance reasons.',
02802 
02803 # Book sources
02804 'booksources'               => 'Book sources',
02805 'booksources-summary'       => '', # do not translate or duplicate this message to other languages
02806 'booksources-search-legend' => 'Search for book sources',
02807 'booksources-isbn'          => 'ISBN:', # only translate this message to other languages if you have to change it
02808 'booksources-go'            => 'Go',
02809 'booksources-text'          => 'Below is a list of links to other sites that sell new and used books, and may also have further information about books you are looking for:',
02810 'booksources-invalid-isbn'  => 'The given ISBN does not appear to be valid; check for errors copying from the original source.',
02811 
02812 # Magic words
02813 'rfcurl'    => '//tools.ietf.org/html/rfc$1', # do not translate or duplicate this message to other languages
02814 'pubmedurl' => '//www.ncbi.nlm.nih.gov/pubmed/$1?dopt=Abstract', # do not translate or duplicate this message to other languages
02815 
02816 # Special:Log
02817 'specialloguserlabel'        => 'Performer:',
02818 'speciallogtitlelabel'       => 'Target (title or user):',
02819 'log'                        => 'Logs',
02820 'all-logs-page'              => 'All public logs',
02821 'alllogstext'                => 'Combined display of all available logs of {{SITENAME}}.
02822 You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).',
02823 'logempty'                   => 'No matching items in log.',
02824 'log-title-wildcard'         => 'Search titles starting with this text',
02825 'showhideselectedlogentries' => 'Change visibility of selected log entries',
02826 
02827 # Special:AllPages
02828 'allpages'                => 'All pages',
02829 'allpages-summary'        => '', # do not translate or duplicate this message to other languages
02830 'alphaindexline'          => '$1 to $2',
02831 'nextpage'                => 'Next page ($1)',
02832 'prevpage'                => 'Previous page ($1)',
02833 'allpagesfrom'            => 'Display pages starting at:',
02834 'allpagesto'              => 'Display pages ending at:',
02835 'allarticles'             => 'All pages',
02836 'allinnamespace'          => 'All pages ($1 namespace)',
02837 'allnotinnamespace'       => 'All pages (not in $1 namespace)',
02838 'allpagesprev'            => 'Previous',
02839 'allpagesnext'            => 'Next',
02840 'allpagessubmit'          => 'Go',
02841 'allpagesprefix'          => 'Display pages with prefix:',
02842 'allpagesbadtitle'        => 'The given page title was invalid or had an inter-language or inter-wiki prefix.
02843 It may contain one or more characters that cannot be used in titles.',
02844 'allpages-bad-ns'         => '{{SITENAME}} does not have namespace "$1".',
02845 'allpages-hide-redirects' => 'Hide redirects',
02846 
02847 # SpecialCachedPage
02848 'cachedspecial-viewing-cached-ttl' => 'You are viewing a cached version of this page, which can be up to $1 old.',
02849 'cachedspecial-viewing-cached-ts'  => 'You are viewing a cached version of this page, which might not be completely actual.',
02850 'cachedspecial-refresh-now'        => 'View latest.',
02851 
02852 # Special:Categories
02853 'categories'                    => 'Categories',
02854 'categories-summary'            => '', # do not translate or duplicate this message to other languages
02855 'categoriespagetext'            => 'The following {{PLURAL:$1|category contains|categories contain}} pages or media.
02856 [[Special:UnusedCategories|Unused categories]] are not shown here.
02857 Also see [[Special:WantedCategories|wanted categories]].',
02858 'categoriesfrom'                => 'Display categories starting at:',
02859 'special-categories-sort-count' => 'sort by count',
02860 'special-categories-sort-abc'   => 'sort alphabetically',
02861 
02862 # Special:DeletedContributions
02863 'deletedcontributions'             => 'Deleted user contributions',
02864 'deletedcontributions-summary'     => '', # do not translate or duplicate this message to other languages
02865 'deletedcontributions-title'       => 'Deleted user contributions',
02866 'sp-deletedcontributions-contribs' => 'contributions',
02867 
02868 # Special:LinkSearch
02869 'linksearch'         => 'External links search',
02870 'linksearch-summary' => '', # do not translate or duplicate this message to other languages
02871 'linksearch-pat'     => 'Search pattern:',
02872 'linksearch-ns'      => 'Namespace:',
02873 'linksearch-ok'      => 'Search',
02874 'linksearch-text'    => 'Wildcards such as "*.wikipedia.org" may be used.
02875 Needs at least a top-level domain, for example "*.org".<br />
02876 Supported {{PLURAL:$2|protocol|protocols}}: <code>$1</code> (defaults to http:// if no protocol is specified).',
02877 'linksearch-line'    => '$1 is linked from $2',
02878 'linksearch-error'   => 'Wildcards may appear only at the start of the hostname.',
02879 
02880 # Special:ListUsers
02881 'listusersfrom'      => 'Display users starting at:',
02882 'listusers-submit'   => 'Show',
02883 'listusers-noresult' => 'No user found.',
02884 'listusers-blocked'  => '(blocked)',
02885 
02886 # Special:ActiveUsers
02887 'activeusers'            => 'Active users list',
02888 'activeusers-summary'    => '', # do not translate or duplicate this message to other languages
02889 'activeusers-intro'      => 'This is a list of users who had some kind of activity within the last $1 {{PLURAL:$1|day|days}}.',
02890 'activeusers-count'      => '$1 {{PLURAL:$1|action|actions}} in the last {{PLURAL:$3|day|$3 days}}',
02891 'activeusers-from'       => 'Display users starting at:',
02892 'activeusers-hidebots'   => 'Hide bots',
02893 'activeusers-hidesysops' => 'Hide administrators',
02894 'activeusers-noresult'   => 'No users found.',
02895 
02896 # Special:ListGroupRights
02897 'listgrouprights'                      => 'User group rights',
02898 'listgrouprights-summary'              => 'The following is a list of user groups defined on this wiki, with their associated access rights.
02899 There may be [[{{MediaWiki:Listgrouprights-helppage}}|additional information]] about individual rights.',
02900 'listgrouprights-key'                  => 'Legend:
02901 * <span class="listgrouprights-granted">Granted right</span>
02902 * <span class="listgrouprights-revoked">Revoked right</span>',
02903 'listgrouprights-group'                => 'Group',
02904 'listgrouprights-rights'               => 'Rights',
02905 'listgrouprights-helppage'             => 'Help:Group rights',
02906 'listgrouprights-members'              => '(list of members)',
02907 'listgrouprights-right-display'        => '<span class="listgrouprights-granted">$1 <code>($2)</code></span>', # only translate this message to other languages if you have to change it
02908 'listgrouprights-right-revoked'        => '<span class="listgrouprights-revoked">$1 <code>($2)</code></span>', # only translate this message to other languages if you have to change it
02909 'listgrouprights-addgroup'             => 'Add {{PLURAL:$2|group|groups}}: $1',
02910 'listgrouprights-removegroup'          => 'Remove {{PLURAL:$2|group|groups}}: $1',
02911 'listgrouprights-addgroup-all'         => 'Add all groups',
02912 'listgrouprights-removegroup-all'      => 'Remove all groups',
02913 'listgrouprights-addgroup-self'        => 'Add {{PLURAL:$2|group|groups}} to own account: $1',
02914 'listgrouprights-removegroup-self'     => 'Remove {{PLURAL:$2|group|groups}} from own account: $1',
02915 'listgrouprights-addgroup-self-all'    => 'Add all groups to own account',
02916 'listgrouprights-removegroup-self-all' => 'Remove all groups from own account',
02917 
02918 # Email user
02919 'mailnologin'              => 'No send address',
02920 'mailnologintext'          => 'You must be [[Special:UserLogin|logged in]] and have a valid email address in your [[Special:Preferences|preferences]] to send email to other users.',
02921 'emailuser'                => 'Email this user',
02922 'emailuser-title-target'   => 'Email this {{GENDER:$1|user}}',
02923 'emailuser-title-notarget' => 'Email user',
02924 'emailuser-summary'        => '', # do not translate or duplicate this message to other languages
02925 'emailpage'                => 'Email user',
02926 'emailpagetext'            => 'You can use the form below to send an email message to this {{GENDER:$1|user}}.
02927 The email address you entered in [[Special:Preferences|your user preferences]] will appear as the "From" address of the email, so the recipient will be able to reply directly to you.',
02928 'usermailererror'          => 'Mail object returned error:',
02929 'defemailsubject'          => '{{SITENAME}} email from user "$1"',
02930 'usermaildisabled'         => 'User email disabled',
02931 'usermaildisabledtext'     => 'You cannot send email to other users on this wiki',
02932 'noemailtitle'             => 'No email address',
02933 'noemailtext'              => 'This user has not specified a valid email address.',
02934 'nowikiemailtitle'         => 'No email allowed',
02935 'nowikiemailtext'          => 'This user has chosen not to receive email from other users.',
02936 'emailnotarget'            => 'Non-existent or invalid username for recipient.',
02937 'emailtarget'              => 'Enter username of recipient',
02938 'emailusername'            => 'Username:',
02939 'emailusernamesubmit'      => 'Submit',
02940 'email-legend'             => 'Send an email to another {{SITENAME}} user',
02941 'emailfrom'                => 'From:',
02942 'emailto'                  => 'To:',
02943 'emailsubject'             => 'Subject:',
02944 'emailmessage'             => 'Message:',
02945 'emailsend'                => 'Send',
02946 'emailccme'                => 'Email me a copy of my message.',
02947 'emailccsubject'           => 'Copy of your message to $1: $2',
02948 'emailsent'                => 'Email sent',
02949 'emailsenttext'            => 'Your email message has been sent.',
02950 'emailuserfooter'          => 'This email was sent by $1 to $2 by the "Email user" function at {{SITENAME}}.',
02951 
02952 # User Messenger
02953 'usermessage-summary'  => 'Leaving system message.',
02954 'usermessage-editor'   => 'System messenger',
02955 'usermessage-template' => 'MediaWiki:UserMessage', # only translate this message to other languages if you have to change it
02956 
02957 # Watchlist
02958 'watchlist'            => 'Watchlist',
02959 'watchlist-summary'    => '', # do not translate or duplicate this message to other languages
02960 'mywatchlist'          => 'Watchlist',
02961 'watchlistfor2'        => 'For $1 $2',
02962 'nowatchlist'          => 'You have no items on your watchlist.',
02963 'watchlistanontext'    => 'Please $1 to view or edit items on your watchlist.',
02964 'watchnologin'         => 'Not logged in',
02965 'watchnologintext'     => 'You must be [[Special:UserLogin|logged in]] to modify your watchlist.',
02966 'addwatch'             => 'Add to watchlist',
02967 'addedwatchtext'       => 'The page "[[:$1]]" has been added to your [[Special:Watchlist|watchlist]].
02968 Future changes to this page and its associated talk page will be listed there.',
02969 'removewatch'          => 'Remove from watchlist',
02970 'removedwatchtext'     => 'The page "[[:$1]]" has been removed from [[Special:Watchlist|your watchlist]].',
02971 'watch'                => 'Watch',
02972 'watchthispage'        => 'Watch this page',
02973 'unwatch'              => 'Unwatch',
02974 'unwatchthispage'      => 'Stop watching',
02975 'notanarticle'         => 'Not a content page',
02976 'notvisiblerev'        => 'The last revision by a different user has been deleted',
02977 'watchlist-details'    => '{{PLURAL:$1|$1 page|$1 pages}} on your watchlist, not counting talk pages.',
02978 'wlheader-enotif'      => 'Email notification is enabled.',
02979 'wlheader-showupdated' => "Pages that have been changed since you last visited them are shown in '''bold'''.",
02980 'watchmethod-recent'   => 'checking recent edits for watched pages',
02981 'watchmethod-list'     => 'checking watched pages for recent edits',
02982 'watchlistcontains'    => 'Your watchlist contains $1 {{PLURAL:$1|page|pages}}.',
02983 'iteminvalidname'      => 'Problem with item "$1", invalid name...',
02984 'wlnote'               => "Below {{PLURAL:$1|is the last change|are the last '''$1''' changes}} in the last {{PLURAL:$2|hour|'''$2''' hours}}, as of $3, $4.",
02985 'wlshowlast'           => 'Show last $1 hours $2 days $3',
02986 'watchlist-options'    => 'Watchlist options',
02987 
02988 # Displayed when you click the "watch" button and it is in the process of watching
02989 'watching'       => 'Watching...',
02990 'unwatching'     => 'Unwatching...',
02991 'watcherrortext' => 'An error occurred while changing your watchlist settings for "$1".',
02992 
02993 'enotif_mailer'                => '{{SITENAME}} notification mailer',
02994 'enotif_reset'                 => 'Mark all pages visited',
02995 'enotif_impersonal_salutation' => '{{SITENAME}} user',
02996 'enotif_subject_deleted'       => '{{SITENAME}} page $1 has been {{GENDER:$2|deleted}} by $2',
02997 'enotif_subject_created'       => '{{SITENAME}} page $1 has been {{GENDER:$2|created}} by $2',
02998 'enotif_subject_moved'         => '{{SITENAME}} page $1 has been {{GENDER:$2|moved}} by $2',
02999 'enotif_subject_restored'      => '{{SITENAME}} page $1 has been {{GENDER:$2|restored}} by $2',
03000 'enotif_subject_changed'       => '{{SITENAME}} page $1 has been {{GENDER:$2|changed}} by $2',
03001 'enotif_body_intro_deleted'    => 'The {{SITENAME}} page $1 has been {{GENDER:$2|deleted}} on $PAGEEDITDATE by $2, see $3.',
03002 'enotif_body_intro_created'    => 'The {{SITENAME}} page $1 has been {{GENDER:$2|created}} on $PAGEEDITDATE by $2, see $3 for the current revision.',
03003 'enotif_body_intro_moved'      => 'The {{SITENAME}} page $1 has been {{GENDER:$2|moved}} on $PAGEEDITDATE by $2, see $3 for the current revision.',
03004 'enotif_body_intro_restored'   => 'The {{SITENAME}} page $1 has been {{GENDER:$2|restored}} on $PAGEEDITDATE by $2, see $3 for the current revision.',
03005 'enotif_body_intro_changed'    => 'The {{SITENAME}} page $1 has been {{GENDER:$2|changed}} on $PAGEEDITDATE by $2, see $3 for the current revision.',
03006 'enotif_lastvisited'           => 'See $1 for all changes since your last visit.',
03007 'enotif_lastdiff'              => 'See $1 to view this change.',
03008 'enotif_anon_editor'           => 'anonymous user $1',
03009 'enotif_body'                  => 'Dear $WATCHINGUSERNAME,
03010 
03011 $PAGEINTRO $NEWPAGE
03012 
03013 Editor\'s summary: $PAGESUMMARY $PAGEMINOREDIT
03014 
03015 Contact the editor:
03016 mail: $PAGEEDITOR_EMAIL
03017 wiki: $PAGEEDITOR_WIKI
03018 
03019 There will be no other notifications in case of further activity unless you visit this page while logged in. You could also reset the notification flags for all your watched pages on your watchlist.
03020 
03021 Your friendly {{SITENAME}} notification system
03022 
03023 --
03024 To change your email notification settings, visit
03025 {{canonicalurl:{{#special:Preferences}}}}
03026 
03027 To change your watchlist settings, visit
03028 {{canonicalurl:{{#special:EditWatchlist}}}}
03029 
03030 To delete the page from your watchlist, visit
03031 $UNWATCHURL
03032 
03033 Feedback and further assistance:
03034 $HELPPAGE',
03035 'created'                      => 'created', # only translate this message to other languages if you have to change it
03036 'changed'                      => 'changed', # only translate this message to other languages if you have to change it
03037 
03038 # Delete
03039 'deletepage'             => 'Delete page',
03040 'confirm'                => 'Confirm',
03041 'excontent'              => 'content was: "$1"',
03042 'excontentauthor'        => 'content was: "$1" (and the only contributor was "[[Special:Contributions/$2|$2]]")',
03043 'exbeforeblank'          => 'content before blanking was: "$1"',
03044 'exblank'                => 'page was empty',
03045 'delete-confirm'         => 'Delete "$1"',
03046 'delete-legend'          => 'Delete',
03047 'historywarning'         => "'''Warning:''' The page you are about to delete has a history with approximately $1 {{PLURAL:$1|revision|revisions}}:",
03048 'confirmdeletetext'      => 'You are about to delete a page along with all of its history.
03049 Please confirm that you intend to do this, that you understand the consequences, and that you are doing this in accordance with [[{{MediaWiki:Policy-url}}|the policy]].',
03050 'actioncomplete'         => 'Action complete',
03051 'actionfailed'           => 'Action failed',
03052 'deletedtext'            => '"$1" has been deleted.
03053 See $2 for a record of recent deletions.',
03054 'dellogpage'             => 'Deletion log',
03055 'dellogpagetext'         => 'Below is a list of the most recent deletions.',
03056 'deletionlog'            => 'deletion log',
03057 'reverted'               => 'Reverted to earlier revision',
03058 'deletecomment'          => 'Reason:',
03059 'deleteotherreason'      => 'Other/additional reason:',
03060 'deletereasonotherlist'  => 'Other reason',
03061 'deletereason-dropdown'  => '* Common delete reasons
03062 ** Spam
03063 ** Vandalism
03064 ** Copyright violation
03065 ** Author request
03066 ** Broken redirect',
03067 'delete-edit-reasonlist' => 'Edit deletion reasons',
03068 'delete-toobig'          => 'This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.
03069 Deletion of such pages has been restricted to prevent accidental disruption of {{SITENAME}}.',
03070 'delete-warning-toobig'  => 'This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.
03071 Deleting it may disrupt database operations of {{SITENAME}};
03072 proceed with caution.',
03073 
03074 # Rollback
03075 'rollback'                   => 'Roll back edits',
03076 'rollback_short'             => 'Rollback',
03077 'rollbacklink'               => 'rollback',
03078 'rollbacklinkcount'          => 'rollback $1 {{PLURAL:$1|edit|edits}}',
03079 'rollbacklinkcount-morethan' => 'rollback more than $1 {{PLURAL:$1|edit|edits}}',
03080 'rollbackfailed'             => 'Rollback failed',
03081 'cantrollback'               => 'Cannot revert edit;
03082 last contributor is only author of this page.',
03083 'alreadyrolled'              => 'Cannot rollback last edit of [[:$1]] by [[User:$2|$2]] ([[User talk:$2|talk]]{{int:pipe-separator}}[[Special:Contributions/$2|{{int:contribslink}}]]);
03084 someone else has edited or rolled back the page already.
03085 
03086 The last edit to the page was by [[User:$3|$3]] ([[User talk:$3|talk]]{{int:pipe-separator}}[[Special:Contributions/$3|{{int:contribslink}}]]).',
03087 'editcomment'                => "The edit summary was: \"''\$1''\".",
03088 'revertpage'                 => 'Reverted edits by [[Special:Contributions/$2|$2]] ([[User talk:$2|talk]]) to last revision by [[User:$1|$1]]',
03089 'revertpage-nouser'          => 'Reverted edits by a hidden user to last revision by {{GENDER:$1|[[User:$1|$1]]}}',
03090 'rollback-success'           => 'Reverted edits by $1;
03091 changed back to last revision by $2.',
03092 
03093 # Edit tokens
03094 'sessionfailure-title' => 'Session failure',
03095 'sessionfailure'       => 'There seems to be a problem with your login session;
03096 this action has been canceled as a precaution against session hijacking.
03097 Go back to the previous page, reload that page and then try again.',
03098 
03099 # Protect
03100 'protectlogpage'                   => 'Protection log',
03101 'protectlogtext'                   => 'Below is a list of changes to page protections.
03102 See the [[Special:ProtectedPages|protected pages list]] for the list of currently operational page protections.',
03103 'protectedarticle'                 => 'protected "[[$1]]"',
03104 'modifiedarticleprotection'        => 'changed protection level for "[[$1]]"',
03105 'unprotectedarticle'               => 'removed protection from "[[$1]]"',
03106 'movedarticleprotection'           => 'moved protection settings from "[[$2]]" to "[[$1]]"',
03107 'protect-title'                    => 'Change protection level for "$1"',
03108 'protect-title-notallowed'         => 'View protection level of "$1"',
03109 'prot_1movedto2'                   => '[[$1]] moved to [[$2]]',
03110 'protect-badnamespace-title'       => 'Non-protectable namespace',
03111 'protect-badnamespace-text'        => 'Pages in this namespace cannot be protected.',
03112 'protect-norestrictiontypes-text'  => 'This page cannot be protected as there are no restriction types available.',
03113 'protect-norestrictiontypes-title' => 'Non-protectable page',
03114 'protect-legend'                   => 'Confirm protection',
03115 'protectcomment'                   => 'Reason:',
03116 'protectexpiry'                    => 'Expires:',
03117 'protect_expiry_invalid'           => 'Expiry time is invalid.',
03118 'protect_expiry_old'               => 'Expiry time is in the past.',
03119 'protect-unchain-permissions'      => 'Unlock further protect options',
03120 'protect-text'                     => "Here you may view and change the protection level for the page '''$1'''.",
03121 'protect-locked-blocked'           => "You cannot change protection levels while blocked.
03122 Here are the current settings for the page '''$1''':",
03123 'protect-locked-dblock'            => "Protection levels cannot be changed due to an active database lock.
03124 Here are the current settings for the page '''$1''':",
03125 'protect-locked-access'            => "Your account does not have permission to change page protection levels.
03126 Here are the current settings for the page '''$1''':",
03127 'protect-cascadeon'                => "This page is currently protected because it is included in the following {{PLURAL:$1|page, which has|pages, which have}} cascading protection turned on.
03128 You can change this page's protection level, but it will not affect the cascading protection.",
03129 'protect-default'                  => 'Allow all users',
03130 'protect-fallback'                 => 'Allow only users with "$1" permission',
03131 'protect-level-autoconfirmed'      => 'Allow only autoconfirmed users',
03132 'protect-level-sysop'              => 'Allow only administrators',
03133 'protect-summary-desc'             => '[$1=$2] ($3)', # only translate this message to other languages if you have to change it
03134 'protect-summary-cascade'          => 'cascading',
03135 'protect-expiring'                 => 'expires $1 (UTC)',
03136 'protect-expiring-local'           => 'expires $1',
03137 'protect-expiry-indefinite'        => 'indefinite',
03138 'protect-cascade'                  => 'Protect pages included in this page (cascading protection)',
03139 'protect-cantedit'                 => 'You cannot change the protection levels of this page because you do not have permission to edit it.',
03140 'protect-othertime'                => 'Other time:',
03141 'protect-othertime-op'             => 'other time',
03142 'protect-existing-expiry'          => 'Existing expiry time: $3, $2',
03143 'protect-otherreason'              => 'Other/additional reason:',
03144 'protect-otherreason-op'           => 'Other reason',
03145 'protect-dropdown'                 => '*Common protection reasons
03146 ** Excessive vandalism
03147 ** Excessive spamming
03148 ** Counter-productive edit warring
03149 ** High traffic page',
03150 'protect-edit-reasonlist'          => 'Edit protection reasons',
03151 'protect-expiry-options'           => '1 hour:1 hour,1 day:1 day,1 week:1 week,2 weeks:2 weeks,1 month:1 month,3 months:3 months,6 months:6 months,1 year:1 year,infinite:infinite',
03152 'restriction-type'                 => 'Permission:',
03153 'restriction-level'                => 'Restriction level:',
03154 'minimum-size'                     => 'Min size',
03155 'maximum-size'                     => 'Max size:',
03156 'pagesize'                         => '(bytes)',
03157 
03158 # Restrictions (nouns)
03159 'restriction-edit'   => 'Edit',
03160 'restriction-move'   => 'Move',
03161 'restriction-create' => 'Create',
03162 'restriction-upload' => 'Upload',
03163 
03164 # Restriction levels
03165 'restriction-level-sysop'         => 'fully protected',
03166 'restriction-level-autoconfirmed' => 'semi protected',
03167 'restriction-level-all'           => 'any level',
03168 
03169 # Undelete
03170 'undelete'                     => 'View deleted pages',
03171 'undelete-summary'             => '', # do not translate or duplicate this message to other languages
03172 'undeletepage'                 => 'View and restore deleted pages',
03173 'undeletepagetitle'            => "'''The following consists of deleted revisions of [[:$1|$1]]'''.",
03174 'viewdeletedpage'              => 'View deleted pages',
03175 'undeletepagetext'             => 'The following {{PLURAL:$1|page has been deleted but is|$1 pages have been deleted but are}} still in the archive and can be restored.
03176 The archive may be periodically cleaned out.',
03177 'undelete-fieldset-title'      => 'Restore revisions',
03178 'undeleteextrahelp'            => "To restore the page's entire history, leave all checkboxes deselected and click '''''{{int:undeletebtn}}'''''.
03179 To perform a selective restoration, check the boxes corresponding to the revisions to be restored, and click '''''{{int:undeletebtn}}'''''.",
03180 'undeleterevisions'            => '$1 {{PLURAL:$1|revision|revisions}} archived',
03181 'undeletehistory'              => 'If you restore the page, all revisions will be restored to the history.
03182 If a new page with the same name has been created since the deletion, the restored revisions will appear in the prior history.',
03183 'undeleterevdel'               => 'Undeletion will not be performed if it will result in the top page or file revision being partially deleted.
03184 In such cases, you must uncheck or unhide the newest deleted revision.',
03185 'undeletehistorynoadmin'       => 'This page has been deleted.
03186 The reason for deletion is shown in the summary below, along with details of the users who had edited this page before deletion.
03187 The actual text of these deleted revisions is only available to administrators.',
03188 'undelete-revision'            => 'Deleted revision of $1 (as of $4, at $5) by $3:',
03189 'undeleterevision-missing'     => 'Invalid or missing revision.
03190 You may have a bad link, or the revision may have been restored or removed from the archive.',
03191 'undelete-nodiff'              => 'No previous revision found.',
03192 'undeletebtn'                  => 'Restore',
03193 'undeletelink'                 => 'view/restore',
03194 'undeleteviewlink'             => 'view',
03195 'undeletereset'                => 'Reset',
03196 'undeleteinvert'               => 'Invert selection',
03197 'undeletecomment'              => 'Reason:',
03198 'undeletedrevisions'           => '{{PLURAL:$1|1 revision|$1 revisions}} restored',
03199 'undeletedrevisions-files'     => '{{PLURAL:$1|1 revision|$1 revisions}} and {{PLURAL:$2|1 file|$2 files}} restored',
03200 'undeletedfiles'               => '{{PLURAL:$1|1 file|$1 files}} restored',
03201 'cannotundelete'               => 'Undelete failed:
03202 $1',
03203 'undeletedpage'                => "'''$1 has been restored'''
03204 
03205 Consult the [[Special:Log/delete|deletion log]] for a record of recent deletions and restorations.",
03206 'undelete-header'              => 'See [[Special:Log/delete|the deletion log]] for recently deleted pages.',
03207 'undelete-search-title'        => 'Search deleted pages',
03208 'undelete-search-box'          => 'Search deleted pages',
03209 'undelete-search-prefix'       => 'Show pages starting with:',
03210 'undelete-search-submit'       => 'Search',
03211 'undelete-no-results'          => 'No matching pages found in the deletion archive.',
03212 'undelete-filename-mismatch'   => 'Cannot undelete file revision with timestamp $1: Filename mismatch.',
03213 'undelete-bad-store-key'       => 'Cannot undelete file revision with timestamp $1: File was missing before deletion.',
03214 'undelete-cleanup-error'       => 'Error deleting unused archive file "$1".',
03215 'undelete-missing-filearchive' => 'Unable to restore file archive ID $1 because it is not in the database.
03216 It may have already been undeleted.',
03217 'undelete-error'               => 'Error undeleting page',
03218 'undelete-error-short'         => 'Error undeleting file: $1',
03219 'undelete-error-long'          => 'Errors were encountered while undeleting the file:
03220 
03221 $1',
03222 'undelete-show-file-confirm'   => 'Are you sure you want to view the deleted revision of the file "<nowiki>$1</nowiki>" from $2 at $3?',
03223 'undelete-show-file-submit'    => 'Yes',
03224 'undelete-revisionrow'         => '$1 $2 ($3) $4 . . $5 $6 $7', # only translate this message to other languages if you have to change it
03225 
03226 # Namespace form on various pages
03227 'namespace'                     => 'Namespace:',
03228 'invert'                        => 'Invert selection',
03229 'tooltip-invert'                => 'Check this box to hide changes to pages within the selected namespace (and the associated namespace if checked)',
03230 'namespace_association'         => 'Associated namespace',
03231 'tooltip-namespace_association' => 'Check this box to also include the talk or subject namespace associated with the selected namespace',
03232 'blanknamespace'                => '(Main)',
03233 
03234 # Contributions
03235 'contributions'         => '{{GENDER:$1|User}} contributions',
03236 'contributions-summary' => '', # do not translate or duplicate this message to other languages
03237 'contributions-title'   => 'User contributions for $1',
03238 'mycontris'             => 'Contributions',
03239 'contribsub2'           => 'For {{GENDER:$3|$1}} ($2)',
03240 'nocontribs'            => 'No changes were found matching these criteria.',
03241 'uctop'                 => '(current)',
03242 'month'                 => 'From month (and earlier):',
03243 'year'                  => 'From year (and earlier):',
03244 
03245 'sp-contributions-newbies'             => 'Show contributions of new accounts only',
03246 'sp-contributions-newbies-sub'         => 'For new accounts',
03247 'sp-contributions-newbies-title'       => 'User contributions for new accounts',
03248 'sp-contributions-blocklog'            => 'block log',
03249 'sp-contributions-deleted'             => 'deleted user contributions',
03250 'sp-contributions-uploads'             => 'uploads',
03251 'sp-contributions-logs'                => 'logs',
03252 'sp-contributions-talk'                => 'talk',
03253 'sp-contributions-userrights'          => 'user rights management',
03254 'sp-contributions-blocked-notice'      => 'This user is currently blocked.
03255 The latest block log entry is provided below for reference:',
03256 'sp-contributions-blocked-notice-anon' => 'This IP address is currently blocked.
03257 The latest block log entry is provided below for reference:',
03258 'sp-contributions-search'              => 'Search for contributions',
03259 'sp-contributions-username'            => 'IP address or username:',
03260 'sp-contributions-toponly'             => 'Only show edits that are latest revisions',
03261 'sp-contributions-submit'              => 'Search',
03262 'sp-contributions-explain'             => '', # only translate this message to other languages if you have to change it
03263 'sp-contributions-footer'              => '-', # do not translate or duplicate this message to other languages
03264 'sp-contributions-footer-anon'         => '-', # do not translate or duplicate this message to other languages
03265 'sp-contributions-footer-newbies'      => '-', # do not translate or duplicate this message to other languages
03266 
03267 # What links here
03268 'whatlinkshere'            => 'What links here',
03269 'whatlinkshere-title'      => 'Pages that link to "$1"',
03270 'whatlinkshere-summary'    => '', # do not translate or duplicate this message to other languages
03271 'whatlinkshere-page'       => 'Page:',
03272 'linkshere'                => "The following pages link to '''[[:$1]]''':",
03273 'nolinkshere'              => "No pages link to '''[[:$1]]'''.",
03274 'nolinkshere-ns'           => "No pages link to '''[[:$1]]''' in the chosen namespace.",
03275 'isredirect'               => 'redirect page',
03276 'istemplate'               => 'transclusion',
03277 'isimage'                  => 'file link',
03278 'whatlinkshere-prev'       => '{{PLURAL:$1|previous|previous $1}}',
03279 'whatlinkshere-next'       => '{{PLURAL:$1|next|next $1}}',
03280 'whatlinkshere-links'      => '← links',
03281 'whatlinkshere-hideredirs' => '$1 redirects',
03282 'whatlinkshere-hidetrans'  => '$1 transclusions',
03283 'whatlinkshere-hidelinks'  => '$1 links',
03284 'whatlinkshere-hideimages' => '$1 file links',
03285 'whatlinkshere-filters'    => 'Filters',
03286 
03287 # Block/unblock
03288 'autoblockid'                     => 'Autoblock #$1',
03289 'block'                           => 'Block user',
03290 'unblock'                         => 'Unblock user',
03291 'unblock-summary'                 => '', # do not translate or duplicate this message to other languages
03292 'blockip'                         => 'Block user',
03293 'blockip-title'                   => 'Block user',
03294 'blockip-legend'                  => 'Block user',
03295 'blockiptext'                     => 'Use the form below to block write access from a specific IP address or username.
03296 This should be done only to prevent vandalism, and in accordance with [[{{MediaWiki:Policy-url}}|policy]].
03297 Fill in a specific reason below (for example, citing particular pages that were vandalized).',
03298 'ipadressorusername'              => 'IP address or username:',
03299 'ipbexpiry'                       => 'Expiry:',
03300 'ipbreason'                       => 'Reason:',
03301 'ipbreasonotherlist'              => 'Other reason',
03302 'ipbreason-dropdown'              => '*Common block reasons
03303 ** Inserting false information
03304 ** Removing content from pages
03305 ** Spamming links to external sites
03306 ** Inserting nonsense/gibberish into pages
03307 ** Intimidating behavior/harassment
03308 ** Abusing multiple accounts
03309 ** Unacceptable username',
03310 'ipb-hardblock'                   => 'Prevent logged-in users from editing from this IP address',
03311 'ipbcreateaccount'                => 'Prevent account creation',
03312 'ipbemailban'                     => 'Prevent user from sending email',
03313 'ipbenableautoblock'              => 'Automatically block the last IP address used by this user, and any subsequent IP addresses they try to edit from',
03314 'ipbsubmit'                       => 'Block this user',
03315 'ipbother'                        => 'Other time:',
03316 'ipboptions'                      => '2 hours:2 hours,1 day:1 day,3 days:3 days,1 week:1 week,2 weeks:2 weeks,1 month:1 month,3 months:3 months,6 months:6 months,1 year:1 year,indefinite:infinite',
03317 'ipbotheroption'                  => 'other',
03318 'ipbotherreason'                  => 'Other/additional reason:',
03319 'ipbhidename'                     => 'Hide username from edits and lists',
03320 'ipbwatchuser'                    => "Watch this user's user and talk pages",
03321 'ipb-disableusertalk'             => 'Prevent this user from editing their own talk page while blocked',
03322 'ipb-change-block'                => 'Re-block the user with these settings',
03323 'ipb-confirm'                     => 'Confirm block',
03324 'badipaddress'                    => 'Invalid IP address',
03325 'blockipsuccesssub'               => 'Block succeeded',
03326 'blockipsuccesstext'              => '[[Special:Contributions/$1|$1]] has been blocked.<br />
03327 See the [[Special:BlockList|block list]] to review blocks.',
03328 'ipb-blockingself'                => 'You are about to block yourself! Are you sure you want to do that?',
03329 'ipb-confirmhideuser'             => 'You are about to block a user with "hide user" enabled. This will suppress the user\'s name in all lists and log entries. Are you sure you want to do that?',
03330 'ipb-edit-dropdown'               => 'Edit block reasons',
03331 'ipb-unblock-addr'                => 'Unblock $1',
03332 'ipb-unblock'                     => 'Unblock a username or IP address',
03333 'ipb-blocklist'                   => 'View existing blocks',
03334 'ipb-blocklist-contribs'          => 'Contributions for $1',
03335 'unblockip'                       => 'Unblock user',
03336 'unblockiptext'                   => 'Use the form below to restore write access to a previously blocked IP address or username.',
03337 'ipusubmit'                       => 'Remove this block',
03338 'unblocked'                       => '[[User:$1|$1]] has been unblocked.',
03339 'unblocked-range'                 => '$1 has been unblocked.',
03340 'unblocked-id'                    => 'Block $1 has been removed.',
03341 'blocklist'                       => 'Blocked users',
03342 'ipblocklist'                     => 'Blocked users',
03343 'ipblocklist-legend'              => 'Find a blocked user',
03344 'blocklist-userblocks'            => 'Hide account blocks',
03345 'blocklist-tempblocks'            => 'Hide temporary blocks',
03346 'blocklist-addressblocks'         => 'Hide single IP blocks',
03347 'blocklist-rangeblocks'           => 'Hide range blocks',
03348 'blocklist-timestamp'             => 'Timestamp',
03349 'blocklist-target'                => 'Target',
03350 'blocklist-expiry'                => 'Expires',
03351 'blocklist-by'                    => 'Blocking admin',
03352 'blocklist-params'                => 'Block parameters',
03353 'blocklist-reason'                => 'Reason',
03354 'blocklist-summary'               => '', # do not translate or duplicate this message to other languages
03355 'ipblocklist-submit'              => 'Search',
03356 'ipblocklist-localblock'          => 'Local block',
03357 'ipblocklist-otherblocks'         => 'Other {{PLURAL:$1|block|blocks}}',
03358 'infiniteblock'                   => 'infinite',
03359 'expiringblock'                   => 'expires on $1 at $2',
03360 'anononlyblock'                   => 'anon. only',
03361 'noautoblockblock'                => 'autoblock disabled',
03362 'createaccountblock'              => 'account creation disabled',
03363 'emailblock'                      => 'email disabled',
03364 'blocklist-nousertalk'            => 'cannot edit own talk page',
03365 'ipblocklist-empty'               => 'The block list is empty.',
03366 'ipblocklist-no-results'          => 'The requested IP address or username is not blocked.',
03367 'blocklink'                       => 'block',
03368 'unblocklink'                     => 'unblock',
03369 'change-blocklink'                => 'change block',
03370 'contribslink'                    => 'contribs',
03371 'emaillink'                       => 'send email',
03372 'autoblocker'                     => 'Autoblocked because your IP address has been recently used by "[[User:$1|$1]]".
03373 The reason given for $1\'s block is "\'\'$2\'\'"',
03374 'blocklogpage'                    => 'Block log',
03375 'blocklog-showlog'                => 'This user has been blocked previously.
03376 The block log is provided below for reference:',
03377 'blocklog-showsuppresslog'        => 'This user has been blocked and hidden previously.
03378 The suppress log is provided below for reference:',
03379 'blocklogentry'                   => 'blocked [[$1]] with an expiry time of $2 $3',
03380 'reblock-logentry'                => 'changed block settings for [[$1]] with an expiry time of $2 $3',
03381 'blocklogtext'                    => 'This is a log of user blocking and unblocking actions.
03382 Automatically blocked IP addresses are not listed.
03383 See the [[Special:BlockList|block list]] for the list of currently operational bans and blocks.',
03384 'unblocklogentry'                 => 'unblocked $1',
03385 'block-log-flags-anononly'        => 'anonymous users only',
03386 'block-log-flags-nocreate'        => 'account creation disabled',
03387 'block-log-flags-noautoblock'     => 'autoblock disabled',
03388 'block-log-flags-noemail'         => 'email disabled',
03389 'block-log-flags-nousertalk'      => 'cannot edit own talk page',
03390 'block-log-flags-angry-autoblock' => 'enhanced autoblock enabled',
03391 'block-log-flags-hiddenname'      => 'username hidden',
03392 'range_block_disabled'            => 'The administrator ability to create range blocks is disabled.',
03393 'ipb_expiry_invalid'              => 'Expiry time invalid.',
03394 'ipb_expiry_temp'                 => 'Hidden username blocks must be permanent.',
03395 'ipb_hide_invalid'                => 'Unable to suppress this account; it may have too many edits.',
03396 'ipb_already_blocked'             => '"$1" is already blocked',
03397 'ipb-needreblock'                 => '$1 is already blocked. Do you want to change the settings?',
03398 'ipb-otherblocks-header'          => 'Other {{PLURAL:$1|block|blocks}}',
03399 'unblock-hideuser'                => 'You cannot unblock this user, as their username has been hidden.',
03400 'ipb_cant_unblock'                => 'Error: Block ID $1 not found. It may have been unblocked already.',
03401 'ipb_blocked_as_range'            => 'Error: The IP address $1 is not blocked directly and cannot be unblocked.
03402 It is, however, blocked as part of the range $2, which can be unblocked.',
03403 'ip_range_invalid'                => 'Invalid IP range.',
03404 'ip_range_toolarge'               => 'Range blocks larger than /$1 are not allowed.',
03405 'proxyblocker'                    => 'Proxy blocker',
03406 'proxyblockreason'                => 'Your IP address has been blocked because it is an open proxy.
03407 Please contact your Internet service provider or technical support of your organization and inform them of this serious security problem.',
03408 'sorbs'                           => 'DNSBL', # only translate this message to other languages if you have to change it
03409 'sorbsreason'                     => 'Your IP address is listed as an open proxy in the DNSBL used by {{SITENAME}}.',
03410 'sorbs_create_account_reason'     => 'Your IP address is listed as an open proxy in the DNSBL used by {{SITENAME}}.
03411 You cannot create an account',
03412 'xffblockreason'                  => 'An IP address present in the X-Forwarded-For header, either yours or that of a proxy server you are using, has been blocked. The original block reason was: $1',
03413 'cant-block-while-blocked'        => 'You cannot block other users while you are blocked.',
03414 'cant-see-hidden-user'            => "The user you are trying to block has already been blocked and hidden.
03415 Since you do not have the hideuser right, you cannot see or edit the user's block.",
03416 'ipbblocked'                      => 'You cannot block or unblock other users because you are yourself blocked',
03417 'ipbnounblockself'                => 'You are not allowed to unblock yourself',
03418 'ipb-default-expiry'              => '', # do not translate or duplicate this message to other languages
03419 
03420 # Developer tools
03421 'lockdb'              => 'Lock database',
03422 'unlockdb'            => 'Unlock database',
03423 'lockdbtext'          => 'Locking the database will suspend the ability of all users to edit pages, change their preferences, edit their watchlists, and other things requiring changes in the database.
03424 Please confirm that this is what you intend to do, and that you will unlock the database when your maintenance is done.',
03425 'unlockdbtext'        => 'Unlocking the database will restore the ability of all users to edit pages, change their preferences, edit their watchlists, and other things requiring changes in the database.
03426 Please confirm that this is what you intend to do.',
03427 'lockconfirm'         => 'Yes, I really want to lock the database.',
03428 'unlockconfirm'       => 'Yes, I really want to unlock the database.',
03429 'lockbtn'             => 'Lock database',
03430 'unlockbtn'           => 'Unlock database',
03431 'locknoconfirm'       => 'You did not check the confirmation box.',
03432 'lockdbsuccesssub'    => 'Database lock succeeded',
03433 'unlockdbsuccesssub'  => 'Database lock removed',
03434 'lockdbsuccesstext'   => 'The database has been locked.<br />
03435 Remember to [[Special:UnlockDB|remove the lock]] after your maintenance is complete.',
03436 'unlockdbsuccesstext' => 'The database has been unlocked.',
03437 'lockfilenotwritable' => 'The database lock file is not writable.
03438 To lock or unlock the database, this needs to be writable by the web server.',
03439 'databasenotlocked'   => 'The database is not locked.',
03440 'lockedbyandtime'     => '(by {{GENDER:$1|$1}} on $2 at $3)',
03441 
03442 # Move page
03443 'move-page'                    => 'Move $1',
03444 'movepage-summary'             => '', # do not translate or duplicate this message to other languages
03445 'move-page-legend'             => 'Move page',
03446 'movepagetext'                 => "Using the form below will rename a page, moving all of its history to the new name.
03447 The old title will become a redirect page to the new title.
03448 You can update redirects that point to the original title automatically.
03449 If you choose not to, be sure to check for [[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken redirects]].
03450 You are responsible for making sure that links continue to point where they are supposed to go.
03451 
03452 Note that the page will '''not''' be moved if there is already a page at the new title, unless the latter is a redirect and has no past edit history.
03453 This means that you can rename a page back to where it was renamed from if you make a mistake, and you cannot overwrite an existing page.
03454 
03455 '''Warning!'''
03456 This can be a drastic and unexpected change for a popular page;
03457 please be sure you understand the consequences of this before proceeding.",
03458 'movepagetext-noredirectfixer' => "Using the form below will rename a page, moving all of its history to the new name.
03459 The old title will become a redirect page to the new title.
03460 Be sure to check for [[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken redirects]].
03461 You are responsible for making sure that links continue to point where they are supposed to go.
03462 
03463 Note that the page will '''not''' be moved if there is already a page at the new title, unless it is a redirect and has no past edit history.
03464 This means that you can rename a page back to where it was renamed from if you make a mistake, and you cannot overwrite an existing page.
03465 
03466 '''Warning!'''
03467 This can be a drastic and unexpected change for a popular page;
03468 please be sure you understand the consequences of this before proceeding.",
03469 'movepagetalktext'             => "The associated talk page will be automatically moved along with it '''unless:'''
03470 *A non-empty talk page already exists under the new name, or
03471 *You uncheck the box below.
03472 
03473 In those cases, you will have to move or merge the page manually if desired.",
03474 'movearticle'                  => 'Move page:',
03475 'moveuserpage-warning'         => "'''Warning:''' You are about to move a user page. Please note that only the page will be moved and the user will ''not'' be renamed.",
03476 'movenologin'                  => 'Not logged in',
03477 'movenologintext'              => 'You must be a registered user and [[Special:UserLogin|logged in]] to move a page.',
03478 'movenotallowed'               => 'You do not have permission to move pages.',
03479 'movenotallowedfile'           => 'You do not have permission to move files.',
03480 'cant-move-user-page'          => 'You do not have permission to move user pages (apart from subpages).',
03481 'cant-move-to-user-page'       => 'You do not have permission to move a page to a user page (except to a user subpage).',
03482 'newtitle'                     => 'To new title:',
03483 'move-watch'                   => 'Watch source page and target page',
03484 'movepagebtn'                  => 'Move page',
03485 'pagemovedsub'                 => 'Move succeeded',
03486 'movepage-moved'               => '\'\'\'"$1" has been moved to "$2"\'\'\'',
03487 'movepage-moved-redirect'      => 'A redirect has been created.',
03488 'movepage-moved-noredirect'    => 'The creation of a redirect has been suppressed.',
03489 'articleexists'                => 'A page of that name already exists, or the name you have chosen is not valid.
03490 Please choose another name.',
03491 'cantmove-titleprotected'      => 'You cannot move a page to this location because the new title has been protected from creation',
03492 'talkexists'                   => "'''The page itself was moved successfully, but the talk page could not be moved because one already exists at the new title.
03493 Please merge them manually.'''",
03494 'movedto'                      => 'moved to',
03495 'movetalk'                     => 'Move associated talk page',
03496 'move-subpages'                => 'Move subpages (up to $1)',
03497 'move-talk-subpages'           => 'Move subpages of talk page (up to $1)',
03498 'movepage-page-exists'         => 'The page $1 already exists and cannot be automatically overwritten.',
03499 'movepage-page-moved'          => 'The page $1 has been moved to $2.',
03500 'movepage-page-unmoved'        => 'The page $1 could not be moved to $2.',
03501 'movepage-max-pages'           => 'The maximum of $1 {{PLURAL:$1|page|pages}} has been moved and no more will be moved automatically.',
03502 'movelogpage'                  => 'Move log',
03503 'movelogpagetext'              => 'Below is a list of all page moves.',
03504 'movesubpage'                  => '{{PLURAL:$1|Subpage|Subpages}}',
03505 'movesubpagetext'              => 'This page has $1 {{PLURAL:$1|subpage|subpages}} shown below.',
03506 'movenosubpage'                => 'This page has no subpages.',
03507 'movereason'                   => 'Reason:',
03508 'move-redirect-text'           => '', # do not translate or duplicate this message to other languages
03509 'revertmove'                   => 'revert',
03510 'delete_and_move'              => 'Delete and move',
03511 'delete_and_move_text'         => '== Deletion required ==
03512 The destination page "[[:$1]]" already exists.
03513 Do you want to delete it to make way for the move?',
03514 'delete_and_move_confirm'      => 'Yes, delete the page',
03515 'delete_and_move_reason'       => 'Deleted to make way for move from "[[$1]]"',
03516 'selfmove'                     => 'Source and destination titles are the same;
03517 cannot move a page over itself.',
03518 'immobile-source-namespace'    => 'Cannot move pages in namespace "$1"',
03519 'immobile-target-namespace'    => 'Cannot move pages into namespace "$1"',
03520 'immobile-target-namespace-iw' => 'Interwiki link is not a valid target for page move.',
03521 'immobile-source-page'         => 'This page is not movable.',
03522 'immobile-target-page'         => 'Cannot move to that destination title.',
03523 'bad-target-model'             => 'The desired destination uses a different content model. Can not convert from $1 to $2.',
03524 'imagenocrossnamespace'        => 'Cannot move file to non-file namespace',
03525 'nonfile-cannot-move-to-file'  => 'Cannot move non-file to file namespace',
03526 'imagetypemismatch'            => 'The new file extension does not match its type',
03527 'imageinvalidfilename'         => 'The target filename is invalid',
03528 'fix-double-redirects'         => 'Update any redirects that point to the original title',
03529 'move-leave-redirect'          => 'Leave a redirect behind',
03530 'protectedpagemovewarning'     => "'''Warning:''' This page has been protected so that only users with administrator privileges can move it.
03531 The latest log entry is provided below for reference:",
03532 'semiprotectedpagemovewarning' => "'''Note:''' This page has been protected so that only registered users can move it.
03533 The latest log entry is provided below for reference:",
03534 'move-over-sharedrepo'         => '== File exists ==
03535 [[:$1]] exists on a shared repository. Moving a file to this title will override the shared file.',
03536 'file-exists-sharedrepo'       => 'The filename chosen is already in use on a shared repository.
03537 Please choose another name.',
03538 
03539 # Export
03540 'export'            => 'Export pages',
03541 'export-summary'    => '', # do not translate or duplicate this message to other languages
03542 'exporttext'        => 'You can export the text and editing history of a particular page or set of pages wrapped in some XML.
03543 This can be imported into another wiki using MediaWiki via the [[Special:Import|import page]].
03544 
03545 To export pages, enter the titles in the text box below, one title per line, and select whether you want the current revision as well as all old revisions, with the page history lines, or the current revision with the info about the last edit.
03546 
03547 In the latter case you can also use a link, for example [[{{#Special:Export}}/{{MediaWiki:Mainpage}}]] for the page "[[{{MediaWiki:Mainpage}}]]".',
03548 'exportall'         => 'Export all pages',
03549 'exportcuronly'     => 'Include only the current revision, not the full history',
03550 'exportnohistory'   => "----
03551 '''Note:''' Exporting the full history of pages through this form has been disabled due to performance reasons.",
03552 'exportlistauthors' => 'Include a full list of contributors for each page',
03553 'export-submit'     => 'Export',
03554 'export-addcattext' => 'Add pages from category:',
03555 'export-addcat'     => 'Add',
03556 'export-addnstext'  => 'Add pages from namespace:',
03557 'export-addns'      => 'Add',
03558 'export-download'   => 'Save as file',
03559 'export-templates'  => 'Include templates',
03560 'export-pagelinks'  => 'Include linked pages to a depth of:',
03561 
03562 # Namespace 8 related
03563 'allmessages'                   => 'System messages',
03564 'allmessagesname'               => 'Name',
03565 'allmessagesdefault'            => 'Default message text',
03566 'allmessagescurrent'            => 'Current message text',
03567 'allmessagestext'               => 'This is a list of system messages available in the MediaWiki namespace.
03568 Please visit [https://www.mediawiki.org/wiki/Localisation MediaWiki Localisation] and [//translatewiki.net translatewiki.net] if you wish to contribute to the generic MediaWiki localisation.',
03569 'allmessagesnotsupportedDB'     => "This page cannot be used because '''\$wgUseDatabaseMessages''' has been disabled.",
03570 'allmessages-filter-legend'     => 'Filter',
03571 'allmessages-filter'            => 'Filter by customization state:',
03572 'allmessages-filter-unmodified' => 'Unmodified',
03573 'allmessages-filter-all'        => 'All',
03574 'allmessages-filter-modified'   => 'Modified',
03575 'allmessages-prefix'            => 'Filter by prefix:',
03576 'allmessages-language'          => 'Language:',
03577 'allmessages-filter-submit'     => 'Go',
03578 
03579 # Thumbnails
03580 'thumbnail-more'           => 'Enlarge',
03581 'filemissing'              => 'File missing',
03582 'thumbnail_error'          => 'Error creating thumbnail: $1',
03583 'thumbnail_error_remote'   => 'Error message from $1:
03584 $2',
03585 'djvu_page_error'          => 'DjVu page out of range',
03586 'djvu_no_xml'              => 'Unable to fetch XML for DjVu file',
03587 'thumbnail-temp-create'    => 'Unable to create temporary thumbnail file',
03588 'thumbnail-dest-create'    => 'Unable to save thumbnail to destination',
03589 'thumbnail_invalid_params' => 'Invalid thumbnail parameters',
03590 'thumbnail_dest_directory' => 'Unable to create destination directory',
03591 'thumbnail_image-type'     => 'Image type not supported',
03592 'thumbnail_gd-library'     => 'Incomplete GD library configuration: Missing function $1',
03593 'thumbnail_image-missing'  => 'File seems to be missing: $1',
03594 
03595 # Special:Import
03596 'import'                     => 'Import pages',
03597 'import-summary'             => '', # do not translate or duplicate this message to other languages
03598 'importinterwiki'            => 'Transwiki import',
03599 'import-interwiki-text'      => "Select a wiki and page title to import.
03600 Revision dates and editors' names will be preserved.
03601 All transwiki import actions are logged at the [[Special:Log/import|import log]].",
03602 'import-interwiki-source'    => 'Source wiki/page:',
03603 'import-interwiki-history'   => 'Copy all history revisions for this page',
03604 'import-interwiki-templates' => 'Include all templates',
03605 'import-interwiki-submit'    => 'Import',
03606 'import-interwiki-namespace' => 'Destination namespace:',
03607 'import-interwiki-rootpage'  => 'Destination root page (optional):',
03608 'import-upload-filename'     => 'Filename:',
03609 'import-comment'             => 'Comment:',
03610 'importtext'                 => 'Please export the file from the source wiki using the [[Special:Export|export utility]].
03611 Save it to your computer and upload it here.',
03612 'importstart'                => 'Importing pages...',
03613 'import-revision-count'      => '$1 {{PLURAL:$1|revision|revisions}}',
03614 'importnopages'              => 'No pages to import.',
03615 'imported-log-entries'       => 'Imported $1 {{PLURAL:$1|log entry|log entries}}.',
03616 'importfailed'               => 'Import failed: <nowiki>$1</nowiki>',
03617 'importunknownsource'        => 'Unknown import source type',
03618 'importcantopen'             => 'Could not open import file',
03619 'importbadinterwiki'         => 'Bad interwiki link',
03620 'importnotext'               => 'Empty or no text',
03621 'importsuccess'              => 'Import finished!',
03622 'importhistoryconflict'      => 'Conflicting history revision exists (may have imported this page before)',
03623 'importnosources'            => 'No transwiki import sources have been defined and direct history uploads are disabled.',
03624 'importnofile'               => 'No import file was uploaded.',
03625 'importuploaderrorsize'      => 'Upload of import file failed.
03626 The file is bigger than the allowed upload size.',
03627 'importuploaderrorpartial'   => 'Upload of import file failed.
03628 The file was only partially uploaded.',
03629 'importuploaderrortemp'      => 'Upload of import file failed.
03630 A temporary folder is missing.',
03631 'import-parse-failure'       => 'XML import parse failure',
03632 'import-noarticle'           => 'No page to import!',
03633 'import-nonewrevisions'      => 'All revisions were previously imported.',
03634 'xml-error-string'           => '$1 at line $2, col $3 (byte $4): $5',
03635 'import-upload'              => 'Upload XML data',
03636 'import-token-mismatch'      => 'Loss of session data.
03637 Please try again.',
03638 'import-invalid-interwiki'   => 'Cannot import from the specified wiki.',
03639 'import-error-edit'          => 'Page "$1" is not imported because you are not allowed to edit it.',
03640 'import-error-create'        => 'Page "$1" is not imported because you are not allowed to create it.',
03641 'import-error-interwiki'     => 'Page "$1" is not imported because its name is reserved for external linking (interwiki).',
03642 'import-error-special'       => 'Page "$1" is not imported because it belongs to a special namespace that does not allow pages.',
03643 'import-error-invalid'       => 'Page "$1" is not imported because its name is invalid.',
03644 'import-error-unserialize'   => 'Revision $2 of page "$1" could not be unserialized. The revision was reported to use content model $3 serialized as $4.',
03645 'import-options-wrong'       => 'Wrong {{PLURAL:$2|option|options}}: <nowiki>$1</nowiki>',
03646 'import-rootpage-invalid'    => 'Given root page is an invalid title.',
03647 'import-rootpage-nosubpage'  => 'Namespace "$1" of the root page does not allow subpages.',
03648 
03649 # Import log
03650 'importlogpage'                    => 'Import log',
03651 'importlogpagetext'                => 'Administrative imports of pages with edit history from other wikis.',
03652 'import-logentry-upload'           => 'imported [[$1]] by file upload',
03653 'import-logentry-upload-detail'    => '$1 {{PLURAL:$1|revision|revisions}}',
03654 'import-logentry-interwiki'        => 'transwikied $1',
03655 'import-logentry-interwiki-detail' => '$1 {{PLURAL:$1|revision|revisions}} from $2',
03656 
03657 # JavaScriptTest
03658 'javascripttest'                           => 'JavaScript testing',
03659 'javascripttest-backlink'                  => '< $1', # do not translate or duplicate this message to other languages
03660 'javascripttest-title'                     => 'Running $1 tests',
03661 'javascripttest-pagetext-noframework'      => 'This page is reserved for running JavaScript tests.',
03662 'javascripttest-pagetext-unknownframework' => 'Unknown testing framework "$1".',
03663 'javascripttest-pagetext-frameworks'       => 'Please choose one of the following testing frameworks: $1',
03664 'javascripttest-pagetext-skins'            => 'Choose a skin to run the tests with:',
03665 'javascripttest-qunit-name'                => 'QUnit', # do not translate or duplicate this message to other languages
03666 'javascripttest-qunit-intro'               => 'See [$1 testing documentation] on mediawiki.org.',
03667 'javascripttest-qunit-heading'             => 'MediaWiki JavaScript QUnit test suite',
03668 
03669 # Keyboard access keys for power users
03670 'accesskey-pt-userpage'                 => '.', # do not translate or duplicate this message to other languages
03671 'accesskey-pt-anonuserpage'             => '.', # do not translate or duplicate this message to other languages
03672 'accesskey-pt-mytalk'                   => 'n', # do not translate or duplicate this message to other languages
03673 'accesskey-pt-anontalk'                 => 'n', # do not translate or duplicate this message to other languages
03674 'accesskey-pt-preferences'              => '', # do not translate or duplicate this message to other languages
03675 'accesskey-pt-watchlist'                => 'l', # do not translate or duplicate this message to other languages
03676 'accesskey-pt-mycontris'                => 'y', # do not translate or duplicate this message to other languages
03677 'accesskey-pt-login'                    => 'o', # do not translate or duplicate this message to other languages
03678 'accesskey-pt-anonlogin'                => 'o', # do not translate or duplicate this message to other languages
03679 'accesskey-pt-logout'                   => '', # do not translate or duplicate this message to other languages
03680 'accesskey-ca-talk'                     => 't', # do not translate or duplicate this message to other languages
03681 'accesskey-ca-edit'                     => 'e', # do not translate or duplicate this message to other languages
03682 'accesskey-ca-addsection'               => '+', # do not translate or duplicate this message to other languages
03683 'accesskey-ca-viewsource'               => 'e', # do not translate or duplicate this message to other languages
03684 'accesskey-ca-history'                  => 'h', # do not translate or duplicate this message to other languages
03685 'accesskey-ca-protect'                  => '=', # do not translate or duplicate this message to other languages
03686 'accesskey-ca-unprotect'                => '=', # do not translate or duplicate this message to other languages
03687 'accesskey-ca-delete'                   => 'd', # do not translate or duplicate this message to other languages
03688 'accesskey-ca-undelete'                 => 'd', # do not translate or duplicate this message to other languages
03689 'accesskey-ca-move'                     => 'm', # do not translate or duplicate this message to other languages
03690 'accesskey-ca-watch'                    => 'w', # do not translate or duplicate this message to other languages
03691 'accesskey-ca-unwatch'                  => 'w', # do not translate or duplicate this message to other languages
03692 'accesskey-search'                      => 'f', # do not translate or duplicate this message to other languages
03693 'accesskey-search-go'                   => '', # do not translate or duplicate this message to other languages
03694 'accesskey-search-fulltext'             => '', # do not translate or duplicate this message to other languages
03695 'accesskey-p-logo'                      => '', # do not translate or duplicate this message to other languages
03696 'accesskey-n-mainpage'                  => 'z', # do not translate or duplicate this message to other languages
03697 'accesskey-n-mainpage-description'      => 'z', # do not translate or duplicate this message to other languages
03698 'accesskey-n-portal'                    => '', # do not translate or duplicate this message to other languages
03699 'accesskey-n-currentevents'             => '', # do not translate or duplicate this message to other languages
03700 'accesskey-n-recentchanges'             => 'r', # do not translate or duplicate this message to other languages
03701 'accesskey-n-randompage'                => 'x', # do not translate or duplicate this message to other languages
03702 'accesskey-n-help'                      => '', # do not translate or duplicate this message to other languages
03703 'accesskey-t-whatlinkshere'             => 'j', # do not translate or duplicate this message to other languages
03704 'accesskey-t-recentchangeslinked'       => 'k', # do not translate or duplicate this message to other languages
03705 'accesskey-feed-rss'                    => '', # do not translate or duplicate this message to other languages
03706 'accesskey-feed-atom'                   => '', # do not translate or duplicate this message to other languages
03707 'accesskey-t-contributions'             => '', # do not translate or duplicate this message to other languages
03708 'accesskey-t-emailuser'                 => '', # do not translate or duplicate this message to other languages
03709 'accesskey-t-permalink'                 => '', # do not translate or duplicate this message to other languages
03710 'accesskey-t-print'                     => 'p', # do not translate or duplicate this message to other languages
03711 'accesskey-t-upload'                    => 'u', # do not translate or duplicate this message to other languages
03712 'accesskey-t-specialpages'              => 'q', # do not translate or duplicate this message to other languages
03713 'accesskey-ca-nstab-main'               => 'c', # do not translate or duplicate this message to other languages
03714 'accesskey-ca-nstab-user'               => 'c', # do not translate or duplicate this message to other languages
03715 'accesskey-ca-nstab-media'              => 'c', # do not translate or duplicate this message to other languages
03716 'accesskey-ca-nstab-special'            => '', # do not translate or duplicate this message to other languages
03717 'accesskey-ca-nstab-project'            => 'a', # do not translate or duplicate this message to other languages
03718 'accesskey-ca-nstab-image'              => 'c', # do not translate or duplicate this message to other languages
03719 'accesskey-ca-nstab-mediawiki'          => 'c', # do not translate or duplicate this message to other languages
03720 'accesskey-ca-nstab-template'           => 'c', # do not translate or duplicate this message to other languages
03721 'accesskey-ca-nstab-help'               => 'c', # do not translate or duplicate this message to other languages
03722 'accesskey-ca-nstab-category'           => 'c', # do not translate or duplicate this message to other languages
03723 'accesskey-minoredit'                   => 'i', # do not translate or duplicate this message to other languages
03724 'accesskey-save'                        => 's', # do not translate or duplicate this message to other languages
03725 'accesskey-preview'                     => 'p', # do not translate or duplicate this message to other languages
03726 'accesskey-diff'                        => 'v', # do not translate or duplicate this message to other languages
03727 'accesskey-compareselectedversions'     => 'v', # do not translate or duplicate this message to other languages
03728 'accesskey-watch'                       => 'w', # do not translate or duplicate this message to other languages
03729 'accesskey-upload'                      => 's', # do not translate or duplicate this message to other languages
03730 'accesskey-preferences-save'            => 's', # do not translate or duplicate this message to other languages
03731 'accesskey-summary'                     => 'b', # do not translate or duplicate this message to other languages
03732 'accesskey-userrights-set'              => 's', # do not translate or duplicate this message to other languages
03733 'accesskey-blockip-block'               => 's', # do not translate or duplicate this message to other languages
03734 'accesskey-export'                      => 's', # do not translate or duplicate this message to other languages
03735 'accesskey-import'                      => 's', # do not translate or duplicate this message to other languages
03736 'accesskey-watchlistedit-normal-submit' => 's', # do not translate or duplicate this message to other languages
03737 'accesskey-watchlistedit-raw-submit'    => 's', # do not translate or duplicate this message to other languages
03738 
03739 # Tooltip help for the actions
03740 'tooltip-pt-userpage'                 => 'Your user page',
03741 'tooltip-pt-anonuserpage'             => 'The user page for the IP address you are editing as',
03742 'tooltip-pt-mytalk'                   => 'Your talk page',
03743 'tooltip-pt-anontalk'                 => 'Discussion about edits from this IP address',
03744 'tooltip-pt-preferences'              => 'Your preferences',
03745 'tooltip-pt-watchlist'                => 'A list of pages you are monitoring for changes',
03746 'tooltip-pt-mycontris'                => 'A list of your contributions',
03747 'tooltip-pt-login'                    => 'You are encouraged to log in; however, it is not mandatory',
03748 'tooltip-pt-anonlogin'                => 'You are encouraged to log in; however, it is not mandatory',
03749 'tooltip-pt-logout'                   => 'Log out',
03750 'tooltip-ca-talk'                     => 'Discussion about the content page',
03751 'tooltip-ca-edit'                     => 'You can edit this page. Please use the preview button before saving',
03752 'tooltip-ca-addsection'               => 'Start a new section',
03753 'tooltip-ca-viewsource'               => 'This page is protected.
03754 You can view its source',
03755 'tooltip-ca-history'                  => 'Past revisions of this page',
03756 'tooltip-ca-protect'                  => 'Protect this page',
03757 'tooltip-ca-unprotect'                => 'Change protection of this page',
03758 'tooltip-ca-delete'                   => 'Delete this page',
03759 'tooltip-ca-undelete'                 => 'Restore the edits done to this page before it was deleted',
03760 'tooltip-ca-move'                     => 'Move this page',
03761 'tooltip-ca-watch'                    => 'Add this page to your watchlist',
03762 'tooltip-ca-unwatch'                  => 'Remove this page from your watchlist',
03763 'tooltip-search'                      => 'Search {{SITENAME}}',
03764 'tooltip-search-go'                   => 'Go to a page with this exact name if exists',
03765 'tooltip-search-fulltext'             => 'Search the pages for this text',
03766 'tooltip-p-logo'                      => 'Visit the main page',
03767 'tooltip-n-mainpage'                  => 'Visit the main page',
03768 'tooltip-n-mainpage-description'      => 'Visit the main page',
03769 'tooltip-n-portal'                    => 'About the project, what you can do, where to find things',
03770 'tooltip-n-currentevents'             => 'Find background information on current events',
03771 'tooltip-n-recentchanges'             => 'A list of recent changes in the wiki',
03772 'tooltip-n-randompage'                => 'Load a random page',
03773 'tooltip-n-help'                      => 'The place to find out',
03774 'tooltip-t-whatlinkshere'             => 'A list of all wiki pages that link here',
03775 'tooltip-t-recentchangeslinked'       => 'Recent changes in pages linked from this page',
03776 'tooltip-feed-rss'                    => 'RSS feed for this page',
03777 'tooltip-feed-atom'                   => 'Atom feed for this page',
03778 'tooltip-t-contributions'             => 'A list of contributions of this user',
03779 'tooltip-t-emailuser'                 => 'Send an email to this user',
03780 'tooltip-t-upload'                    => 'Upload files',
03781 'tooltip-t-specialpages'              => 'A list of all special pages',
03782 'tooltip-t-print'                     => 'Printable version of this page',
03783 'tooltip-t-permalink'                 => 'Permanent link to this revision of the page',
03784 'tooltip-ca-nstab-main'               => 'View the content page',
03785 'tooltip-ca-nstab-user'               => 'View the user page',
03786 'tooltip-ca-nstab-media'              => 'View the media page',
03787 'tooltip-ca-nstab-special'            => 'This is a special page, you cannot edit the page itself',
03788 'tooltip-ca-nstab-project'            => 'View the project page',
03789 'tooltip-ca-nstab-image'              => 'View the file page',
03790 'tooltip-ca-nstab-mediawiki'          => 'View the system message',
03791 'tooltip-ca-nstab-template'           => 'View the template',
03792 'tooltip-ca-nstab-help'               => 'View the help page',
03793 'tooltip-ca-nstab-category'           => 'View the category page',
03794 'tooltip-minoredit'                   => 'Mark this as a minor edit',
03795 'tooltip-save'                        => 'Save your changes',
03796 'tooltip-preview'                     => 'Preview your changes, please use this before saving!',
03797 'tooltip-diff'                        => 'Show which changes you made to the text',
03798 'tooltip-compareselectedversions'     => 'See the differences between the two selected revisions of this page',
03799 'tooltip-watch'                       => 'Add this page to your watchlist',
03800 'tooltip-watchlistedit-normal-submit' => 'Remove titles',
03801 'tooltip-watchlistedit-raw-submit'    => 'Update watchlist',
03802 'tooltip-recreate'                    => 'Recreate the page even though it has been deleted',
03803 'tooltip-upload'                      => 'Start upload',
03804 'tooltip-rollback'                    => '"Rollback" reverts edit(s) to this page of the last contributor in one click',
03805 'tooltip-undo'                        => '"Undo" reverts this edit and opens the edit form in preview mode. It allows adding a reason in the summary.',
03806 'tooltip-preferences-save'            => 'Save preferences',
03807 'tooltip-summary'                     => 'Enter a short summary',
03808 
03809 # Stylesheets
03810 'common.css'              => '/* CSS placed here will be applied to all skins */', # only translate this message to other languages if you have to change it
03811 'cologneblue.css'         => '/* CSS placed here will affect users of the Cologne Blue skin */', # only translate this message to other languages if you have to change it
03812 'monobook.css'            => '/* CSS placed here will affect users of the MonoBook skin */', # only translate this message to other languages if you have to change it
03813 'modern.css'              => '/* CSS placed here will affect users of the Modern skin */', # only translate this message to other languages if you have to change it
03814 'vector.css'              => '/* CSS placed here will affect users of the Vector skin */', # only translate this message to other languages if you have to change it
03815 'print.css'               => '/* CSS placed here will affect the print output */', # only translate this message to other languages if you have to change it
03816 'noscript.css'            => '/* CSS placed here will affect users with JavaScript disabled */', # only translate this message to other languages if you have to change it
03817 'group-autoconfirmed.css' => '/* CSS placed here will affect autoconfirmed users only */', # only translate this message to other languages if you have to change it
03818 'group-bot.css'           => '/* CSS placed here will affect bots only */', # only translate this message to other languages if you have to change it
03819 'group-sysop.css'         => '/* CSS placed here will affect sysops only */', # only translate this message to other languages if you have to change it
03820 'group-bureaucrat.css'    => '/* CSS placed here will affect bureaucrats only */', # only translate this message to other languages if you have to change it
03821 
03822 # Scripts
03823 'common.js'              => '/* Any JavaScript here will be loaded for all users on every page load. */', # only translate this message to other languages if you have to change it
03824 'cologneblue.js'         => '/* Any JavaScript here will be loaded for users using the Cologne Blue skin */', # only translate this message to other languages if you have to change it
03825 'monobook.js'            => '/* Any JavaScript here will be loaded for users using the MonoBook skin */', # only translate this message to other languages if you have to change it
03826 'modern.js'              => '/* Any JavaScript here will be loaded for users using the Modern skin */', # only translate this message to other languages if you have to change it
03827 'vector.js'              => '/* Any JavaScript here will be loaded for users using the Vector skin */', # only translate this message to other languages if you have to change it
03828 'group-autoconfirmed.js' => '/* Any JavaScript here will be loaded for autoconfirmed users only */', # only translate this message to other languages if you have to change it
03829 'group-bot.js'           => '/* Any JavaScript here will be loaded for bots only */', # only translate this message to other languages if you have to change it
03830 'group-sysop.js'         => '/* Any JavaScript here will be loaded for sysops only */', # only translate this message to other languages if you have to change it
03831 'group-bureaucrat.js'    => '/* Any JavaScript here will be loaded for bureaucrats only */', # only translate this message to other languages if you have to change it
03832 
03833 # Metadata
03834 'notacceptable' => 'The wiki server cannot provide data in a format your client can read.',
03835 
03836 # Attribution
03837 'anonymous'        => 'Anonymous {{PLURAL:$1|user|users}} of {{SITENAME}}',
03838 'siteuser'         => '{{SITENAME}} user $1',
03839 'anonuser'         => '{{SITENAME}} anonymous user $1',
03840 'lastmodifiedatby' => 'This page was last modified $2, $1 by $3.',
03841 'othercontribs'    => 'Based on work by $1.',
03842 'others'           => 'others',
03843 'siteusers'        => '{{SITENAME}} {{PLURAL:$2|user|users}} $1',
03844 'anonusers'        => '{{SITENAME}} anonymous {{PLURAL:$2|user|users}} $1',
03845 'creditspage'      => 'Page credits',
03846 'nocredits'        => 'There is no credits info available for this page.',
03847 
03848 # Spam protection
03849 'spamprotectiontitle' => 'Spam protection filter',
03850 'spamprotectiontext'  => 'The text you wanted to save was blocked by the spam filter.
03851 This is probably caused by a link to a blacklisted external site.',
03852 'spamprotectionmatch' => 'The following text is what triggered our spam filter: $1',
03853 'spambot_username'    => 'MediaWiki spam cleanup',
03854 'spam_reverting'      => 'Reverting to last revision not containing links to $1',
03855 'spam_blanking'       => 'All revisions contained links to $1, blanking',
03856 'spam_deleting'       => 'All revisions contained links to $1, deleting',
03857 'simpleantispam-label' => "Anti-spam check.
03858 Do '''NOT''' fill this in!",
03859 
03860 # Info page
03861 'pageinfo-header'                 => '-', # do not translate or duplicate this message to other languages
03862 'pageinfo-title'                  => 'Information for "$1"',
03863 'pageinfo-not-current'            => "Sorry, it's impossible to provide this information for old revisions.",
03864 'pageinfo-header-basic'           => 'Basic information',
03865 'pageinfo-header-edits'           => 'Edit history',
03866 'pageinfo-header-restrictions'    => 'Page protection',
03867 'pageinfo-header-properties'      => 'Page properties',
03868 'pageinfo-display-title'          => 'Display title',
03869 'pageinfo-default-sort'           => 'Default sort key',
03870 'pageinfo-length'                 => 'Page length (in bytes)',
03871 'pageinfo-article-id'             => 'Page ID',
03872 'pageinfo-language'               => 'Page content language',
03873 'pageinfo-robot-policy'           => 'Indexing by robots',
03874 'pageinfo-robot-index'            => 'Allowed',
03875 'pageinfo-robot-noindex'          => 'Disallowed',
03876 'pageinfo-views'                  => 'Number of views',
03877 'pageinfo-watchers'               => 'Number of page watchers',
03878 'pageinfo-few-watchers'           => 'Fewer than $1 {{PLURAL:$1|watcher|watchers}}',
03879 'pageinfo-redirects-name'         => 'Number of redirects to this page',
03880 'pageinfo-redirects-value'        => '$1', # only translate this message to other languages if you have to change it
03881 'pageinfo-subpages-name'          => 'Number of subpages of this page',
03882 'pageinfo-subpages-value'         => '$1 ($2 {{PLURAL:$2|redirect|redirects}}; $3 {{PLURAL:$3|non-redirect|non-redirects}})',
03883 'pageinfo-firstuser'              => 'Page creator',
03884 'pageinfo-firsttime'              => 'Date of page creation',
03885 'pageinfo-lastuser'               => 'Latest editor',
03886 'pageinfo-lasttime'               => 'Date of latest edit',
03887 'pageinfo-edits'                  => 'Total number of edits',
03888 'pageinfo-authors'                => 'Total number of distinct authors',
03889 'pageinfo-recent-edits'           => 'Recent number of edits (within past $1)',
03890 'pageinfo-recent-authors'         => 'Recent number of distinct authors',
03891 'pageinfo-magic-words'            => 'Magic {{PLURAL:$1|word|words}} ($1)',
03892 'pageinfo-hidden-categories'      => 'Hidden {{PLURAL:$1|category|categories}} ($1)',
03893 'pageinfo-templates'              => 'Transcluded {{PLURAL:$1|template|templates}} ($1)',
03894 'pageinfo-transclusions'          => '{{PLURAL:$1|Page|Pages}} transcluded on ($1)',
03895 'pageinfo-footer'                 => '-', # do not translate or duplicate this message to other languages
03896 'pageinfo-toolboxlink'            => 'Page information',
03897 'pageinfo-redirectsto'            => 'Redirects to',
03898 'pageinfo-redirectsto-info'       => 'info',
03899 'pageinfo-contentpage'            => 'Counted as a content page',
03900 'pageinfo-contentpage-yes'        => 'Yes',
03901 'pageinfo-protect-cascading'      => 'Protections are cascading from here',
03902 'pageinfo-protect-cascading-yes'  => 'Yes',
03903 'pageinfo-protect-cascading-from' => 'Protections are cascading from',
03904 'pageinfo-category-info'          => 'Category information',
03905 'pageinfo-category-pages'         => 'Number of pages',
03906 'pageinfo-category-subcats'       => 'Number of subcategories',
03907 'pageinfo-category-files'         => 'Number of files',
03908 
03909 # Skin names
03910 'skinname-cologneblue' => 'Cologne Blue', # only translate this message to other languages if you have to change it
03911 'skinname-monobook'    => 'MonoBook', # only translate this message to other languages if you have to change it
03912 'skinname-modern'      => 'Modern', # only translate this message to other languages if you have to change it
03913 'skinname-vector'      => 'Vector', # only translate this message to other languages if you have to change it
03914 
03915 # Patrolling
03916 'markaspatrolleddiff'                 => 'Mark as patrolled',
03917 'markaspatrolledlink'                 => '[$1]', # do not translate or duplicate this message to other languages
03918 'markaspatrolledtext'                 => 'Mark this page as patrolled',
03919 'markedaspatrolled'                   => 'Marked as patrolled',
03920 'markedaspatrolledtext'               => 'The selected revision of [[:$1]] has been marked as patrolled.',
03921 'rcpatroldisabled'                    => 'Recent changes patrol disabled',
03922 'rcpatroldisabledtext'                => 'The recent changes patrol feature is currently disabled.',
03923 'markedaspatrollederror'              => 'Cannot mark as patrolled',
03924 'markedaspatrollederrortext'          => 'You need to specify a revision to mark as patrolled.',
03925 'markedaspatrollederror-noautopatrol' => 'You are not allowed to mark your own changes as patrolled.',
03926 'markedaspatrollednotify'             => 'This change to $1 has been marked as patrolled.',
03927 'markedaspatrollederrornotify'        => 'Marking as patrolled failed.',
03928 
03929 # Patrol log
03930 'patrol-log-page'      => 'Patrol log',
03931 'patrol-log-header'    => 'This is a log of patrolled revisions.',
03932 'log-show-hide-patrol' => '$1 patrol log',
03933 
03934 # Image deletion
03935 'deletedrevision'                 => 'Deleted old revision $1',
03936 'filedeleteerror-short'           => 'Error deleting file: $1',
03937 'filedeleteerror-long'            => 'Errors were encountered while deleting the file:
03938 
03939 $1',
03940 'filedelete-missing'              => 'The file "$1" cannot be deleted because it does not exist.',
03941 'filedelete-old-unregistered'     => 'The specified file revision "$1" is not in the database.',
03942 'filedelete-current-unregistered' => 'The specified file "$1" is not in the database.',
03943 'filedelete-archive-read-only'    => 'The archive directory "$1" is not writable by the webserver.',
03944 
03945 # Browsing diffs
03946 'previousdiff' => '← Older edit',
03947 'nextdiff'     => 'Newer edit →',
03948 
03949 # Media information
03950 'mediawarning'                => "'''Warning:''' This file type may contain malicious code.
03951 By executing it, your system may be compromised.",
03952 'imagemaxsize'                => "Image size limit:<br />''(for file description pages)''",
03953 'thumbsize'                   => 'Thumbnail size:',
03954 'widthheight'                 => '$1 × $2', # only translate this message to other languages if you have to change it
03955 'widthheightpage'             => '$1 × $2, $3 {{PLURAL:$3|page|pages}}',
03956 'file-info'                   => 'file size: $1, MIME type: $2',
03957 'file-info-size'              => '$1 × $2 pixels, file size: $3, MIME type: $4',
03958 'file-info-size-pages'        => '$1 × $2 pixels, file size: $3, MIME type: $4, $5 {{PLURAL:$5|page|pages}}',
03959 'file-nohires'                => 'No higher resolution available.',
03960 'svg-long-desc'               => 'SVG file, nominally $1 × $2 pixels, file size: $3',
03961 'svg-long-desc-animated'      => 'Animated SVG file, nominally $1 × $2 pixels, file size: $3',
03962 'svg-long-error'              => 'Invalid SVG file: $1',
03963 'show-big-image'              => 'Original file',
03964 'show-big-image-preview'      => 'Size of this preview: $1.',
03965 'show-big-image-other'        => 'Other {{PLURAL:$2|resolution|resolutions}}: $1.',
03966 'show-big-image-size'         => '$1 × $2 pixels',
03967 'file-info-gif-looped'        => 'looped',
03968 'file-info-gif-frames'        => '$1 {{PLURAL:$1|frame|frames}}',
03969 'file-info-png-looped'        => 'looped',
03970 'file-info-png-repeat'        => 'played $1 {{PLURAL:$1|time|times}}',
03971 'file-info-png-frames'        => '$1 {{PLURAL:$1|frame|frames}}',
03972 'file-no-thumb-animation'     => "'''Note: Due to technical limitations, thumbnails of this file will not be animated.'''",
03973 'file-no-thumb-animation-gif' => "'''Note: Due to technical limitations, thumbnails of high resolution GIF images such as this one will not be animated.'''",
03974 
03975 # Special:NewFiles
03976 'newimages'             => 'Gallery of new files',
03977 'imagelisttext'         => "Below is a list of '''$1''' {{PLURAL:$1|file|files}} sorted $2.",
03978 'newimages-summary'     => 'This special page shows the last uploaded files.',
03979 'newimages-legend'      => 'Filter',
03980 'newimages-label'       => 'Filename (or a part of it):',
03981 'showhidebots'          => '($1 bots)',
03982 'noimages'              => 'Nothing to see.',
03983 'ilsubmit'              => 'Search',
03984 'bydate'                => 'by date',
03985 'sp-newimages-showfrom' => 'Show new files starting from $2, $1',
03986 
03987 # Video information, used by Language::formatTimePeriod() to format lengths in the above messages
03988 'video-dims'     => '$1, $2 × $3', # only translate this message to other languages if you have to change it
03989 'seconds-abbrev' => '$1 s', # only translate this message to other languages if you have to change it
03990 'minutes-abbrev' => '$1 min', # only translate this message to other languages if you have to change it
03991 'hours-abbrev'   => '$1 h', # only translate this message to other languages if you have to change it
03992 'days-abbrev'    => '$1 d', # only translate this message to other languages if you have to change it
03993 'seconds'        => '{{PLURAL:$1|$1 second|$1 seconds}}',
03994 'minutes'        => '{{PLURAL:$1|$1 minute|$1 minutes}}',
03995 'hours'          => '{{PLURAL:$1|$1 hour|$1 hours}}',
03996 'days'           => '{{PLURAL:$1|$1 day|$1 days}}',
03997 'weeks'          => '{{PLURAL:$1|$1 week|$1 weeks}}',
03998 'months'         => '{{PLURAL:$1|$1 month|$1 months}}',
03999 'years'          => '{{PLURAL:$1|$1 year|$1 years}}',
04000 'ago'            => '$1 ago',
04001 'just-now'       => 'just now',
04002 
04003 # Human-readable timestamps
04004 'hours-ago'    => '$1 {{PLURAL:$1|hour|hours}} ago',
04005 'minutes-ago'  => '$1 {{PLURAL:$1|minute|minutes}} ago',
04006 'seconds-ago'  => '$1 {{PLURAL:$1|second|seconds}} ago',
04007 'monday-at'    => 'Monday at $1',
04008 'tuesday-at'   => 'Tuesday at $1',
04009 'wednesday-at' => 'Wednesday at $1',
04010 'thursday-at'  => 'Thursday at $1',
04011 'friday-at'    => 'Friday at $1',
04012 'saturday-at'  => 'Saturday at $1',
04013 'sunday-at'    => 'Sunday at $1',
04014 'today-at'     => '$1', # do not translate or duplicate this message to other languages
04015 'yesterday-at' => 'Yesterday at $1',
04016 
04017 # Bad image list
04018 'bad_image_list' => 'The format is as follows:
04019 
04020 Only list items (lines starting with *) are considered.
04021 The first link on a line must be a link to a bad file.
04022 Any subsequent links on the same line are considered to be exceptions, i.e. pages where the file may occur inline.',
04023 
04024 /*
04025 Short names for language variants used for language conversion links.
04026 Variants for Chinese language
04027 */
04028 'variantname-zh-hans' => 'hans', # only translate this message to other languages if you have to change it
04029 'variantname-zh-hant' => 'hant', # only translate this message to other languages if you have to change it
04030 'variantname-zh-cn'   => 'cn', # only translate this message to other languages if you have to change it
04031 'variantname-zh-tw'   => 'tw', # only translate this message to other languages if you have to change it
04032 'variantname-zh-hk'   => 'hk', # only translate this message to other languages if you have to change it
04033 'variantname-zh-mo'   => 'mo', # only translate this message to other languages if you have to change it
04034 'variantname-zh-sg'   => 'sg', # only translate this message to other languages if you have to change it
04035 'variantname-zh-my'   => 'my', # only translate this message to other languages if you have to change it
04036 'variantname-zh'      => 'zh', # only translate this message to other languages if you have to change it
04037 
04038 # Variants for Gan language
04039 'variantname-gan-hans' => 'hans', # only translate this message to other languages if you have to change it
04040 'variantname-gan-hant' => 'hant', # only translate this message to other languages if you have to change it
04041 'variantname-gan'      => 'gan', # only translate this message to other languages if you have to change it
04042 
04043 # Variants for Serbian language
04044 'variantname-sr-ec' => 'sr-ec', # only translate this message to other languages if you have to change it
04045 'variantname-sr-el' => 'sr-el', # only translate this message to other languages if you have to change it
04046 'variantname-sr'    => 'sr', # only translate this message to other languages if you have to change it
04047 
04048 # Variants for Kazakh language
04049 'variantname-kk-kz'   => 'kk-kz', # only translate this message to other languages if you have to change it
04050 'variantname-kk-tr'   => 'kk-tr', # only translate this message to other languages if you have to change it
04051 'variantname-kk-cn'   => 'kk-cn', # only translate this message to other languages if you have to change it
04052 'variantname-kk-cyrl' => 'kk-cyrl', # only translate this message to other languages if you have to change it
04053 'variantname-kk-latn' => 'kk-latn', # only translate this message to other languages if you have to change it
04054 'variantname-kk-arab' => 'kk-arab', # only translate this message to other languages if you have to change it
04055 'variantname-kk'      => 'kk', # only translate this message to other languages if you have to change it
04056 
04057 # Variants for Kurdish language
04058 'variantname-ku-arab' => 'ku-Arab', # only translate this message to other languages if you have to change it
04059 'variantname-ku-latn' => 'ku-Latn', # only translate this message to other languages if you have to change it
04060 'variantname-ku'      => 'ku', # only translate this message to other languages if you have to change it
04061 
04062 # Variants for Tajiki language
04063 'variantname-tg-cyrl' => 'tg-Cyrl', # only translate this message to other languages if you have to change it
04064 'variantname-tg-latn' => 'tg-Latn', # only translate this message to other languages if you have to change it
04065 'variantname-tg'      => 'tg', # only translate this message to other languages if you have to change it
04066 
04067 # Variants for Inuktitut language
04068 'variantname-ike-cans' => 'ike-Cans', # only translate this message to other languages if you have to change it
04069 'variantname-ike-latn' => 'ike-Latn', # only translate this message to other languages if you have to change it
04070 'variantname-iu'       => 'iu', # only translate this message to other languages if you have to change it
04071 
04072 # Variants for Tachelhit language
04073 'variantname-shi-tfng' => 'shi-Tfng', # only translate this message to other languages if you have to change it
04074 'variantname-shi-latn' => 'shi-Latn', # only translate this message to other languages if you have to change it
04075 'variantname-shi'      => 'shi', # only translate this message to other languages if you have to change it
04076 
04077 # Metadata
04078 'metadata'                  => 'Metadata',
04079 'metadata-help'             => 'This file contains additional information, probably added from the digital camera or scanner used to create or digitize it.
04080 If the file has been modified from its original state, some details may not fully reflect the modified file.',
04081 'metadata-expand'           => 'Show extended details',
04082 'metadata-collapse'         => 'Hide extended details',
04083 'metadata-fields'           => 'Image metadata fields listed in this message will be included on image page display when the metadata table is collapsed.
04084 Others will be hidden by default.
04085 * make
04086 * model
04087 * datetimeoriginal
04088 * exposuretime
04089 * fnumber
04090 * isospeedratings
04091 * focallength
04092 * artist
04093 * copyright
04094 * imagedescription
04095 * gpslatitude
04096 * gpslongitude
04097 * gpsaltitude',
04098 'metadata-langitem'         => "'''$2:''' $1", # only translate this message to other languages if you have to change it
04099 'metadata-langitem-default' => '$1', # only translate this message to other languages if you have to change it
04100 
04101 # Exif tags
04102 'exif-imagewidth'                  => 'Width',
04103 'exif-imagelength'                 => 'Height',
04104 'exif-bitspersample'               => 'Bits per component',
04105 'exif-compression'                 => 'Compression scheme',
04106 'exif-photometricinterpretation'   => 'Pixel composition',
04107 'exif-orientation'                 => 'Orientation',
04108 'exif-samplesperpixel'             => 'Number of components',
04109 'exif-planarconfiguration'         => 'Data arrangement',
04110 'exif-ycbcrsubsampling'            => 'Subsampling ratio of Y to C',
04111 'exif-ycbcrpositioning'            => 'Y and C positioning',
04112 'exif-xresolution'                 => 'Horizontal resolution',
04113 'exif-yresolution'                 => 'Vertical resolution',
04114 'exif-stripoffsets'                => 'Image data location',
04115 'exif-rowsperstrip'                => 'Number of rows per strip',
04116 'exif-stripbytecounts'             => 'Bytes per compressed strip',
04117 'exif-jpeginterchangeformat'       => 'Offset to JPEG SOI',
04118 'exif-jpeginterchangeformatlength' => 'Bytes of JPEG data',
04119 'exif-whitepoint'                  => 'White point chromaticity',
04120 'exif-primarychromaticities'       => 'Chromaticities of primarities',
04121 'exif-ycbcrcoefficients'           => 'Color space transformation matrix coefficients',
04122 'exif-referenceblackwhite'         => 'Pair of black and white reference values',
04123 'exif-datetime'                    => 'File change date and time',
04124 'exif-imagedescription'            => 'Image title',
04125 'exif-make'                        => 'Camera manufacturer',
04126 'exif-model'                       => 'Camera model',
04127 'exif-software'                    => 'Software used',
04128 'exif-artist'                      => 'Author',
04129 'exif-copyright'                   => 'Copyright holder',
04130 'exif-exifversion'                 => 'Exif version',
04131 'exif-flashpixversion'             => 'Supported Flashpix version',
04132 'exif-colorspace'                  => 'Color space',
04133 'exif-componentsconfiguration'     => 'Meaning of each component',
04134 'exif-compressedbitsperpixel'      => 'Image compression mode',
04135 'exif-pixelydimension'             => 'Image width',
04136 'exif-pixelxdimension'             => 'Image height',
04137 'exif-usercomment'                 => 'User comments',
04138 'exif-relatedsoundfile'            => 'Related audio file',
04139 'exif-datetimeoriginal'            => 'Date and time of data generation',
04140 'exif-datetimedigitized'           => 'Date and time of digitizing',
04141 'exif-subsectime'                  => 'DateTime subseconds',
04142 'exif-subsectimeoriginal'          => 'DateTimeOriginal subseconds',
04143 'exif-subsectimedigitized'         => 'DateTimeDigitized subseconds',
04144 'exif-exposuretime'                => 'Exposure time',
04145 'exif-exposuretime-format'         => '$1 sec ($2)',
04146 'exif-fnumber'                     => 'F Number',
04147 'exif-fnumber-format'              => 'f/$1', # only translate this message to other languages if you have to change it
04148 'exif-exposureprogram'             => 'Exposure Program',
04149 'exif-spectralsensitivity'         => 'Spectral sensitivity',
04150 'exif-isospeedratings'             => 'ISO speed rating',
04151 'exif-shutterspeedvalue'           => 'APEX shutter speed',
04152 'exif-aperturevalue'               => 'APEX aperture',
04153 'exif-brightnessvalue'             => 'APEX brightness',
04154 'exif-exposurebiasvalue'           => 'APEX exposure bias',
04155 'exif-maxaperturevalue'            => 'Maximum land aperture',
04156 'exif-subjectdistance'             => 'Subject distance',
04157 'exif-meteringmode'                => 'Metering mode',
04158 'exif-lightsource'                 => 'Light source',
04159 'exif-flash'                       => 'Flash',
04160 'exif-focallength'                 => 'Lens focal length',
04161 'exif-focallength-format'          => '$1 mm', # only translate this message to other languages if you have to change it
04162 'exif-subjectarea'                 => 'Subject area',
04163 'exif-flashenergy'                 => 'Flash energy',
04164 'exif-focalplanexresolution'       => 'Focal plane X resolution',
04165 'exif-focalplaneyresolution'       => 'Focal plane Y resolution',
04166 'exif-focalplaneresolutionunit'    => 'Focal plane resolution unit',
04167 'exif-subjectlocation'             => 'Subject location',
04168 'exif-exposureindex'               => 'Exposure index',
04169 'exif-sensingmethod'               => 'Sensing method',
04170 'exif-filesource'                  => 'File source',
04171 'exif-scenetype'                   => 'Scene type',
04172 'exif-customrendered'              => 'Custom image processing',
04173 'exif-exposuremode'                => 'Exposure mode',
04174 'exif-whitebalance'                => 'White balance',
04175 'exif-digitalzoomratio'            => 'Digital zoom ratio',
04176 'exif-focallengthin35mmfilm'       => 'Focal length in 35 mm film',
04177 'exif-scenecapturetype'            => 'Scene capture type',
04178 'exif-gaincontrol'                 => 'Scene control',
04179 'exif-contrast'                    => 'Contrast',
04180 'exif-saturation'                  => 'Saturation',
04181 'exif-sharpness'                   => 'Sharpness',
04182 'exif-devicesettingdescription'    => 'Device settings description',
04183 'exif-subjectdistancerange'        => 'Subject distance range',
04184 'exif-imageuniqueid'               => 'Unique image ID',
04185 'exif-gpsversionid'                => 'GPS tag version',
04186 'exif-gpslatituderef'              => 'North or south latitude',
04187 'exif-gpslatitude'                 => 'Latitude',
04188 'exif-gpslongituderef'             => 'East or west longitude',
04189 'exif-gpslongitude'                => 'Longitude',
04190 'exif-gpsaltituderef'              => 'Altitude reference',
04191 'exif-gpsaltitude'                 => 'Altitude',
04192 'exif-gpstimestamp'                => 'GPS time (atomic clock)',
04193 'exif-gpssatellites'               => 'Satellites used for measurement',
04194 'exif-gpsstatus'                   => 'Receiver status',
04195 'exif-gpsmeasuremode'              => 'Measurement mode',
04196 'exif-gpsdop'                      => 'Measurement precision',
04197 'exif-gpsspeedref'                 => 'Speed unit',
04198 'exif-gpsspeed'                    => 'Speed of GPS receiver',
04199 'exif-gpstrackref'                 => 'Reference for direction of movement',
04200 'exif-gpstrack'                    => 'Direction of movement',
04201 'exif-gpsimgdirectionref'          => 'Reference for direction of image',
04202 'exif-gpsimgdirection'             => 'Direction of image',
04203 'exif-gpsmapdatum'                 => 'Geodetic survey data used',
04204 'exif-gpsdestlatituderef'          => 'Reference for latitude of destination',
04205 'exif-gpsdestlatitude'             => 'Latitude destination',
04206 'exif-gpsdestlongituderef'         => 'Reference for longitude of destination',
04207 'exif-gpsdestlongitude'            => 'Longitude of destination',
04208 'exif-gpsdestbearingref'           => 'Reference for bearing of destination',
04209 'exif-gpsdestbearing'              => 'Bearing of destination',
04210 'exif-gpsdestdistanceref'          => 'Reference for distance to destination',
04211 'exif-gpsdestdistance'             => 'Distance to destination',
04212 'exif-gpsprocessingmethod'         => 'Name of GPS processing method',
04213 'exif-gpsareainformation'          => 'Name of GPS area',
04214 'exif-gpsdatestamp'                => 'GPS date',
04215 'exif-gpsdifferential'             => 'GPS differential correction',
04216 'exif-coordinate-format'           => '$1° $2′ $3″ $4', # only translate this message to other languages if you have to change it
04217 'exif-jpegfilecomment'             => 'JPEG file comment',
04218 'exif-keywords'                    => 'Keywords',
04219 'exif-worldregioncreated'          => 'World region that the picture was taken in',
04220 'exif-countrycreated'              => 'Country that the picture was taken in',
04221 'exif-countrycodecreated'          => 'Code for the country that the picture was taken in',
04222 'exif-provinceorstatecreated'      => 'Province or state that the picture was taken in',
04223 'exif-citycreated'                 => 'City that the picture was taken in',
04224 'exif-sublocationcreated'          => 'Sublocation of the city that the picture was taken in',
04225 'exif-worldregiondest'             => 'World region shown',
04226 'exif-countrydest'                 => 'Country shown',
04227 'exif-countrycodedest'             => 'Code for country shown',
04228 'exif-provinceorstatedest'         => 'Province or state shown',
04229 'exif-citydest'                    => 'City shown',
04230 'exif-sublocationdest'             => 'Sublocation of city shown',
04231 'exif-objectname'                  => 'Short title',
04232 'exif-specialinstructions'         => 'Special instructions',
04233 'exif-headline'                    => 'Headline',
04234 'exif-credit'                      => 'Credit/Provider',
04235 'exif-source'                      => 'Source',
04236 'exif-editstatus'                  => 'Editorial status of image',
04237 'exif-urgency'                     => 'Urgency',
04238 'exif-fixtureidentifier'           => 'Fixture name',
04239 'exif-locationdest'                => 'Location depicted',
04240 'exif-locationdestcode'            => 'Code of location depicted',
04241 'exif-objectcycle'                 => 'Time of day that media is intended for',
04242 'exif-contact'                     => 'Contact information',
04243 'exif-writer'                      => 'Writer',
04244 'exif-languagecode'                => 'Language',
04245 'exif-iimversion'                  => 'IIM version',
04246 'exif-iimcategory'                 => 'Category',
04247 'exif-iimsupplementalcategory'     => 'Supplemental categories',
04248 'exif-datetimeexpires'             => 'Do not use after',
04249 'exif-datetimereleased'            => 'Released on',
04250 'exif-originaltransmissionref'     => 'Original transmission location code',
04251 'exif-identifier'                  => 'Identifier',
04252 'exif-lens'                        => 'Lens used',
04253 'exif-serialnumber'                => 'Serial number of camera',
04254 'exif-cameraownername'             => 'Owner of camera',
04255 'exif-label'                       => 'Label',
04256 'exif-datetimemetadata'            => 'Date metadata was last modified',
04257 'exif-nickname'                    => 'Informal name of image',
04258 'exif-rating'                      => 'Rating (out of 5)',
04259 'exif-rightscertificate'           => 'Rights management certificate',
04260 'exif-copyrighted'                 => 'Copyright status',
04261 'exif-copyrightowner'              => 'Copyright owner',
04262 'exif-usageterms'                  => 'Usage terms',
04263 'exif-webstatement'                => 'Online copyright statement',
04264 'exif-originaldocumentid'          => 'Unique ID of original document',
04265 'exif-licenseurl'                  => 'URL for copyright license',
04266 'exif-morepermissionsurl'          => 'Alternative licensing information',
04267 'exif-attributionurl'              => 'When re-using this work, please link to',
04268 'exif-preferredattributionname'    => 'When re-using this work, please credit',
04269 'exif-pngfilecomment'              => 'PNG file comment',
04270 'exif-disclaimer'                  => 'Disclaimer',
04271 'exif-contentwarning'              => 'Content warning',
04272 'exif-giffilecomment'              => 'GIF file comment',
04273 'exif-intellectualgenre'           => 'Type of item',
04274 'exif-subjectnewscode'             => 'Subject code',
04275 'exif-scenecode'                   => 'IPTC scene code',
04276 'exif-event'                       => 'Event depicted',
04277 'exif-organisationinimage'         => 'Organization depicted',
04278 'exif-personinimage'               => 'Person depicted',
04279 'exif-originalimageheight'         => 'Height of image before it was cropped',
04280 'exif-originalimagewidth'          => 'Width of image before it was cropped',
04281 
04282 # Make & model, can be wikified in order to link to the camera and model name
04283 'exif-make-value'             => '$1', # do not translate or duplicate this message to other languages
04284 'exif-model-value'            => '$1', # do not translate or duplicate this message to other languages
04285 'exif-software-value'         => '$1', # do not translate or duplicate this message to other languages
04286 'exif-software-version-value' => '$1 (Version $2)', # do not translate or duplicate this message to other languages
04287 'exif-contact-value'          => '$1
04288 
04289 $2
04290 <div class="adr">
04291 $3
04292 
04293 $4, $5, $6 $7
04294 </div>
04295 $8', # only translate this message to other languages if you have to change it
04296 'exif-subjectnewscode-value'  => '$2 ($1)', # only translate this message to other languages if you have to change it
04297 
04298 # Exif attributes
04299 'exif-compression-1'     => 'Uncompressed',
04300 'exif-compression-2'     => 'CCITT Group 3 1-Dimensional Modified Huffman run length encoding',
04301 'exif-compression-3'     => 'CCITT Group 3 fax encoding',
04302 'exif-compression-4'     => 'CCITT Group 4 fax encoding',
04303 'exif-compression-5'     => 'LZW', # only translate this message to other languages if you have to change it
04304 'exif-compression-6'     => 'JPEG (old)', # only translate this message to other languages if you have to change it
04305 'exif-compression-7'     => 'JPEG', # only translate this message to other languages if you have to change it
04306 'exif-compression-8'     => 'Deflate (Adobe)', # only translate this message to other languages if you have to change it
04307 'exif-compression-32773' => 'PackBits (Macintosh RLE)', # only translate this message to other languages if you have to change it
04308 'exif-compression-32946' => 'Deflate (PKZIP)', # only translate this message to other languages if you have to change it
04309 'exif-compression-34712' => 'JPEG2000', # only translate this message to other languages if you have to change it
04310 
04311 'exif-copyrighted-true'  => 'Copyrighted',
04312 'exif-copyrighted-false' => 'Copyright status not set',
04313 
04314 'exif-photometricinterpretation-2' => 'RGB', # only translate this message to other languages if you have to change it
04315 'exif-photometricinterpretation-6' => 'YCbCr', # only translate this message to other languages if you have to change it
04316 
04317 'exif-unknowndate' => 'Unknown date',
04318 
04319 'exif-orientation-1' => 'Normal',
04320 'exif-orientation-2' => 'Flipped horizontally',
04321 'exif-orientation-3' => 'Rotated 180°',
04322 'exif-orientation-4' => 'Flipped vertically',
04323 'exif-orientation-5' => 'Rotated 90° CCW and flipped vertically',
04324 'exif-orientation-6' => 'Rotated 90° CCW',
04325 'exif-orientation-7' => 'Rotated 90° CW and flipped vertically',
04326 'exif-orientation-8' => 'Rotated 90° CW',
04327 
04328 'exif-planarconfiguration-1' => 'chunky format',
04329 'exif-planarconfiguration-2' => 'planar format',
04330 
04331 'exif-xyresolution-i' => '$1 dpi', # only translate this message to other languages if you have to change it
04332 'exif-xyresolution-c' => '$1 dpc', # only translate this message to other languages if you have to change it
04333 
04334 'exif-colorspace-1'     => 'sRGB', # only translate this message to other languages if you have to change it
04335 'exif-colorspace-65535' => 'Uncalibrated',
04336 
04337 'exif-componentsconfiguration-0' => 'does not exist',
04338 'exif-componentsconfiguration-1' => 'Y', # only translate this message to other languages if you have to change it
04339 'exif-componentsconfiguration-2' => 'Cb', # only translate this message to other languages if you have to change it
04340 'exif-componentsconfiguration-3' => 'Cr', # only translate this message to other languages if you have to change it
04341 'exif-componentsconfiguration-4' => 'R', # only translate this message to other languages if you have to change it
04342 'exif-componentsconfiguration-5' => 'G', # only translate this message to other languages if you have to change it
04343 'exif-componentsconfiguration-6' => 'B', # only translate this message to other languages if you have to change it
04344 
04345 'exif-exposureprogram-0' => 'Not defined',
04346 'exif-exposureprogram-1' => 'Manual',
04347 'exif-exposureprogram-2' => 'Normal program',
04348 'exif-exposureprogram-3' => 'Aperture priority',
04349 'exif-exposureprogram-4' => 'Shutter priority',
04350 'exif-exposureprogram-5' => 'Creative program (biased toward depth of field)',
04351 'exif-exposureprogram-6' => 'Action program (biased toward fast shutter speed)',
04352 'exif-exposureprogram-7' => 'Portrait mode (for closeup photos with the background out of focus)',
04353 'exif-exposureprogram-8' => 'Landscape mode (for landscape photos with the background in focus)',
04354 
04355 'exif-subjectdistance-value' => '$1 meters',
04356 
04357 'exif-meteringmode-0'   => 'Unknown',
04358 'exif-meteringmode-1'   => 'Average',
04359 'exif-meteringmode-2'   => 'Center weighted average',
04360 'exif-meteringmode-3'   => 'Spot',
04361 'exif-meteringmode-4'   => 'Multi-Spot',
04362 'exif-meteringmode-5'   => 'Pattern',
04363 'exif-meteringmode-6'   => 'Partial',
04364 'exif-meteringmode-255' => 'Other',
04365 
04366 'exif-lightsource-0'   => 'Unknown',
04367 'exif-lightsource-1'   => 'Daylight',
04368 'exif-lightsource-2'   => 'Fluorescent',
04369 'exif-lightsource-3'   => 'Tungsten (incandescent light)',
04370 'exif-lightsource-4'   => 'Flash',
04371 'exif-lightsource-9'   => 'Fine weather',
04372 'exif-lightsource-10'  => 'Cloudy weather',
04373 'exif-lightsource-11'  => 'Shade',
04374 'exif-lightsource-12'  => 'Daylight fluorescent (D 5700 – 7100K)',
04375 'exif-lightsource-13'  => 'Day white fluorescent (N 4600 – 5400K)',
04376 'exif-lightsource-14'  => 'Cool white fluorescent (W 3900 – 4500K)',
04377 'exif-lightsource-15'  => 'White fluorescent (WW 3200 – 3700K)',
04378 'exif-lightsource-17'  => 'Standard light A',
04379 'exif-lightsource-18'  => 'Standard light B',
04380 'exif-lightsource-19'  => 'Standard light C',
04381 'exif-lightsource-20'  => 'D55', # only translate this message to other languages if you have to change it
04382 'exif-lightsource-21'  => 'D65', # only translate this message to other languages if you have to change it
04383 'exif-lightsource-22'  => 'D75', # only translate this message to other languages if you have to change it
04384 'exif-lightsource-23'  => 'D50', # only translate this message to other languages if you have to change it
04385 'exif-lightsource-24'  => 'ISO studio tungsten',
04386 'exif-lightsource-255' => 'Other light source',
04387 
04388 # Flash modes
04389 'exif-flash-fired-0'    => 'Flash did not fire',
04390 'exif-flash-fired-1'    => 'Flash fired',
04391 'exif-flash-return-0'   => 'no strobe return detection function',
04392 'exif-flash-return-2'   => 'strobe return light not detected',
04393 'exif-flash-return-3'   => 'strobe return light detected',
04394 'exif-flash-mode-1'     => 'compulsory flash firing',
04395 'exif-flash-mode-2'     => 'compulsory flash suppression',
04396 'exif-flash-mode-3'     => 'auto mode',
04397 'exif-flash-function-1' => 'No flash function',
04398 'exif-flash-redeye-1'   => 'red-eye reduction mode',
04399 
04400 'exif-focalplaneresolutionunit-2' => 'inches',
04401 
04402 'exif-sensingmethod-1' => 'Undefined',
04403 'exif-sensingmethod-2' => 'One-chip color area sensor',
04404 'exif-sensingmethod-3' => 'Two-chip color area sensor',
04405 'exif-sensingmethod-4' => 'Three-chip color area sensor',
04406 'exif-sensingmethod-5' => 'Color sequential area sensor',
04407 'exif-sensingmethod-7' => 'Trilinear sensor',
04408 'exif-sensingmethod-8' => 'Color sequential linear sensor',
04409 
04410 'exif-filesource-3' => 'Digital still camera',
04411 
04412 'exif-scenetype-1' => 'A directly photographed image',
04413 
04414 'exif-customrendered-0' => 'Normal process',
04415 'exif-customrendered-1' => 'Custom process',
04416 
04417 'exif-exposuremode-0' => 'Auto exposure',
04418 'exif-exposuremode-1' => 'Manual exposure',
04419 'exif-exposuremode-2' => 'Auto bracket',
04420 
04421 'exif-whitebalance-0' => 'Auto white balance',
04422 'exif-whitebalance-1' => 'Manual white balance',
04423 
04424 'exif-scenecapturetype-0' => 'Standard',
04425 'exif-scenecapturetype-1' => 'Landscape',
04426 'exif-scenecapturetype-2' => 'Portrait',
04427 'exif-scenecapturetype-3' => 'Night scene',
04428 
04429 'exif-gaincontrol-0' => 'None',
04430 'exif-gaincontrol-1' => 'Low gain up',
04431 'exif-gaincontrol-2' => 'High gain up',
04432 'exif-gaincontrol-3' => 'Low gain down',
04433 'exif-gaincontrol-4' => 'High gain down',
04434 
04435 'exif-contrast-0' => 'Normal',
04436 'exif-contrast-1' => 'Soft',
04437 'exif-contrast-2' => 'Hard',
04438 
04439 'exif-saturation-0' => 'Normal',
04440 'exif-saturation-1' => 'Low saturation',
04441 'exif-saturation-2' => 'High saturation',
04442 
04443 'exif-sharpness-0' => 'Normal',
04444 'exif-sharpness-1' => 'Soft',
04445 'exif-sharpness-2' => 'Hard',
04446 
04447 'exif-subjectdistancerange-0' => 'Unknown',
04448 'exif-subjectdistancerange-1' => 'Macro',
04449 'exif-subjectdistancerange-2' => 'Close view',
04450 'exif-subjectdistancerange-3' => 'Distant view',
04451 
04452 # Pseudotags used for GPSLatitudeRef and GPSDestLatitudeRef
04453 'exif-gpslatitude-n' => 'North latitude',
04454 'exif-gpslatitude-s' => 'South latitude',
04455 
04456 # Pseudotags used for GPSLongitudeRef and GPSDestLongitudeRef
04457 'exif-gpslongitude-e' => 'East longitude',
04458 'exif-gpslongitude-w' => 'West longitude',
04459 
04460 # Pseudotags used for GPSAltitudeRef
04461 'exif-gpsaltitude-above-sealevel' => '$1 {{PLURAL:$1|meter|meters}} above sea level',
04462 'exif-gpsaltitude-below-sealevel' => '$1 {{PLURAL:$1|meter|meters}} below sea level',
04463 
04464 'exif-gpsstatus-a' => 'Measurement in progress',
04465 'exif-gpsstatus-v' => 'Measurement interoperability',
04466 
04467 'exif-gpsmeasuremode-2' => '2-dimensional measurement',
04468 'exif-gpsmeasuremode-3' => '3-dimensional measurement',
04469 
04470 # Pseudotags used for GPSSpeedRef
04471 'exif-gpsspeed-k' => 'Kilometers per hour',
04472 'exif-gpsspeed-m' => 'Miles per hour',
04473 'exif-gpsspeed-n' => 'Knots',
04474 
04475 # Pseudotags used for GPSDestDistanceRef
04476 'exif-gpsdestdistance-k' => 'Kilometers',
04477 'exif-gpsdestdistance-m' => 'Miles',
04478 'exif-gpsdestdistance-n' => 'Nautical miles',
04479 
04480 'exif-gpsdop-excellent' => 'Excellent ($1)',
04481 'exif-gpsdop-good'      => 'Good ($1)',
04482 'exif-gpsdop-moderate'  => 'Moderate ($1)',
04483 'exif-gpsdop-fair'      => 'Fair ($1)',
04484 'exif-gpsdop-poor'      => 'Poor ($1)',
04485 
04486 'exif-objectcycle-a' => 'Morning only',
04487 'exif-objectcycle-p' => 'Evening only',
04488 'exif-objectcycle-b' => 'Both morning and evening',
04489 
04490 # Pseudotags used for GPSTrackRef, GPSImgDirectionRef and GPSDestBearingRef
04491 'exif-gpsdirection-t' => 'True direction',
04492 'exif-gpsdirection-m' => 'Magnetic direction',
04493 
04494 'exif-ycbcrpositioning-1' => 'Centered',
04495 'exif-ycbcrpositioning-2' => 'Co-sited',
04496 
04497 'exif-dc-contributor' => 'Contributors',
04498 'exif-dc-coverage'    => 'Spatial or temporal scope of media',
04499 'exif-dc-date'        => 'Date(s)',
04500 'exif-dc-publisher'   => 'Publisher',
04501 'exif-dc-relation'    => 'Related media',
04502 'exif-dc-rights'      => 'Rights',
04503 'exif-dc-source'      => 'Source media',
04504 'exif-dc-type'        => 'Type of media',
04505 
04506 'exif-rating-rejected' => 'Rejected',
04507 
04508 'exif-isospeedratings-overflow' => 'Greater than 65535',
04509 
04510 'exif-maxaperturevalue-value' => '$1 APEX (f/$2)', # only translate this message to other languages if you have to change it
04511 
04512 'exif-iimcategory-ace' => 'Arts, culture and entertainment',
04513 'exif-iimcategory-clj' => 'Crime and law',
04514 'exif-iimcategory-dis' => 'Disasters and accidents',
04515 'exif-iimcategory-fin' => 'Economy and business',
04516 'exif-iimcategory-edu' => 'Education',
04517 'exif-iimcategory-evn' => 'Environment',
04518 'exif-iimcategory-hth' => 'Health',
04519 'exif-iimcategory-hum' => 'Human interest',
04520 'exif-iimcategory-lab' => 'Labor',
04521 'exif-iimcategory-lif' => 'Lifestyle and leisure',
04522 'exif-iimcategory-pol' => 'Politics',
04523 'exif-iimcategory-rel' => 'Religion and belief',
04524 'exif-iimcategory-sci' => 'Science and technology',
04525 'exif-iimcategory-soi' => 'Social issues',
04526 'exif-iimcategory-spo' => 'Sports',
04527 'exif-iimcategory-war' => 'War, conflict and unrest',
04528 'exif-iimcategory-wea' => 'Weather',
04529 
04530 'exif-urgency-normal' => 'Normal ($1)',
04531 'exif-urgency-low'    => 'Low ($1)',
04532 'exif-urgency-high'   => 'High ($1)',
04533 'exif-urgency-other'  => 'User-defined priority ($1)',
04534 
04535 # External editor support
04536 'edit-externally'      => 'Edit this file using an external application',
04537 'edit-externally-help' => '(See the [https://www.mediawiki.org/wiki/Manual:External_editors setup instructions] for more information)',
04538 
04539 # 'all' in various places, this might be different for inflected languages
04540 'watchlistall2' => 'all',
04541 'namespacesall' => 'all',
04542 'monthsall'     => 'all',
04543 'limitall'      => 'all',
04544 
04545 # Email address confirmation
04546 'confirmemail'              => 'Confirm email address',
04547 'confirmemail_noemail'      => 'You do not have a valid email address set in your [[Special:Preferences|user preferences]].',
04548 'confirmemail_text'         => '{{SITENAME}} requires that you validate your email address before using email features.
04549 Activate the button below to send a confirmation mail to your address.
04550 The mail will include a link containing a code;
04551 load the link in your browser to confirm that your email address is valid.',
04552 'confirmemail_pending'      => 'A confirmation code has already been emailed to you;
04553 if you recently created your account, you may wish to wait a few minutes for it to arrive before trying to request a new code.',
04554 'confirmemail_send'         => 'Mail a confirmation code',
04555 'confirmemail_sent'         => 'Confirmation email sent.',
04556 'confirmemail_oncreate'     => 'A confirmation code was sent to your email address.
04557 This code is not required to log in, but you will need to provide it before enabling any email-based features in the wiki.',
04558 'confirmemail_sendfailed'   => '{{SITENAME}} could not send your confirmation mail.
04559 Please check your email address for invalid characters.
04560 
04561 Mailer returned: $1',
04562 'confirmemail_invalid'      => 'Invalid confirmation code.
04563 The code may have expired.',
04564 'confirmemail_needlogin'    => 'You need to $1 to confirm your email address.',
04565 'confirmemail_success'      => 'Your email address has been confirmed.
04566 You may now [[Special:UserLogin|log in]] and enjoy the wiki.',
04567 'confirmemail_loggedin'     => 'Your email address has now been confirmed.',
04568 'confirmemail_error'        => 'Something went wrong saving your confirmation.',
04569 'confirmemail_subject'      => '{{SITENAME}} email address confirmation',
04570 'confirmemail_body'         => 'Someone, probably you, from IP address $1,
04571 has registered an account "$2" with this email address on {{SITENAME}}.
04572 
04573 To confirm that this account really does belong to you and activate
04574 email features on {{SITENAME}}, open this link in your browser:
04575 
04576 $3
04577 
04578 If you did *not* register the account, follow this link
04579 to cancel the email address confirmation:
04580 
04581 $5
04582 
04583 This confirmation code will expire at $4.',
04584 'confirmemail_body_changed' => 'Someone, probably you, from IP address $1,
04585 has changed the email address of the account "$2" to this address on {{SITENAME}}.
04586 
04587 To confirm that this account really does belong to you and reactivate
04588 email features on {{SITENAME}}, open this link in your browser:
04589 
04590 $3
04591 
04592 If the account does *not* belong to you, follow this link
04593 to cancel the email address confirmation:
04594 
04595 $5
04596 
04597 This confirmation code will expire at $4.',
04598 'confirmemail_body_set'     => 'Someone, probably you, from IP address $1,
04599 has set the email address of the account "$2" to this address on {{SITENAME}}.
04600 
04601 To confirm that this account really does belong to you and activate
04602 email features on {{SITENAME}}, open this link in your browser:
04603 
04604 $3
04605 
04606 If the account does *not* belong to you, follow this link
04607 to cancel the email address confirmation:
04608 
04609 $5
04610 
04611 This confirmation code will expire at $4.',
04612 'confirmemail_invalidated'  => 'Email address confirmation canceled',
04613 'invalidateemail'           => 'Cancel email confirmation',
04614 
04615 # Scary transclusion
04616 'scarytranscludedisabled'          => '[Interwiki transcluding is disabled]',
04617 'scarytranscludefailed'            => '[Template fetch failed for $1]',
04618 'scarytranscludefailed-httpstatus' => '[Template fetch failed for $1: HTTP $2]',
04619 'scarytranscludetoolong'           => '[URL is too long]',
04620 
04621 # Delete conflict
04622 'deletedwhileediting'      => "'''Warning:''' This page was deleted after you started editing!",
04623 'confirmrecreate'          => "User [[User:$1|$1]] ([[User talk:$1|talk]]) deleted this page after you started editing with reason:
04624 : ''$2''
04625 Please confirm that you really want to recreate this page.",
04626 'confirmrecreate-noreason' => 'User [[User:$1|$1]] ([[User talk:$1|talk]]) deleted this page after you started editing. Please confirm that you really want to recreate this page.',
04627 'recreate'                 => 'Recreate',
04628 
04629 'unit-pixel' => 'px', # only translate this message to other languages if you have to change it
04630 
04631 # action=purge
04632 'confirm_purge_button' => 'OK',
04633 'confirm-purge-top'    => 'Clear the cache of this page?',
04634 'confirm-purge-bottom' => 'Purging a page clears the cache and forces the most current revision to appear.',
04635 
04636 # action=watch/unwatch
04637 'confirm-watch-button'   => 'OK',
04638 'confirm-watch-top'      => 'Add this page to your watchlist?',
04639 'confirm-unwatch-button' => 'OK',
04640 'confirm-unwatch-top'    => 'Remove this page from your watchlist?',
04641 
04642 # Separators for various lists, etc.
04643 'semicolon-separator' => ';&#32;', # only translate this message to other languages if you have to change it
04644 'comma-separator'     => ',&#32;', # only translate this message to other languages if you have to change it
04645 'colon-separator'     => ':&#32;', # only translate this message to other languages if you have to change it
04646 'autocomment-prefix'  => '', # do not translate or duplicate this message to other languages
04647 'pipe-separator'      => '&#32;|&#32;', # only translate this message to other languages if you have to change it
04648 'word-separator'      => '&#32;', # only translate this message to other languages if you have to change it
04649 'ellipsis'            => '...', # only translate this message to other languages if you have to change it
04650 'percent'             => '$1%', # only translate this message to other languages if you have to change it
04651 'parentheses'         => '($1)', # only translate this message to other languages if you have to change it
04652 'brackets'            => '[$1]', # only translate this message to other languages if you have to change it
04653 
04654 # Multipage image navigation
04655 'imgmultipageprev' => '← previous page',
04656 'imgmultipagenext' => 'next page →',
04657 'imgmultigo'       => 'Go!',
04658 'imgmultigoto'     => 'Go to page $1',
04659 
04660 # Table pager
04661 'ascending_abbrev'         => 'asc',
04662 'descending_abbrev'        => 'desc',
04663 'table_pager_next'         => 'Next page',
04664 'table_pager_prev'         => 'Previous page',
04665 'table_pager_first'        => 'First page',
04666 'table_pager_last'         => 'Last page',
04667 'table_pager_limit'        => 'Show $1 items per page',
04668 'table_pager_limit_label'  => 'Items per page:',
04669 'table_pager_limit_submit' => 'Go',
04670 'table_pager_empty'        => 'No results',
04671 
04672 # Auto-summaries
04673 'autosumm-blank'   => 'Blanked the page',
04674 'autosumm-replace' => 'Replaced content with "$1"',
04675 'autoredircomment' => 'Redirected page to [[$1]]',
04676 'autosumm-new'     => 'Created page with "$1"',
04677 
04678 # Autoblock whitelist
04679 'autoblock_whitelist' => 'AOL http://webmaster.info.aol.com/proxyinfo.html
04680 *64.12.96.0/19
04681 *149.174.160.0/20
04682 *152.163.240.0/21
04683 *152.163.248.0/22
04684 *152.163.252.0/23
04685 *152.163.96.0/22
04686 *152.163.100.0/23
04687 *195.93.32.0/22
04688 *195.93.48.0/22
04689 *195.93.64.0/19
04690 *195.93.96.0/19
04691 *195.93.16.0/20
04692 *198.81.0.0/22
04693 *198.81.16.0/20
04694 *198.81.8.0/23
04695 *202.67.64.128/25
04696 *205.188.192.0/20
04697 *205.188.208.0/23
04698 *205.188.112.0/20
04699 *205.188.146.144/30
04700 *207.200.112.0/21', # do not translate or duplicate this message to other languages
04701 
04702 # Size units
04703 'size-bytes'      => '$1 B', # only translate this message to other languages if you have to change it
04704 'size-kilobytes'  => '$1 KB', # only translate this message to other languages if you have to change it
04705 'size-megabytes'  => '$1 MB', # only translate this message to other languages if you have to change it
04706 'size-gigabytes'  => '$1 GB', # only translate this message to other languages if you have to change it
04707 'size-terabytes'  => '$1 TB', # only translate this message to other languages if you have to change it
04708 'size-petabytes'  => '$1 PB', # only translate this message to other languages if you have to change it
04709 'size-exabytes'   => '$1 EB', # only translate this message to other languages if you have to change it
04710 'size-zetabytes'  => '$1 ZB', # only translate this message to other languages if you have to change it
04711 'size-yottabytes' => '$1 YB', # only translate this message to other languages if you have to change it
04712 
04713 # Bitrate units
04714 'bitrate-bits'      => '$1 bps', # only translate this message to other languages if you have to change it
04715 'bitrate-kilobits'  => '$1 kbps', # only translate this message to other languages if you have to change it
04716 'bitrate-megabits'  => '$1 Mbps', # only translate this message to other languages if you have to change it
04717 'bitrate-gigabits'  => '$1 Gbps', # only translate this message to other languages if you have to change it
04718 'bitrate-terabits'  => '$1 Tbps', # only translate this message to other languages if you have to change it
04719 'bitrate-petabits'  => '$1 Pbps', # only translate this message to other languages if you have to change it
04720 'bitrate-exabits'   => '$1 Ebps', # only translate this message to other languages if you have to change it
04721 'bitrate-zetabits'  => '$1 Zbps', # only translate this message to other languages if you have to change it
04722 'bitrate-yottabits' => '$1 Ybps', # only translate this message to other languages if you have to change it
04723 
04724 # Live preview
04725 'livepreview-loading' => 'Loading...',
04726 'livepreview-ready'   => 'Loading... Ready!',
04727 'livepreview-failed'  => 'Live preview failed!
04728 Try normal preview.',
04729 'livepreview-error'   => 'Failed to connect: $1 "$2".
04730 Try normal preview.',
04731 
04732 # Friendlier slave lag warnings
04733 'lag-warn-normal' => 'Changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.',
04734 'lag-warn-high'   => 'Due to high database server lag, changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.',
04735 
04736 # Watchlist editor
04737 'editwatchlist-summary'        => '', # do not translate or duplicate this message to other languages
04738 'watchlistedit-numitems'       => 'Your watchlist contains {{PLURAL:$1|1 title|$1 titles}}, excluding talk pages.',
04739 'watchlistedit-noitems'        => 'Your watchlist contains no titles.',
04740 'watchlistedit-normal-title'   => 'Edit watchlist',
04741 'watchlistedit-normal-legend'  => 'Remove titles from watchlist',
04742 'watchlistedit-normal-explain' => 'Titles on your watchlist are shown below.
04743 To remove a title, check the box next to it, and click "{{int:Watchlistedit-normal-submit}}".
04744 You can also [[Special:EditWatchlist/raw|edit the raw list]].',
04745 'watchlistedit-normal-submit'  => 'Remove titles',
04746 'watchlistedit-normal-done'    => '{{PLURAL:$1|1 title was|$1 titles were}} removed from your watchlist:',
04747 'watchlistedit-raw-title'      => 'Edit raw watchlist',
04748 'watchlistedit-raw-legend'     => 'Edit raw watchlist',
04749 'watchlistedit-raw-explain'    => 'Titles on your watchlist are shown below, and can be edited by adding to and removing from the list;
04750 one title per line.
04751 When finished, click "{{int:Watchlistedit-raw-submit}}".
04752 You can also [[Special:EditWatchlist|use the standard editor]].',
04753 'watchlistedit-raw-titles'     => 'Titles:',
04754 'watchlistedit-raw-submit'     => 'Update watchlist',
04755 'watchlistedit-raw-done'       => 'Your watchlist has been updated.',
04756 'watchlistedit-raw-added'      => '{{PLURAL:$1|1 title was|$1 titles were}} added:',
04757 'watchlistedit-raw-removed'    => '{{PLURAL:$1|1 title was|$1 titles were}} removed:',
04758 
04759 # Watchlist editing tools
04760 'watchlisttools-view' => 'View relevant changes',
04761 'watchlisttools-edit' => 'View and edit watchlist',
04762 'watchlisttools-raw'  => 'Edit raw watchlist',
04763 
04764 # Iranian month names
04765 'iranian-calendar-m1'  => 'Farvardin', # only translate this message to other languages if you have to change it
04766 'iranian-calendar-m2'  => 'Ordibehesht', # only translate this message to other languages if you have to change it
04767 'iranian-calendar-m3'  => 'Khordad', # only translate this message to other languages if you have to change it
04768 'iranian-calendar-m4'  => 'Tir', # only translate this message to other languages if you have to change it
04769 'iranian-calendar-m5'  => 'Mordad', # only translate this message to other languages if you have to change it
04770 'iranian-calendar-m6'  => 'Shahrivar', # only translate this message to other languages if you have to change it
04771 'iranian-calendar-m7'  => 'Mehr', # only translate this message to other languages if you have to change it
04772 'iranian-calendar-m8'  => 'Aban', # only translate this message to other languages if you have to change it
04773 'iranian-calendar-m9'  => 'Azar', # only translate this message to other languages if you have to change it
04774 'iranian-calendar-m10' => 'Dey', # only translate this message to other languages if you have to change it
04775 'iranian-calendar-m11' => 'Bahman', # only translate this message to other languages if you have to change it
04776 'iranian-calendar-m12' => 'Esfand', # only translate this message to other languages if you have to change it
04777 
04778 # Hijri month names
04779 'hijri-calendar-m1'  => 'Muharram', # only translate this message to other languages if you have to change it
04780 'hijri-calendar-m2'  => 'Safar', # only translate this message to other languages if you have to change it
04781 'hijri-calendar-m3'  => "Rabi' al-awwal", # only translate this message to other languages if you have to change it
04782 'hijri-calendar-m4'  => "Rabi' al-thani", # only translate this message to other languages if you have to change it
04783 'hijri-calendar-m5'  => 'Jumada al-awwal', # only translate this message to other languages if you have to change it
04784 'hijri-calendar-m6'  => 'Jumada al-thani', # only translate this message to other languages if you have to change it
04785 'hijri-calendar-m7'  => 'Rajab', # only translate this message to other languages if you have to change it
04786 'hijri-calendar-m8'  => "Sha'aban", # only translate this message to other languages if you have to change it
04787 'hijri-calendar-m9'  => 'Ramadan', # only translate this message to other languages if you have to change it
04788 'hijri-calendar-m10' => 'Shawwal', # only translate this message to other languages if you have to change it
04789 'hijri-calendar-m11' => "Dhu al-Qi'dah", # only translate this message to other languages if you have to change it
04790 'hijri-calendar-m12' => 'Dhu al-Hijjah', # only translate this message to other languages if you have to change it
04791 
04792 # Hebrew month names
04793 'hebrew-calendar-m1'      => 'Tishrei', # only translate this message to other languages if you have to change it
04794 'hebrew-calendar-m2'      => 'Cheshvan', # only translate this message to other languages if you have to change it
04795 'hebrew-calendar-m3'      => 'Kislev', # only translate this message to other languages if you have to change it
04796 'hebrew-calendar-m4'      => 'Tevet', # only translate this message to other languages if you have to change it
04797 'hebrew-calendar-m5'      => 'Shevat', # only translate this message to other languages if you have to change it
04798 'hebrew-calendar-m6'      => 'Adar', # only translate this message to other languages if you have to change it
04799 'hebrew-calendar-m6a'     => 'Adar I', # only translate this message to other languages if you have to change it
04800 'hebrew-calendar-m6b'     => 'Adar II', # only translate this message to other languages if you have to change it
04801 'hebrew-calendar-m7'      => 'Nisan', # only translate this message to other languages if you have to change it
04802 'hebrew-calendar-m8'      => 'Iyar', # only translate this message to other languages if you have to change it
04803 'hebrew-calendar-m9'      => 'Sivan', # only translate this message to other languages if you have to change it
04804 'hebrew-calendar-m10'     => 'Tamuz', # only translate this message to other languages if you have to change it
04805 'hebrew-calendar-m11'     => 'Av', # only translate this message to other languages if you have to change it
04806 'hebrew-calendar-m12'     => 'Elul', # only translate this message to other languages if you have to change it
04807 'hebrew-calendar-m1-gen'  => 'Tishrei', # only translate this message to other languages if you have to change it
04808 'hebrew-calendar-m2-gen'  => 'Cheshvan', # only translate this message to other languages if you have to change it
04809 'hebrew-calendar-m3-gen'  => 'Kislev', # only translate this message to other languages if you have to change it
04810 'hebrew-calendar-m4-gen'  => 'Tevet', # only translate this message to other languages if you have to change it
04811 'hebrew-calendar-m5-gen'  => 'Shevat', # only translate this message to other languages if you have to change it
04812 'hebrew-calendar-m6-gen'  => 'Adar', # only translate this message to other languages if you have to change it
04813 'hebrew-calendar-m6a-gen' => 'Adar I', # only translate this message to other languages if you have to change it
04814 'hebrew-calendar-m6b-gen' => 'Adar II', # only translate this message to other languages if you have to change it
04815 'hebrew-calendar-m7-gen'  => 'Nisan', # only translate this message to other languages if you have to change it
04816 'hebrew-calendar-m8-gen'  => 'Iyar', # only translate this message to other languages if you have to change it
04817 'hebrew-calendar-m9-gen'  => 'Sivan', # only translate this message to other languages if you have to change it
04818 'hebrew-calendar-m10-gen' => 'Tamuz', # only translate this message to other languages if you have to change it
04819 'hebrew-calendar-m11-gen' => 'Av', # only translate this message to other languages if you have to change it
04820 'hebrew-calendar-m12-gen' => 'Elul', # only translate this message to other languages if you have to change it
04821 
04822 # Signatures
04823 'signature'      => '[[{{ns:user}}:$1|$2]] ([[{{ns:user_talk}}:$1|talk]])',
04824 'signature-anon' => '[[{{#special:Contributions}}/$1|$2]]', # do not translate or duplicate this message to other languages
04825 'timezone-utc'   => 'UTC', # only translate this message to other languages if you have to change it
04826 
04827 # Core parser functions
04828 'unknown_extension_tag' => 'Unknown extension tag "$1"',
04829 'duplicate-defaultsort' => '\'\'\'Warning:\'\'\' Default sort key "$2" overrides earlier default sort key "$1".',
04830 
04831 # Special:Version
04832 'version'                               => 'Version',
04833 'version-summary'                       => '', # do not translate or duplicate this message to other languages
04834 'version-extensions'                    => 'Installed extensions',
04835 'version-specialpages'                  => 'Special pages',
04836 'version-parserhooks'                   => 'Parser hooks',
04837 'version-variables'                     => 'Variables',
04838 'version-antispam'                      => 'Spam prevention',
04839 'version-skins'                         => 'Skins',
04840 'version-api'                           => 'API', # only translate this message to other languages if you have to change it
04841 'version-other'                         => 'Other',
04842 'version-mediahandlers'                 => 'Media handlers',
04843 'version-hooks'                         => 'Hooks',
04844 'version-parser-extensiontags'          => 'Parser extension tags',
04845 'version-parser-function-hooks'         => 'Parser function hooks',
04846 'version-hook-name'                     => 'Hook name',
04847 'version-hook-subscribedby'             => 'Subscribed by',
04848 'version-version'                       => '(Version $1)',
04849 'version-svn-revision'                  => '(r$2)', # only translate this message to other languages if you have to change it
04850 'version-license'                       => 'License',
04851 'version-poweredby-credits'             => "This wiki is powered by '''[https://www.mediawiki.org/ MediaWiki]''', copyright © 2001-$1 $2.",
04852 'version-poweredby-others'              => 'others',
04853 'version-poweredby-translators'         => 'translatewiki.net translators',
04854 'version-credits-summary'               => 'We would like to recognize the following persons for their contribution to [[Special:Version|MediaWiki]].',
04855 'version-license-info'                  => 'MediaWiki is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
04856 
04857 MediaWiki is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
04858 
04859 You should have received [{{SERVER}}{{SCRIPTPATH}}/COPYING a copy of the GNU General Public License] along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA or [//www.gnu.org/licenses/old-licenses/gpl-2.0.html read it online].',
04860 'version-software'                      => 'Installed software',
04861 'version-software-product'              => 'Product',
04862 'version-software-version'              => 'Version',
04863 'version-db-mysql-url'                  => 'http://www.mysql.com/', # do not translate or duplicate this message to other languages
04864 'version-db-mariadb-url'                => 'http://mariadb.org/', # do not translate or duplicate this message to other languages
04865 'version-db-percona-url'                => 'http://www.percona.com/software/percona-server', # do not translate or duplicate this message to other languages
04866 'version-db-postgres-url'               => 'http://www.postgresql.org/', # do not translate or duplicate this message to other languages
04867 'version-db-oracle-url'                 => 'http://www.oracle.com/database/', # do not translate or duplicate this message to other languages
04868 'version-db-sqlite-url'                 => 'http://www.sqlite.org/', # do not translate or duplicate this message to other languages
04869 'version-db-mssql-url'                  => 'http://www.microsoft.com/sql/', # do not translate or duplicate this message to other languages
04870 'version-entrypoints'                   => 'Entry point URLs',
04871 'version-entrypoints-header-entrypoint' => 'Entry point',
04872 'version-entrypoints-header-url'        => 'URL',
04873 'version-entrypoints-articlepath'       => '[https://www.mediawiki.org/wiki/Manual:$wgArticlePath Article path]', # only translate this message to other languages if you have to change it
04874 'version-entrypoints-scriptpath'        => '[https://www.mediawiki.org/wiki/Manual:$wgScriptPath Script path]', # only translate this message to other languages if you have to change it
04875 'version-entrypoints-index-php'         => '[https://www.mediawiki.org/wiki/Manual:index.php index.php]', # do not translate or duplicate this message to other languages
04876 'version-entrypoints-api-php'           => '[https://www.mediawiki.org/wiki/Manual:api.php api.php]', # do not translate or duplicate this message to other languages
04877 'version-entrypoints-load-php'          => '[https://www.mediawiki.org/wiki/Manual:load.php load.php]', # do not translate or duplicate this message to other languages
04878 
04879 # Special:Redirect
04880 'redirect'            => 'Redirect by file, user, or revision ID',
04881 'redirect-legend'     => 'Redirect to a file or page',
04882 'redirect-text'       => '', # do not translate or duplicate this message to other languages
04883 'redirect-summary'    => 'This special page redirects to a file (given the file name), a page (given a revision ID), or a user page (given a numeric user ID). Usage: [[{{#Special:Redirect}}/file/Example.jpg]], [[{{#Special:Redirect}}/revision/328429]], or [[{{#Special:Redirect}}/user/101]].',
04884 'redirect-submit'     => 'Go',
04885 'redirect-lookup'     => 'Lookup:',
04886 'redirect-value'      => 'Value:',
04887 'redirect-user'       => 'User ID',
04888 'redirect-revision'   => 'Page revision',
04889 'redirect-file'       => 'File name',
04890 'redirect-not-exists' => 'Value not found',
04891 
04892 # Special:FileDuplicateSearch
04893 'fileduplicatesearch'           => 'Search for duplicate files',
04894 'fileduplicatesearch-summary'   => 'Search for duplicate files based on hash values.',
04895 'fileduplicatesearch-legend'    => 'Search for a duplicate',
04896 'fileduplicatesearch-filename'  => 'Filename:',
04897 'fileduplicatesearch-submit'    => 'Search',
04898 'fileduplicatesearch-info'      => '$1 × $2 pixel<br />File size: $3<br />MIME type: $4',
04899 'fileduplicatesearch-result-1'  => 'The file "$1" has no identical duplication.',
04900 'fileduplicatesearch-result-n'  => 'The file "$1" has {{PLURAL:$2|1 identical duplication|$2 identical duplications}}.',
04901 'fileduplicatesearch-noresults' => 'No file named "$1" found.',
04902 
04903 # Special:SpecialPages
04904 'specialpages'                   => 'Special pages',
04905 'specialpages-summary'           => '', # do not translate or duplicate this message to other languages
04906 'specialpages-note'              => '----
04907 * Normal special pages.
04908 * <span class="mw-specialpagerestricted">Restricted special pages.</span>',
04909 'specialpages-group-maintenance' => 'Maintenance reports',
04910 'specialpages-group-other'       => 'Other special pages',
04911 'specialpages-group-login'       => 'Login / create account',
04912 'specialpages-group-changes'     => 'Recent changes and logs',
04913 'specialpages-group-media'       => 'Media reports and uploads',
04914 'specialpages-group-users'       => 'Users and rights',
04915 'specialpages-group-highuse'     => 'High use pages',
04916 'specialpages-group-pages'       => 'Lists of pages',
04917 'specialpages-group-pagetools'   => 'Page tools',
04918 'specialpages-group-wiki'        => 'Data and tools',
04919 'specialpages-group-redirects'   => 'Redirecting special pages',
04920 'specialpages-group-spam'        => 'Spam tools',
04921 
04922 # Special:BlankPage
04923 'blankpage'              => 'Blank page',
04924 'intentionallyblankpage' => 'This page is intentionally left blank.',
04925 
04926 # External image whitelist
04927 'external_image_whitelist' => ' #Leave this line exactly as it is<pre>
04928 #Put regular expression fragments (just the part that goes between the //) below
04929 #These will be matched with the URLs of external (hotlinked) images
04930 #Those that match will be displayed as images, otherwise only a link to the image will be shown
04931 #Lines beginning with # are treated as comments
04932 #This is case-insensitive
04933 
04934 #Put all regex fragments above this line. Leave this line exactly as it is</pre>',
04935 
04936 # Special:Tags
04937 'tags'                    => 'Valid change tags',
04938 'tags-summary'            => '', # do not translate or duplicate this message to other languages
04939 'tag-filter'              => '[[Special:Tags|Tag]] filter:',
04940 'tag-filter-submit'       => 'Filter',
04941 'tag-list-wrapper'        => '([[Special:Tags|{{PLURAL:$1|Tag|Tags}}]]: $2)',
04942 'tags-title'              => 'Tags',
04943 'tags-intro'              => 'This page lists the tags that the software may mark an edit with, and their meaning.',
04944 'tags-tag'                => 'Tag name',
04945 'tags-display-header'     => 'Appearance on change lists',
04946 'tags-description-header' => 'Full description of meaning',
04947 'tags-active-header'      => 'Active?',
04948 'tags-hitcount-header'    => 'Tagged changes',
04949 'tags-active-yes'         => 'Yes',
04950 'tags-active-no'          => 'No',
04951 'tags-edit'               => 'edit',
04952 'tags-hitcount'           => '$1 {{PLURAL:$1|change|changes}}',
04953 
04954 # Special:ComparePages
04955 'comparepages'                => 'Compare pages',
04956 'comparepages-summary'        => '', # do not translate or duplicate this message to other languages
04957 'compare-selector'            => 'Compare page revisions',
04958 'compare-page1'               => 'Page 1',
04959 'compare-page2'               => 'Page 2',
04960 'compare-rev1'                => 'Revision 1',
04961 'compare-rev2'                => 'Revision 2',
04962 'compare-submit'              => 'Compare',
04963 'compare-invalid-title'       => 'The title you specified is invalid.',
04964 'compare-title-not-exists'    => 'The title you specified does not exist.',
04965 'compare-revision-not-exists' => 'The revision you specified does not exist.',
04966 
04967 # Database error messages
04968 'dberr-header'      => 'This wiki has a problem',
04969 'dberr-problems'    => 'Sorry! This site is experiencing technical difficulties.',
04970 'dberr-again'       => 'Try waiting a few minutes and reloading.',
04971 'dberr-info'        => '(Cannot contact the database server: $1)',
04972 'dberr-info-hidden' => '(Cannot contact the database server)',
04973 'dberr-usegoogle'   => 'You can try searching via Google in the meantime.',
04974 'dberr-outofdate'   => 'Note that their indexes of our content may be out of date.',
04975 'dberr-cachederror' => 'This is a cached copy of the requested page, and may not be up to date.',
04976 
04977 # HTML forms
04978 'htmlform-invalid-input'       => 'There are problems with some of your input',
04979 'htmlform-select-badoption'    => 'The value you specified is not a valid option.',
04980 'htmlform-int-invalid'         => 'The value you specified is not an integer.',
04981 'htmlform-float-invalid'       => 'The value you specified is not a number.',
04982 'htmlform-int-toolow'          => 'The value you specified is below the minimum of $1',
04983 'htmlform-int-toohigh'         => 'The value you specified is above the maximum of $1',
04984 'htmlform-required'            => 'This value is required',
04985 'htmlform-submit'              => 'Submit',
04986 'htmlform-reset'               => 'Undo changes',
04987 'htmlform-selectorother-other' => 'Other',
04988 'htmlform-no'                  => 'No',
04989 'htmlform-yes'                 => 'Yes',
04990 'htmlform-chosen-placeholder'  => 'Select an option',
04991 
04992 # SQLite database support
04993 'sqlite-has-fts' => '$1 with full-text search support',
04994 'sqlite-no-fts'  => '$1 without full-text search support',
04995 
04996 # New logging system
04997 'logentry-delete-delete'              => '$1 {{GENDER:$2|deleted}} page $3',
04998 'logentry-delete-restore'             => '$1 {{GENDER:$2|restored}} page $3',
04999 'logentry-delete-event'               => '$1 {{GENDER:$2|changed}} visibility of {{PLURAL:$5|a log event|$5 log events}} on $3: $4',
05000 'logentry-delete-revision'            => '$1 {{GENDER:$2|changed}} visibility of {{PLURAL:$5|a revision|$5 revisions}} on page $3: $4',
05001 'logentry-delete-event-legacy'        => '$1 {{GENDER:$2|changed}} visibility of log events on $3',
05002 'logentry-delete-revision-legacy'     => '$1 {{GENDER:$2|changed}} visibility of revisions on page $3',
05003 'logentry-suppress-delete'            => '$1 {{GENDER:$2|suppressed}} page $3',
05004 'logentry-suppress-event'             => '$1 secretly {{GENDER:$2|changed}} visibility of {{PLURAL:$5|a log event|$5 log events}} on $3: $4',
05005 'logentry-suppress-revision'          => '$1 secretly {{GENDER:$2|changed}} visibility of {{PLURAL:$5|a revision|$5 revisions}} on page $3: $4',
05006 'logentry-suppress-event-legacy'      => '$1 secretly {{GENDER:$2|changed}} visibility of log events on $3',
05007 'logentry-suppress-revision-legacy'   => '$1 secretly {{GENDER:$2|changed}} visibility of revisions on page $3',
05008 'revdelete-content-hid'               => 'content hidden',
05009 'revdelete-summary-hid'               => 'edit summary hidden',
05010 'revdelete-uname-hid'                 => 'username hidden',
05011 'revdelete-content-unhid'             => 'content unhidden',
05012 'revdelete-summary-unhid'             => 'edit summary unhidden',
05013 'revdelete-uname-unhid'               => 'username unhidden',
05014 'revdelete-restricted'                => 'applied restrictions to administrators',
05015 'revdelete-unrestricted'              => 'removed restrictions for administrators',
05016 'logentry-move-move'                  => '$1 {{GENDER:$2|moved}} page $3 to $4',
05017 'logentry-move-move-noredirect'       => '$1 {{GENDER:$2|moved}} page $3 to $4 without leaving a redirect',
05018 'logentry-move-move_redir'            => '$1 {{GENDER:$2|moved}} page $3 to $4 over redirect',
05019 'logentry-move-move_redir-noredirect' => '$1 {{GENDER:$2|moved}} page $3 to $4 over a redirect without leaving a redirect',
05020 'logentry-patrol-patrol'              => '$1 {{GENDER:$2|marked}} revision $4 of page $3 patrolled',
05021 'logentry-patrol-patrol-auto'         => '$1 automatically {{GENDER:$2|marked}} revision $4 of page $3 patrolled',
05022 'logentry-newusers-newusers'          => 'User account $1 was {{GENDER:$2|created}}',
05023 'logentry-newusers-create'            => 'User account $1 was {{GENDER:$2|created}}',
05024 'logentry-newusers-create2'           => 'User account $3 was {{GENDER:$2|created}} by $1',
05025 'logentry-newusers-byemail'           => 'User account $3 was {{GENDER:$2|created}} by $1 and password was sent by email',
05026 'logentry-newusers-autocreate'        => 'User account $1 was {{GENDER:$2|created}} automatically',
05027 'logentry-rights-rights'              => '$1 {{GENDER:$2|changed}} group membership for $3 from $4 to $5',
05028 'logentry-rights-rights-legacy'       => '$1 {{GENDER:$2|changed}} group membership for $3',
05029 'logentry-rights-autopromote'         => '$1 was automatically {{GENDER:$2|promoted}} from $4 to $5',
05030 'rightsnone'                          => '(none)',
05031 
05032 # For IRC, see bug 34508. Do not change
05033 'revdelete-logentry'          => 'changed revision visibility of "[[$1]]"', # do not translate or duplicate this message to other languages
05034 'logdelete-logentry'          => 'changed event visibility of "[[$1]]"', # do not translate or duplicate this message to other languages
05035 'revdelete-content'           => 'content', # do not translate or duplicate this message to other languages
05036 'revdelete-summary'           => 'edit summary', # do not translate or duplicate this message to other languages
05037 'revdelete-uname'             => 'username', # do not translate or duplicate this message to other languages
05038 'revdelete-hid'               => 'hid $1', # do not translate or duplicate this message to other languages
05039 'revdelete-unhid'             => 'unhid $1', # do not translate or duplicate this message to other languages
05040 'revdelete-log-message'       => '$1 for $2 {{PLURAL:$2|revision|revisions}}', # do not translate or duplicate this message to other languages
05041 'logdelete-log-message'       => '$1 for $2 {{PLURAL:$2|event|events}}', # do not translate or duplicate this message to other languages
05042 'deletedarticle'              => 'deleted "[[$1]]"', # do not translate or duplicate this message to other languages
05043 'suppressedarticle'           => 'suppressed "[[$1]]"', # do not translate or duplicate this message to other languages
05044 'undeletedarticle'            => 'restored "[[$1]]"', # do not translate or duplicate this message to other languages
05045 'patrol-log-line'             => 'marked $1 of $2 patrolled $3', # do not translate or duplicate this message to other languages
05046 'patrol-log-auto'             => '(automatic)', # do not translate or duplicate this message to other languages
05047 'patrol-log-diff'             => 'revision $1', # do not translate or duplicate this message to other languages
05048 '1movedto2'                   => 'moved [[$1]] to [[$2]]', # do not translate or duplicate this message to other languages
05049 '1movedto2_redir'             => 'moved [[$1]] to [[$2]] over redirect', # do not translate or duplicate this message to other languages
05050 'move-redirect-suppressed'    => 'redirect suppressed', # do not translate or duplicate this message to other languages
05051 'newuserlog-create-entry'     => 'New user account', # do not translate or duplicate this message to other languages
05052 'newuserlog-create2-entry'    => 'created new account $1', # do not translate or duplicate this message to other languages
05053 'newuserlog-autocreate-entry' => 'Account created automatically', # do not translate or duplicate this message to other languages
05054 'rightslogentry'              => 'changed group membership for $1 from $2 to $3', # do not translate or duplicate this message to other languages
05055 'rightslogentry-autopromote'  => 'was automatically promoted from $2 to $3', # do not translate or duplicate this message to other languages
05056 
05057 # Feedback
05058 'feedback-bugornote' => 'If you are ready to describe a technical problem in detail please [$1 report a bug].
05059 Otherwise, you can use the easy form below. Your comment will be added to the page "[$3 $2]", along with your username.',
05060 'feedback-subject'   => 'Subject:',
05061 'feedback-message'   => 'Message:',
05062 'feedback-cancel'    => 'Cancel',
05063 'feedback-submit'    => 'Submit Feedback',
05064 'feedback-adding'    => 'Adding feedback to page...',
05065 'feedback-error1'    => 'Error: Unrecognized result from API',
05066 'feedback-error2'    => 'Error: Edit failed',
05067 'feedback-error3'    => 'Error: No response from API',
05068 'feedback-thanks'    => 'Thanks! Your feedback has been posted to the page "[$2 $1]".',
05069 'feedback-close'     => 'Done',
05070 'feedback-bugcheck'  => 'Great! Just check that it is not already one of the [$1 known bugs].',
05071 'feedback-bugnew'    => 'I checked. Report a new bug',
05072 
05073 # Search suggestions
05074 'searchsuggest-search'     => 'Search',
05075 'searchsuggest-containing' => 'containing...',
05076 
05077 # API errors
05078 'api-error-badaccess-groups'              => 'You are not permitted to upload files to this wiki.',
05079 'api-error-badtoken'                      => 'Internal error: Bad token.',
05080 'api-error-copyuploaddisabled'            => 'Uploading by URL is disabled on this server.',
05081 'api-error-duplicate'                     => 'There {{PLURAL:$1|is [$2 another file]|are [$2 some other files]}} already on the site with the same content.',
05082 'api-error-duplicate-archive'             => 'There {{PLURAL:$1|was [$2 another file]|were [$2 some other files]}} already on the site with the same content, but {{PLURAL:$1|it was|they were}} deleted.',
05083 'api-error-duplicate-archive-popup-title' => 'Duplicate {{PLURAL:$1|file that has|files that have}} already been deleted.',
05084 'api-error-duplicate-popup-title'         => 'Duplicate {{PLURAL:$1|file|files}}.',
05085 'api-error-empty-file'                    => 'The file you submitted was empty.',
05086 'api-error-emptypage'                     => 'Creating new, empty pages is not allowed.',
05087 'api-error-fetchfileerror'                => 'Internal error: Something went wrong while fetching the file.',
05088 'api-error-fileexists-forbidden'          => 'A file with name "$1" already exists, and cannot be overwritten.',
05089 'api-error-fileexists-shared-forbidden'   => 'A file with name "$1" already exists in the shared file repository, and cannot be overwritten.',
05090 'api-error-file-too-large'                => 'The file you submitted was too large.',
05091 'api-error-filename-tooshort'             => 'The filename is too short.',
05092 'api-error-filetype-banned'               => 'This type of file is banned.',
05093 'api-error-filetype-banned-type'          => '$1 {{PLURAL:$4|is not a permitted file type|are not permitted file types}}. Permitted {{PLURAL:$3|file type is|file types are}} $2.',
05094 'api-error-filetype-missing'              => 'The filename is missing an extension.',
05095 'api-error-hookaborted'                   => 'The modification you tried to make was aborted by an extension.',
05096 'api-error-http'                          => 'Internal error: Unable to connect to server.',
05097 'api-error-illegal-filename'              => 'The filename is not allowed.',
05098 'api-error-internal-error'                => 'Internal error: Something went wrong with processing your upload on the wiki.',
05099 'api-error-invalid-file-key'              => 'Internal error: File was not found in temporary storage.',
05100 'api-error-missingparam'                  => 'Internal error: Missing parameters on request.',
05101 'api-error-missingresult'                 => 'Internal error: Could not determine if the copy succeeded.',
05102 'api-error-mustbeloggedin'                => 'You must be logged in to upload files.',
05103 'api-error-mustbeposted'                  => 'Internal error: Request requires HTTP POST.',
05104 'api-error-noimageinfo'                   => 'The upload succeeded, but the server did not give us any information about the file.',
05105 'api-error-nomodule'                      => 'Internal error: No upload module set.',
05106 'api-error-ok-but-empty'                  => 'Internal error: No response from server.',
05107 'api-error-overwrite'                     => 'Overwriting an existing file is not allowed.',
05108 'api-error-stashfailed'                   => 'Internal error: Server failed to store temporary file.',
05109 'api-error-publishfailed'                 => 'Internal error: Server failed to publish temporary file.',
05110 'api-error-timeout'                       => 'The server did not respond within the expected time.',
05111 'api-error-unclassified'                  => 'An unknown error occurred.',
05112 'api-error-unknown-code'                  => 'Unknown error: "$1".',
05113 'api-error-unknown-error'                 => 'Internal error: Something went wrong when trying to upload your file.',
05114 'api-error-unknown-warning'               => 'Unknown warning: "$1".',
05115 'api-error-unknownerror'                  => 'Unknown error: "$1".',
05116 'api-error-uploaddisabled'                => 'Uploading is disabled on this wiki.',
05117 'api-error-verification-error'            => 'This file might be corrupt, or have the wrong extension.',
05118 
05119 # Durations
05120 'duration-seconds'   => '$1 {{PLURAL:$1|second|seconds}}',
05121 'duration-minutes'   => '$1 {{PLURAL:$1|minute|minutes}}',
05122 'duration-hours'     => '$1 {{PLURAL:$1|hour|hours}}',
05123 'duration-days'      => '$1 {{PLURAL:$1|day|days}}',
05124 'duration-weeks'     => '$1 {{PLURAL:$1|week|weeks}}',
05125 'duration-years'     => '$1 {{PLURAL:$1|year|years}}',
05126 'duration-decades'   => '$1 {{PLURAL:$1|decade|decades}}',
05127 'duration-centuries' => '$1 {{PLURAL:$1|century|centuries}}',
05128 'duration-millennia' => '$1 {{PLURAL:$1|millennium|millennia}}',
05129 
05130 # Image rotation
05131 'rotate-comment' => 'Image rotated by $1 {{PLURAL:$1|degree|degrees}} clockwise',
05132 
05133 # Limit report
05134 'limitreport-title'                        => 'Parser profiling data:',
05135 'limitreport-cputime'                      => 'CPU time usage',
05136 'limitreport-cputime-value'                => '$1 {{PLURAL:$1|second|seconds}}',
05137 'limitreport-walltime'                     => 'Real time usage',
05138 'limitreport-walltime-value'               => '$1 {{PLURAL:$1|second|seconds}}',
05139 'limitreport-ppvisitednodes'               => 'Preprocessor visited node count',
05140 'limitreport-ppvisitednodes-value'         => '$1/$2', # only translate this message to other languages if you have to change it
05141 'limitreport-ppgeneratednodes'             => 'Preprocessor generated node count',
05142 'limitreport-ppgeneratednodes-value'       => '$1/$2', # only translate this message to other languages if you have to change it
05143 'limitreport-postexpandincludesize'        => 'Post-expand include size',
05144 'limitreport-postexpandincludesize-value'  => '$1/$2 {{PLURAL:$2|byte|bytes}}',
05145 'limitreport-templateargumentsize'         => 'Template argument size',
05146 'limitreport-templateargumentsize-value'   => '$1/$2 {{PLURAL:$2|byte|bytes}}',
05147 'limitreport-expansiondepth'               => 'Highest expansion depth',
05148 'limitreport-expansiondepth-value'         => '$1/$2', # only translate this message to other languages if you have to change it
05149 'limitreport-expensivefunctioncount'       => 'Expensive parser function count',
05150 'limitreport-expensivefunctioncount-value' => '$1/$2', # only translate this message to other languages if you have to change it
05151 
05152 );