tag
*/
$capitalizeAllNouns = false;
/**
* Optional array mapping ASCII digits 0-9 to local digits.
*/
$digitTransformTable = null;
/**
* Transform table for decimal point '.' and thousands separator ','
*/
$separatorTransformTable = null;
/**
* Extra user preferences, which will be shown in Special:Preferences as
* checkboxes. Extra settings in derived languages will automatically be
* appended to the array of the fallback languages.
*/
$extraUserToggles = array();
/**
* URLs do not specify their encoding. UTF-8 is used by default, but if the
* URL is not a valid UTF-8 sequence, we have to try to guess what the real
* encoding is. The encoding used in this case is defined below, and must be
* supported by iconv().
*/
$fallback8bitEncoding = 'windows-1252';
/**
* To allow "foo[[bar]]" to extend the link over the whole word "foobar"
*/
$linkPrefixExtension = false;
/**
* Namespace names. NS_PROJECT is always set to $wgMetaNamespace after the
* settings are loaded, it will be ignored even if you specify it here.
*
* NS_PROJECT_TALK will be set to $wgMetaNamespaceTalk if that variable is
* set, otherwise the string specified here will be used. The string may
* contain "$1", which will be replaced by the name of NS_PROJECT. It may
* also contain a grammatical transformation, e.g.
*
* NS_PROJECT_TALK => 'Keskustelu_{{grammar:elative|$1}}'
*
* Only one grammatical transform may be specified in the string. For
* performance reasons, this transformation is done locally by the language
* module rather than by the full wikitext parser. As a result, no other
* parser features are available.
*/
$namespaceNames = array(
NS_MEDIA => 'Media',
NS_SPECIAL => 'Special',
NS_MAIN => '',
NS_TALK => 'Talk',
NS_USER => 'User',
NS_USER_TALK => 'User_talk',
# NS_PROJECT set by $wgMetaNamespace
NS_PROJECT_TALK => '$1_talk',
NS_FILE => 'File',
NS_FILE_TALK => 'File_talk',
NS_MEDIAWIKI => 'MediaWiki',
NS_MEDIAWIKI_TALK => 'MediaWiki_talk',
NS_TEMPLATE => 'Template',
NS_TEMPLATE_TALK => 'Template_talk',
NS_HELP => 'Help',
NS_HELP_TALK => 'Help_talk',
NS_CATEGORY => 'Category',
NS_CATEGORY_TALK => 'Category_talk',
);
/**
* Array of namespace aliases, mapping from name to NS_xxx index
*/
$namespaceAliases = array();
/**
* Array of gender specific. namespace aliases.
* Mapping NS_xxx to array of GENDERKEY to alias.
* Example:
$namespaceGenderAliases = array(
NS_USER => array( 'male' => 'Male_user', 'female' => 'Female_user' ),
);
*/
$namespaceGenderAliases = array();
/**
* A list of date format preference keys, which can be selected in user
* preferences. New preference keys can be added, provided they are supported
* by the language class's timeanddate(). Only the 5 keys listed below are
* supported by the wikitext converter (parser/DateFormatter.php).
*
* The special key "default" is an alias for either dmy or mdy depending on
* $wgAmericanDates
*/
$datePreferences = array(
'default',
'mdy',
'dmy',
'ymd',
'ISO 8601',
);
/**
* The date format to use for generated dates in the user interface.
* This may be one of the above date preferences, or the special value
* "dmy or mdy", which uses mdy if $wgAmericanDates is true, and dmy
* if $wgAmericanDates is false.
*/
$defaultDateFormat = 'dmy or mdy';
/**
* Associative array mapping old numeric date formats, which may still be
* stored in user preferences, to the new string formats.
*/
$datePreferenceMigrationMap = array(
'default',
'mdy',
'dmy',
'ymd'
);
/**
* These are formats for dates generated by MediaWiki (as opposed to the wikitext
* DateFormatter). Documentation for the format string can be found in
* Language.php, search for sprintfDate.
*
* This array is automatically inherited by all subclasses. Individual keys can be
* overridden.
*/
$dateFormats = array(
'mdy time' => 'H:i',
'mdy date' => 'F j, Y',
'mdy monthonly' => 'F Y',
'mdy both' => 'H:i, F j, Y',
'mdy pretty' => 'F j',
'dmy time' => 'H:i',
'dmy date' => 'j F Y',
'dmy monthonly' => 'F Y',
'dmy both' => 'H:i, j F Y',
'dmy pretty' => 'j F',
'ymd time' => 'H:i',
'ymd date' => 'Y F j',
'ymd monthonly' => 'Y F',
'ymd both' => 'H:i, Y F j',
'ymd pretty' => 'F j',
'ISO 8601 time' => 'xnH:xni:xns',
'ISO 8601 date' => 'xnY-xnm-xnd',
'ISO 8601 monthonly' => 'xnY-xnm',
'ISO 8601 both' => 'xnY-xnm-xnd"T"xnH:xni:xns',
'ISO 8601 pretty' => 'xnm-xnd'
);
/**
* Default list of book sources
*/
$bookstoreList = array(
'AddALL' => 'http://www.addall.com/New/Partner.cgi?query=$1&type=ISBN',
'PriceSCAN' => 'http://www.pricescan.com/books/bookDetail.asp?isbn=$1',
'Barnes & Noble' => 'http://search.barnesandnoble.com/bookSearch/isbnInquiry.asp?isbn=$1',
'Amazon.com' => 'http://www.amazon.com/gp/search/?field-isbn=$1'
);
/**
* Magic words
* Customizable syntax for wikitext and elsewhere.
*
* IDs must be valid identifiers, they cannot contain hyphens.
* CASE is 0 to match all case variants, 1 for case-sensitive
*
* Note to translators:
* Please include the English words as synonyms. This allows people
* from other wikis to contribute more easily.
*
* This array can be modified at runtime with the LanguageGetMagic hook
*/
$magicWords = array(
# ID CASE SYNONYMS
'redirect' => array( 0, '#REDIRECT' ),
'notoc' => array( 0, '__NOTOC__' ),
'nogallery' => array( 0, '__NOGALLERY__' ),
'forcetoc' => array( 0, '__FORCETOC__' ),
'toc' => array( 0, '__TOC__' ),
'noeditsection' => array( 0, '__NOEDITSECTION__' ),
'currentmonth' => array( 1, 'CURRENTMONTH', 'CURRENTMONTH2' ),
'currentmonth1' => array( 1, 'CURRENTMONTH1' ),
'currentmonthname' => array( 1, 'CURRENTMONTHNAME' ),
'currentmonthnamegen' => array( 1, 'CURRENTMONTHNAMEGEN' ),
'currentmonthabbrev' => array( 1, 'CURRENTMONTHABBREV' ),
'currentday' => array( 1, 'CURRENTDAY' ),
'currentday2' => array( 1, 'CURRENTDAY2' ),
'currentdayname' => array( 1, 'CURRENTDAYNAME' ),
'currentyear' => array( 1, 'CURRENTYEAR' ),
'currenttime' => array( 1, 'CURRENTTIME' ),
'currenthour' => array( 1, 'CURRENTHOUR' ),
'localmonth' => array( 1, 'LOCALMONTH', 'LOCALMONTH2' ),
'localmonth1' => array( 1, 'LOCALMONTH1' ),
'localmonthname' => array( 1, 'LOCALMONTHNAME' ),
'localmonthnamegen' => array( 1, 'LOCALMONTHNAMEGEN' ),
'localmonthabbrev' => array( 1, 'LOCALMONTHABBREV' ),
'localday' => array( 1, 'LOCALDAY' ),
'localday2' => array( 1, 'LOCALDAY2' ),
'localdayname' => array( 1, 'LOCALDAYNAME' ),
'localyear' => array( 1, 'LOCALYEAR' ),
'localtime' => array( 1, 'LOCALTIME' ),
'localhour' => array( 1, 'LOCALHOUR' ),
'numberofpages' => array( 1, 'NUMBEROFPAGES' ),
'numberofarticles' => array( 1, 'NUMBEROFARTICLES' ),
'numberoffiles' => array( 1, 'NUMBEROFFILES' ),
'numberofusers' => array( 1, 'NUMBEROFUSERS' ),
'numberofactiveusers' => array( 1, 'NUMBEROFACTIVEUSERS' ),
'numberofedits' => array( 1, 'NUMBEROFEDITS' ),
'numberofviews' => array( 1, 'NUMBEROFVIEWS' ),
'pagename' => array( 1, 'PAGENAME' ),
'pagenamee' => array( 1, 'PAGENAMEE' ),
'namespace' => array( 1, 'NAMESPACE' ),
'namespacee' => array( 1, 'NAMESPACEE' ),
'namespacenumber' => array( 1, 'NAMESPACENUMBER' ),
'talkspace' => array( 1, 'TALKSPACE' ),
'talkspacee' => array( 1, 'TALKSPACEE' ),
'subjectspace' => array( 1, 'SUBJECTSPACE', 'ARTICLESPACE' ),
'subjectspacee' => array( 1, 'SUBJECTSPACEE', 'ARTICLESPACEE' ),
'fullpagename' => array( 1, 'FULLPAGENAME' ),
'fullpagenamee' => array( 1, 'FULLPAGENAMEE' ),
'subpagename' => array( 1, 'SUBPAGENAME' ),
'subpagenamee' => array( 1, 'SUBPAGENAMEE' ),
'rootpagename' => array( 1, 'ROOTPAGENAME' ),
'rootpagenamee' => array( 1, 'ROOTPAGENAMEE' ),
'basepagename' => array( 1, 'BASEPAGENAME' ),
'basepagenamee' => array( 1, 'BASEPAGENAMEE' ),
'talkpagename' => array( 1, 'TALKPAGENAME' ),
'talkpagenamee' => array( 1, 'TALKPAGENAMEE' ),
'subjectpagename' => array( 1, 'SUBJECTPAGENAME', 'ARTICLEPAGENAME' ),
'subjectpagenamee' => array( 1, 'SUBJECTPAGENAMEE', 'ARTICLEPAGENAMEE' ),
'msg' => array( 0, 'MSG:' ),
'subst' => array( 0, 'SUBST:' ),
'safesubst' => array( 0, 'SAFESUBST:' ),
'msgnw' => array( 0, 'MSGNW:' ),
'img_thumbnail' => array( 1, 'thumbnail', 'thumb' ),
'img_manualthumb' => array( 1, 'thumbnail=$1', 'thumb=$1' ),
'img_right' => array( 1, 'right' ),
'img_left' => array( 1, 'left' ),
'img_none' => array( 1, 'none' ),
'img_width' => array( 1, '$1px' ),
'img_center' => array( 1, 'center', 'centre' ),
'img_framed' => array( 1, 'framed', 'enframed', 'frame' ),
'img_frameless' => array( 1, 'frameless' ),
'img_lang' => array( 1, 'lang=$1' ),
'img_page' => array( 1, 'page=$1', 'page $1' ),
'img_upright' => array( 1, 'upright', 'upright=$1', 'upright $1' ),
'img_border' => array( 1, 'border' ),
'img_baseline' => array( 1, 'baseline' ),
'img_sub' => array( 1, 'sub' ),
'img_super' => array( 1, 'super', 'sup' ),
'img_top' => array( 1, 'top' ),
'img_text_top' => array( 1, 'text-top' ),
'img_middle' => array( 1, 'middle' ),
'img_bottom' => array( 1, 'bottom' ),
'img_text_bottom' => array( 1, 'text-bottom' ),
'img_link' => array( 1, 'link=$1' ),
'img_alt' => array( 1, 'alt=$1' ),
'img_class' => array( 1, 'class=$1' ),
'int' => array( 0, 'INT:' ),
'sitename' => array( 1, 'SITENAME' ),
'ns' => array( 0, 'NS:' ),
'nse' => array( 0, 'NSE:' ),
'localurl' => array( 0, 'LOCALURL:' ),
'localurle' => array( 0, 'LOCALURLE:' ),
'articlepath' => array( 0, 'ARTICLEPATH' ),
'pageid' => array( 0, 'PAGEID' ),
'server' => array( 0, 'SERVER' ),
'servername' => array( 0, 'SERVERNAME' ),
'scriptpath' => array( 0, 'SCRIPTPATH' ),
'stylepath' => array( 0, 'STYLEPATH' ),
'grammar' => array( 0, 'GRAMMAR:' ),
'gender' => array( 0, 'GENDER:' ),
'notitleconvert' => array( 0, '__NOTITLECONVERT__', '__NOTC__' ),
'nocontentconvert' => array( 0, '__NOCONTENTCONVERT__', '__NOCC__' ),
'currentweek' => array( 1, 'CURRENTWEEK' ),
'currentdow' => array( 1, 'CURRENTDOW' ),
'localweek' => array( 1, 'LOCALWEEK' ),
'localdow' => array( 1, 'LOCALDOW' ),
'revisionid' => array( 1, 'REVISIONID' ),
'revisionday' => array( 1, 'REVISIONDAY' ),
'revisionday2' => array( 1, 'REVISIONDAY2' ),
'revisionmonth' => array( 1, 'REVISIONMONTH' ),
'revisionmonth1' => array( 1, 'REVISIONMONTH1' ),
'revisionyear' => array( 1, 'REVISIONYEAR' ),
'revisiontimestamp' => array( 1, 'REVISIONTIMESTAMP' ),
'revisionuser' => array( 1, 'REVISIONUSER' ),
'revisionsize' => array( 1, 'REVISIONSIZE' ),
'plural' => array( 0, 'PLURAL:' ),
'fullurl' => array( 0, 'FULLURL:' ),
'fullurle' => array( 0, 'FULLURLE:' ),
'canonicalurl' => array( 0, 'CANONICALURL:' ),
'canonicalurle' => array( 0, 'CANONICALURLE:' ),
'lcfirst' => array( 0, 'LCFIRST:' ),
'ucfirst' => array( 0, 'UCFIRST:' ),
'lc' => array( 0, 'LC:' ),
'uc' => array( 0, 'UC:' ),
'raw' => array( 0, 'RAW:' ),
'displaytitle' => array( 1, 'DISPLAYTITLE' ),
'rawsuffix' => array( 1, 'R' ),
'nocommafysuffix' => array( 0, 'NOSEP' ),
'newsectionlink' => array( 1, '__NEWSECTIONLINK__' ),
'nonewsectionlink' => array( 1, '__NONEWSECTIONLINK__' ),
'currentversion' => array( 1, 'CURRENTVERSION' ),
'urlencode' => array( 0, 'URLENCODE:' ),
'anchorencode' => array( 0, 'ANCHORENCODE' ),
'currenttimestamp' => array( 1, 'CURRENTTIMESTAMP' ),
'localtimestamp' => array( 1, 'LOCALTIMESTAMP' ),
'directionmark' => array( 1, 'DIRECTIONMARK', 'DIRMARK' ),
'language' => array( 0, '#LANGUAGE:' ),
'contentlanguage' => array( 1, 'CONTENTLANGUAGE', 'CONTENTLANG' ),
'pagesinnamespace' => array( 1, 'PAGESINNAMESPACE:', 'PAGESINNS:' ),
'numberofadmins' => array( 1, 'NUMBEROFADMINS' ),
'formatnum' => array( 0, 'FORMATNUM' ),
'padleft' => array( 0, 'PADLEFT' ),
'padright' => array( 0, 'PADRIGHT' ),
'special' => array( 0, 'special' ),
'speciale' => array( 0, 'speciale' ),
'defaultsort' => array( 1, 'DEFAULTSORT:', 'DEFAULTSORTKEY:', 'DEFAULTCATEGORYSORT:' ),
'filepath' => array( 0, 'FILEPATH:' ),
'tag' => array( 0, 'tag' ),
'hiddencat' => array( 1, '__HIDDENCAT__' ),
'pagesincategory' => array( 1, 'PAGESINCATEGORY', 'PAGESINCAT' ),
'pagesize' => array( 1, 'PAGESIZE' ),
'index' => array( 1, '__INDEX__' ),
'noindex' => array( 1, '__NOINDEX__' ),
'numberingroup' => array( 1, 'NUMBERINGROUP', 'NUMINGROUP' ),
'staticredirect' => array( 1, '__STATICREDIRECT__' ),
'protectionlevel' => array( 1, 'PROTECTIONLEVEL' ),
'formatdate' => array( 0, 'formatdate', 'dateformat' ),
'url_path' => array( 0, 'PATH' ),
'url_wiki' => array( 0, 'WIKI' ),
'url_query' => array( 0, 'QUERY' ),
'defaultsort_noerror' => array( 0, 'noerror' ),
'defaultsort_noreplace' => array( 0, 'noreplace' ),
'pagesincategory_all' => array( 0, 'all' ),
'pagesincategory_pages' => array( 0, 'pages' ),
'pagesincategory_subcats' => array( 0, 'subcats' ),
'pagesincategory_files' => array( 0, 'files' ),
);
/**
* Alternate names of special pages. All names are case-insensitive. The first
* listed alias will be used as the default. Aliases from the fallback
* localisation (usually English) will be included by default.
*
* This array may be altered at runtime using the LanguageGetSpecialPageAliases
* hook.
*/
$specialPageAliases = array(
'Activeusers' => array( 'ActiveUsers' ),
'Allmessages' => array( 'AllMessages' ),
'AllMyUploads' => array( 'AllMyUploads', 'AllMyFiles' ),
'Allpages' => array( 'AllPages' ),
'Ancientpages' => array( 'AncientPages' ),
'Badtitle' => array( 'Badtitle' ),
'Blankpage' => array( 'BlankPage' ),
'Block' => array( 'Block', 'BlockIP', 'BlockUser' ),
'Booksources' => array( 'BookSources' ),
'BrokenRedirects' => array( 'BrokenRedirects' ),
'Categories' => array( 'Categories' ),
'ChangeEmail' => array( 'ChangeEmail' ),
'ChangePassword' => array( 'ChangePassword', 'ResetPass', 'ResetPassword' ),
'ComparePages' => array( 'ComparePages' ),
'Confirmemail' => array( 'ConfirmEmail' ),
'Contributions' => array( 'Contributions', 'Contribs' ),
'CreateAccount' => array( 'CreateAccount' ),
'Deadendpages' => array( 'DeadendPages' ),
'DeletedContributions' => array( 'DeletedContributions' ),
'DoubleRedirects' => array( 'DoubleRedirects' ),
'EditWatchlist' => array( 'EditWatchlist' ),
'Emailuser' => array( 'EmailUser' ),
'Export' => array( 'Export' ),
'Fewestrevisions' => array( 'FewestRevisions' ),
'FileDuplicateSearch' => array( 'FileDuplicateSearch' ),
'Filepath' => array( 'FilePath' ),
'Import' => array( 'Import' ),
'Invalidateemail' => array( 'InvalidateEmail' ),
'JavaScriptTest' => array( 'JavaScriptTest' ),
'BlockList' => array( 'BlockList', 'ListBlocks', 'IPBlockList' ),
'LinkSearch' => array( 'LinkSearch' ),
'Listadmins' => array( 'ListAdmins' ),
'Listbots' => array( 'ListBots' ),
'Listfiles' => array( 'ListFiles', 'FileList', 'ImageList' ),
'Listgrouprights' => array( 'ListGroupRights', 'UserGroupRights' ),
'Listredirects' => array( 'ListRedirects' ),
'Listusers' => array( 'ListUsers', 'UserList' ),
'Lockdb' => array( 'LockDB' ),
'Log' => array( 'Log', 'Logs' ),
'Lonelypages' => array( 'LonelyPages', 'OrphanedPages' ),
'Longpages' => array( 'LongPages' ),
'MergeHistory' => array( 'MergeHistory' ),
'MIMEsearch' => array( 'MIMESearch' ),
'Mostcategories' => array( 'MostCategories' ),
'Mostimages' => array( 'MostLinkedFiles', 'MostFiles', 'MostImages' ),
'Mostinterwikis' => array( 'MostInterwikis' ),
'Mostlinked' => array( 'MostLinkedPages', 'MostLinked' ),
'Mostlinkedcategories' => array( 'MostLinkedCategories', 'MostUsedCategories' ),
'Mostlinkedtemplates' => array( 'MostLinkedTemplates', 'MostUsedTemplates' ),
'Mostrevisions' => array( 'MostRevisions' ),
'Movepage' => array( 'MovePage' ),
'Mycontributions' => array( 'MyContributions' ),
'Mypage' => array( 'MyPage' ),
'Mytalk' => array( 'MyTalk' ),
'Myuploads' => array( 'MyUploads', 'MyFiles' ),
'Newimages' => array( 'NewFiles', 'NewImages' ),
'Newpages' => array( 'NewPages' ),
'PagesWithProp' => array( 'PagesWithProp', 'Pageswithprop', 'PagesByProp', 'Pagesbyprop' ),
'PasswordReset' => array( 'PasswordReset' ),
'PermanentLink' => array( 'PermanentLink', 'PermaLink' ),
'Popularpages' => array( 'PopularPages' ),
'Preferences' => array( 'Preferences' ),
'Prefixindex' => array( 'PrefixIndex' ) ,
'Protectedpages' => array( 'ProtectedPages' ),
'Protectedtitles' => array( 'ProtectedTitles' ),
'Randompage' => array( 'Random', 'RandomPage' ),
'RandomInCategory' => array( 'RandomInCategory' ),
'Randomredirect' => array( 'RandomRedirect' ),
'Recentchanges' => array( 'RecentChanges' ),
'Recentchangeslinked' => array( 'RecentChangesLinked', 'RelatedChanges' ),
'Redirect' => array( 'Redirect' ),
'ResetTokens' => array( 'ResetTokens' ),
'Revisiondelete' => array( 'RevisionDelete' ),
'Search' => array( 'Search' ),
'Shortpages' => array( 'ShortPages' ),
'Specialpages' => array( 'SpecialPages' ),
'Statistics' => array( 'Statistics' ),
'Tags' => array( 'Tags' ),
'Unblock' => array( 'Unblock' ),
'Uncategorizedcategories' => array( 'UncategorizedCategories' ),
'Uncategorizedimages' => array( 'UncategorizedFiles', 'UncategorizedImages' ),
'Uncategorizedpages' => array( 'UncategorizedPages' ),
'Uncategorizedtemplates' => array( 'UncategorizedTemplates' ),
'Undelete' => array( 'Undelete' ),
'Unlockdb' => array( 'UnlockDB' ),
'Unusedcategories' => array( 'UnusedCategories' ),
'Unusedimages' => array( 'UnusedFiles', 'UnusedImages' ),
'Unusedtemplates' => array( 'UnusedTemplates' ),
'Unwatchedpages' => array( 'UnwatchedPages' ),
'Upload' => array( 'Upload' ),
'UploadStash' => array( 'UploadStash' ),
'Userlogin' => array( 'UserLogin', 'Login' ),
'Userlogout' => array( 'UserLogout', 'Logout' ),
'Userrights' => array( 'UserRights', 'MakeSysop', 'MakeBot' ),
'Version' => array( 'Version' ),
'Wantedcategories' => array( 'WantedCategories' ),
'Wantedfiles' => array( 'WantedFiles' ),
'Wantedpages' => array( 'WantedPages', 'BrokenLinks' ),
'Wantedtemplates' => array( 'WantedTemplates' ),
'Watchlist' => array( 'Watchlist' ),
'Whatlinkshere' => array( 'WhatLinksHere' ),
'Withoutinterwiki' => array( 'WithoutInterwiki' ),
);
/**
* Regular expression matching the "link trail", e.g. "ed" in [[Toast]]ed, as
* the first group, and the remainder of the string as the second group.
*/
$linkTrail = '/^([a-z]+)(.*)$/sD';
/**
* List of filenames for some ui images that can be overridden per language
* basis if needed.
*/
$imageFiles = array(
'button-bold' => 'button_bold.png',
'button-italic' => 'button_italic.png',
'button-link' => 'button_link.png',
'button-extlink' => 'button_extlink.png',
'button-headline' => 'button_headline.png',
'button-image' => 'button_image.png',
'button-media' => 'button_media.png',
'button-math' => 'button_math.png',
'button-nowiki' => 'button_nowiki.png',
'button-sig' => 'button_sig.png',
'button-hr' => 'button_hr.png',
);
/**
* A list of messages to preload for each request.
* Here we add messages that are needed for a typical anonymous parser cache hit.
*/
$preloadedMessages = array(
'aboutpage',
'aboutsite',
'accesskey-ca-edit',
'accesskey-ca-history',
'accesskey-ca-nstab-main',
'accesskey-ca-talk',
'accesskey-ca-view',
'accesskey-n-currentevents',
'accesskey-n-help',
'accesskey-n-mainpage-description',
'accesskey-n-portal',
'accesskey-n-randompage',
'accesskey-n-recentchanges',
'accesskey-p-logo',
'accesskey-pt-login',
'accesskey-search',
'accesskey-search-fulltext',
'accesskey-search-go',
'accesskey-t-permalink',
'accesskey-t-recentchangeslinked',
'accesskey-t-specialpages',
'accesskey-t-whatlinkshere',
'actions',
'anonnotice',
'currentevents',
'currentevents-url',
'disclaimerpage',
'disclaimers',
'edit',
'editsection',
'editsectionhint',
'help',
'helppage',
'interlanguage-link-title',
'jumpto',
'jumptonavigation',
'jumptosearch',
'lastmodifiedat',
'mainpage',
'mainpage-description',
'mainpage-nstab',
'namespaces',
'navigation',
'nav-login-createaccount',
'nstab-main',
'nstab-talk',
'opensearch-desc',
'pagecategories',
'pagecategorieslink',
'pagetitle',
'pagetitle-view-mainpage',
'permalink',
'personaltools',
'portal',
'portal-url',
'printableversion',
'privacy',
'privacypage',
'randompage',
'randompage-url',
'recentchanges',
'recentchangeslinked-toolbox',
'recentchanges-url',
'retrievedfrom',
'search',
'searcharticle',
'searchbutton',
'sidebar',
'navigation-heading',
'site-atom-feed',
'sitenotice',
'specialpages',
'tagline',
'talk',
'toolbox',
'tooltip-ca-edit',
'tooltip-ca-history',
'tooltip-ca-nstab-main',
'tooltip-ca-talk',
'tooltip-ca-view',
'tooltip-n-currentevents',
'tooltip-n-help',
'tooltip-n-mainpage-description',
'tooltip-n-portal',
'tooltip-n-randompage',
'tooltip-n-recentchanges',
'tooltip-p-logo',
'tooltip-p-navigation',
'tooltip-p-tb',
'tooltip-pt-login',
'tooltip-search',
'tooltip-search-fulltext',
'tooltip-search-go',
'tooltip-t-permalink',
'tooltip-t-recentchangeslinked',
'tooltip-t-specialpages',
'tooltip-t-whatlinkshere',
'variants',
'vector-view-edit',
'vector-view-history',
'vector-view-view',
'viewcount',
'views',
'whatlinkshere',
);
# -------------------------------------------------------------------
# Default messages
# -------------------------------------------------------------------
# Allowed characters in keys are: A-Z, a-z, 0-9, underscore (_) and
# hyphen (-). If you need more characters, you may be able to change
# the regex in MagicWord::initRegex
$messages = array(
/*
The sidebar for MonoBook is generated from this message, lines that do not
begin with * or ** are discarded, furthermore lines that do begin with ** and
do not contain | are also discarded, but do not depend on this behavior for
future releases. Also note that since each list value is wrapped in a unique
(X)HTML id it should only appear once and include characters that are legal
(X)HTML id names.
*/
'sidebar' => '
* navigation
** mainpage|mainpage-description
** recentchanges-url|recentchanges
** randompage-url|randompage
** helppage|help
* SEARCH
* TOOLBOX
* LANGUAGES', # do not translate or duplicate this message to other languages
# User preference toggles
'tog-underline' => 'Link underlining:',
'tog-justify' => 'Justify paragraphs',
'tog-hideminor' => 'Hide minor edits in recent changes',
'tog-hidepatrolled' => 'Hide patrolled edits in recent changes',
'tog-newpageshidepatrolled' => 'Hide patrolled pages from new page list',
'tog-extendwatchlist' => 'Expand watchlist to show all changes, not just the most recent',
'tog-usenewrc' => 'Group changes by page in recent changes and watchlist',
'tog-numberheadings' => 'Auto-number headings',
'tog-showtoolbar' => 'Show edit toolbar',
'tog-editondblclick' => 'Edit pages on double click',
'tog-editsection' => 'Enable section editing via [edit] links',
'tog-editsectiononrightclick' => 'Enable section editing by right clicking on section titles',
'tog-showtoc' => 'Show table of contents (for pages with more than 3 headings)',
'tog-rememberpassword' => 'Remember my login on this browser (for a maximum of $1 {{PLURAL:$1|day|days}})',
'tog-watchcreations' => 'Add pages I create and files I upload to my watchlist',
'tog-watchdefault' => 'Add pages and files I edit to my watchlist',
'tog-watchmoves' => 'Add pages and files I move to my watchlist',
'tog-watchdeletion' => 'Add pages and files I delete to my watchlist',
'tog-minordefault' => 'Mark all edits minor by default',
'tog-previewontop' => 'Show preview before edit box',
'tog-previewonfirst' => 'Show preview on first edit',
'tog-nocache' => 'Disable browser page caching',
'tog-enotifwatchlistpages' => 'Email me when a page or file on my watchlist is changed',
'tog-enotifusertalkpages' => 'Email me when my user talk page is changed',
'tog-enotifminoredits' => 'Email me also for minor edits of pages and files',
'tog-enotifrevealaddr' => 'Reveal my email address in notification emails',
'tog-shownumberswatching' => 'Show the number of watching users',
'tog-oldsig' => 'Existing signature:',
'tog-fancysig' => 'Treat signature as wikitext (without an automatic link)',
'tog-uselivepreview' => 'Use live preview (experimental)',
'tog-forceeditsummary' => 'Prompt me when entering a blank edit summary',
'tog-watchlisthideown' => 'Hide my edits from the watchlist',
'tog-watchlisthidebots' => 'Hide bot edits from the watchlist',
'tog-watchlisthideminor' => 'Hide minor edits from the watchlist',
'tog-watchlisthideliu' => 'Hide edits by logged in users from the watchlist',
'tog-watchlisthideanons' => 'Hide edits by anonymous users from the watchlist',
'tog-watchlisthidepatrolled' => 'Hide patrolled edits from the watchlist',
'tog-ccmeonemails' => 'Send me copies of emails I send to other users',
'tog-diffonly' => 'Do not show page content below diffs',
'tog-showhiddencats' => 'Show hidden categories',
'tog-noconvertlink' => 'Disable link title conversion', # only translate this message to other languages if you have to change it
'tog-norollbackdiff' => 'Omit diff after performing a rollback',
'tog-useeditwarning' => 'Warn me when I leave an edit page with unsaved changes',
'tog-prefershttps' => 'Always use a secure connection when logged in',
'underline-always' => 'Always',
'underline-never' => 'Never',
'underline-default' => 'Skin or browser default',
# Font style option in Special:Preferences
'editfont-style' => 'Edit area font style:',
'editfont-default' => 'Browser default',
'editfont-monospace' => 'Monospaced font',
'editfont-sansserif' => 'Sans-serif font',
'editfont-serif' => 'Serif font',
# Dates
'sunday' => 'Sunday',
'monday' => 'Monday',
'tuesday' => 'Tuesday',
'wednesday' => 'Wednesday',
'thursday' => 'Thursday',
'friday' => 'Friday',
'saturday' => 'Saturday',
'sun' => 'Sun',
'mon' => 'Mon',
'tue' => 'Tue',
'wed' => 'Wed',
'thu' => 'Thu',
'fri' => 'Fri',
'sat' => 'Sat',
'january' => 'January',
'february' => 'February',
'march' => 'March',
'april' => 'April',
'may_long' => 'May',
'june' => 'June',
'july' => 'July',
'august' => 'August',
'september' => 'September',
'october' => 'October',
'november' => 'November',
'december' => 'December',
'january-gen' => 'January',
'february-gen' => 'February',
'march-gen' => 'March',
'april-gen' => 'April',
'may-gen' => 'May',
'june-gen' => 'June',
'july-gen' => 'July',
'august-gen' => 'August',
'september-gen' => 'September',
'october-gen' => 'October',
'november-gen' => 'November',
'december-gen' => 'December',
'jan' => 'Jan',
'feb' => 'Feb',
'mar' => 'Mar',
'apr' => 'Apr',
'may' => 'May',
'jun' => 'Jun',
'jul' => 'Jul',
'aug' => 'Aug',
'sep' => 'Sep',
'oct' => 'Oct',
'nov' => 'Nov',
'dec' => 'Dec',
'january-date' => 'January $1',
'february-date' => 'February $1',
'march-date' => 'March $1',
'april-date' => 'April $1',
'may-date' => 'May $1',
'june-date' => 'June $1',
'july-date' => 'July $1',
'august-date' => 'August $1',
'september-date' => 'September $1',
'october-date' => 'October $1',
'november-date' => 'November $1',
'december-date' => 'December $1',
# Categories related messages
'pagecategories' => '{{PLURAL:$1|Category|Categories}}',
'pagecategorieslink' => 'Special:Categories', # do not translate or duplicate this message to other languages
'category_header' => 'Pages in category "$1"',
'subcategories' => 'Subcategories',
'category-media-header' => 'Media in category "$1"',
'category-empty' => "''This category currently contains no pages or media.''",
'hidden-categories' => '{{PLURAL:$1|Hidden category|Hidden categories}}',
'hidden-category-category' => 'Hidden categories',
'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.}}',
'category-subcat-count-limited' => 'This category has the following {{PLURAL:$1|subcategory|$1 subcategories}}.',
'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.}}',
'category-article-count-limited' => 'The following {{PLURAL:$1|page is|$1 pages are}} in the current category.',
'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.}}',
'category-file-count-limited' => 'The following {{PLURAL:$1|file is|$1 files are}} in the current category.',
'listingcontinuesabbrev' => 'cont.',
'index-category' => 'Indexed pages',
'noindex-category' => 'Noindexed pages',
'broken-file-category' => 'Pages with broken file links',
'categoryviewer-pagedlinks' => '($1) ($2)', # only translate this message to other languages if you have to change it
'linkprefix' => '/^((?>.*(? 'About',
'article' => 'Content page',
'newwindow' => '(opens in new window)',
'cancel' => 'Cancel',
'moredotdotdot' => 'More...',
'morenotlisted' => 'This list is not complete.',
'mypage' => 'Page',
'mytalk' => 'Talk',
'anontalk' => 'Talk for this IP address',
'navigation' => 'Navigation',
'and' => ' and',
# Cologne Blue skin
'qbfind' => 'Find',
'qbbrowse' => 'Browse',
'qbedit' => 'Edit',
'qbpageoptions' => 'This page',
'qbmyoptions' => 'My pages',
'qbspecialpages' => 'Special pages',
'faq' => 'FAQ',
'faqpage' => 'Project:FAQ',
'sitetitle' => '{{SITENAME}}', # do not translate or duplicate this message to other languages
'sitesubtitle' => '', # do not translate or duplicate this message to other languages
# Vector skin
'vector-action-addsection' => 'Add topic',
'vector-action-delete' => 'Delete',
'vector-action-move' => 'Move',
'vector-action-protect' => 'Protect',
'vector-action-undelete' => 'Undelete',
'vector-action-unprotect' => 'Change protection',
'vector-simplesearch-preference' => 'Enable simplified search bar (Vector skin only)',
'vector-view-create' => 'Create',
'vector-view-edit' => 'Edit',
'vector-view-history' => 'View history',
'vector-view-view' => 'Read',
'vector-view-viewsource' => 'View source',
'actions' => 'Actions',
'namespaces' => 'Namespaces',
'variants' => 'Variants',
'navigation-heading' => 'Navigation menu',
'errorpagetitle' => 'Error',
'returnto' => 'Return to $1.',
'tagline' => 'From {{SITENAME}}',
'help' => 'Help',
'search' => 'Search',
'searchbutton' => 'Search',
'go' => 'Go',
'searcharticle' => 'Go',
'history' => 'Page history',
'history_short' => 'History',
'updatedmarker' => 'updated since my last visit',
'printableversion' => 'Printable version',
'permalink' => 'Permanent link',
'print' => 'Print',
'view' => 'View',
'edit' => 'Edit',
'create' => 'Create',
'editthispage' => 'Edit this page',
'create-this-page' => 'Create this page',
'delete' => 'Delete',
'deletethispage' => 'Delete this page',
'undeletethispage' => 'Undelete this page',
'undelete_short' => 'Undelete {{PLURAL:$1|one edit|$1 edits}}',
'viewdeleted_short' => 'View {{PLURAL:$1|one deleted edit|$1 deleted edits}}',
'protect' => 'Protect',
'protect_change' => 'change',
'protectthispage' => 'Protect this page',
'unprotect' => 'Change protection',
'unprotectthispage' => 'Change protection of this page',
'newpage' => 'New page',
'talkpage' => 'Discuss this page',
'talkpagelinktext' => 'Talk',
'specialpage' => 'Special page',
'personaltools' => 'Personal tools',
'postcomment' => 'New section',
'addsection' => '+', # do not translate or duplicate this message to other languages
'articlepage' => 'View content page',
'talk' => 'Discussion',
'views' => 'Views',
'toolbox' => 'Tools',
'userpage' => 'View user page',
'projectpage' => 'View project page',
'imagepage' => 'View file page',
'mediawikipage' => 'View message page',
'templatepage' => 'View template page',
'viewhelppage' => 'View help page',
'categorypage' => 'View category page',
'viewtalkpage' => 'View discussion',
'otherlanguages' => 'In other languages',
'redirectedfrom' => '(Redirected from $1)',
'redirectpagesub' => 'Redirect page',
'talkpageheader' => '-', # do not translate or duplicate this message to other languages
'lastmodifiedat' => 'This page was last modified on $1, at $2.',
'viewcount' => 'This page has been accessed {{PLURAL:$1|once|$1 times}}.',
'protectedpage' => 'Protected page',
'jumpto' => 'Jump to:',
'jumptonavigation' => 'navigation',
'jumptosearch' => 'search',
'view-pool-error' => 'Sorry, the servers are overloaded at the moment.
Too many users are trying to view this page.
Please wait a while before you try to access this page again.
$1',
'pool-timeout' => 'Timeout waiting for the lock',
'pool-queuefull' => 'Pool queue is full',
'pool-errorunknown' => 'Unknown error',
# 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).
'aboutsite' => 'About {{SITENAME}}',
'aboutpage' => 'Project:About',
'copyright' => 'Content is available under $1 unless otherwise noted.',
'copyrightpage' => '{{ns:project}}:Copyrights',
'currentevents' => 'Current events',
'currentevents-url' => 'Project:Current events',
'disclaimers' => 'Disclaimers',
'disclaimerpage' => 'Project:General disclaimer',
'edithelp' => 'Editing help',
'edithelppage' => 'https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Editing_pages', # do not translate or duplicate this message to other languages
'helppage' => 'https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents',
'mainpage' => 'Main Page',
'mainpage-description' => 'Main page',
'policy-url' => 'Project:Policy',
'portal' => 'Community portal',
'portal-url' => 'Project:Community portal',
'privacy' => 'Privacy policy',
'privacypage' => 'Project:Privacy policy',
'badaccess' => 'Permission error',
'badaccess-group0' => 'You are not allowed to execute the action you have requested.',
'badaccess-groups' => 'The action you have requested is limited to users in {{PLURAL:$2|the group|one of the groups}}: $1.',
'versionrequired' => 'Version $1 of MediaWiki required',
'versionrequiredtext' => 'Version $1 of MediaWiki is required to use this page.
See [[Special:Version|version page]].',
'ok' => 'OK',
'pagetitle' => '$1 - {{SITENAME}}', # only translate this message to other languages if you have to change it
'pagetitle-view-mainpage' => '{{SITENAME}}', # only translate this message to other languages if you have to change it
'backlinksubtitle' => '← $1', # only translate this message to other languages if you have to change it
'retrievedfrom' => 'Retrieved from "$1"',
'youhavenewmessages' => 'You have $1 ($2).',
'newmessageslink' => 'new messages',
'newmessagesdifflink' => 'last change',
'youhavenewmessagesfromusers' => 'You have $1 from {{PLURAL:$3|another user|$3 users}} ($2).',
'youhavenewmessagesmanyusers' => 'You have $1 from many users ($2).',
'newmessageslinkplural' => '{{PLURAL:$1|a new message|new messages}}',
'newmessagesdifflinkplural' => 'last {{PLURAL:$1|change|changes}}',
'youhavenewmessagesmulti' => 'You have new messages on $1',
'newtalkseparator' => ', ', # do not translate or duplicate this message to other languages
'editsection' => 'edit',
'editold' => 'edit',
'viewsourceold' => 'view source',
'editlink' => 'edit',
'viewsourcelink' => 'view source',
'editsectionhint' => 'Edit section: $1',
'toc' => 'Contents',
'showtoc' => 'show',
'hidetoc' => 'hide',
'collapsible-collapse' => 'Collapse',
'collapsible-expand' => 'Expand',
'thisisdeleted' => 'View or restore $1?',
'viewdeleted' => 'View $1?',
'restorelink' => '{{PLURAL:$1|one deleted edit|$1 deleted edits}}',
'feedlinks' => 'Feed:',
'feed-invalid' => 'Invalid subscription feed type.',
'feed-unavailable' => 'Syndication feeds are not available',
'site-rss-feed' => '$1 RSS feed',
'site-atom-feed' => '$1 Atom feed',
'page-rss-feed' => '"$1" RSS feed',
'page-atom-feed' => '"$1" Atom feed',
'feed-atom' => 'Atom', # only translate this message to other languages if you have to change it
'feed-rss' => 'RSS', # only translate this message to other languages if you have to change it
'sitenotice' => '-', # do not translate or duplicate this message to other languages
'anonnotice' => '-', # do not translate or duplicate this message to other languages
'newsectionheaderdefaultlevel' => '== $1 ==', # do not translate or duplicate this message to other languages
'red-link-title' => '$1 (page does not exist)',
'sort-descending' => 'Sort descending',
'sort-ascending' => 'Sort ascending',
'interlanguage-link-title' => '$1 – $2', # only translate this message to other languages if you have to change it
# Short words for each namespace, by default used in the namespace tab in monobook
'nstab-main' => 'Page',
'nstab-user' => 'User page',
'nstab-media' => 'Media page',
'nstab-special' => 'Special page',
'nstab-project' => 'Project page',
'nstab-image' => 'File',
'nstab-mediawiki' => 'Message',
'nstab-template' => 'Template',
'nstab-help' => 'Help page',
'nstab-category' => 'Category',
'mainpage-nstab' => '', # do not translate or duplicate this message to other languages
# Main script and global functions
'nosuchaction' => 'No such action',
'nosuchactiontext' => 'The action specified by the URL is invalid.
You might have mistyped the URL, or followed an incorrect link.
This might also indicate a bug in the software used by {{SITENAME}}.',
'nosuchspecialpage' => 'No such special page',
'nospecialpagetext' => 'You have requested an invalid special page.
A list of valid special pages can be found at [[Special:SpecialPages|{{int:specialpages}}]].',
# General errors
'error' => 'Error',
'databaseerror' => 'Database error',
'databaseerror-text' => 'A database query error has occurred.
This may indicate a bug in the software.',
'databaseerror-textcl' => 'A database query error has occurred.',
'databaseerror-query' => 'Query: $1',
'databaseerror-function' => 'Function: $1',
'databaseerror-error' => 'Error: $1',
'laggedslavemode' => "'''Warning:''' Page may not contain recent updates.",
'readonly' => 'Database locked',
'enterlockreason' => 'Enter a reason for the lock, including an estimate of when the lock will be released',
'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.
The administrator who locked it offered this explanation: $1',
'missing-article' => 'The database did not find the text of a page that it should have found, named "$1" $2.
This is usually caused by following an outdated diff or history link to a page that has been deleted.
If this is not the case, you may have found a bug in the software.
Please report this to an [[Special:ListUsers/sysop|administrator]], making note of the URL.',
'missingarticle-rev' => '(revision#: $1)',
'missingarticle-diff' => '(Diff: $1, $2)',
'readonly_lag' => 'The database has been automatically locked while the slave database servers catch up to the master',
'internalerror' => 'Internal error',
'internalerror_info' => 'Internal error: $1',
'fileappenderrorread' => 'Could not read "$1" during append.',
'fileappenderror' => 'Could not append "$1" to "$2".',
'filecopyerror' => 'Could not copy file "$1" to "$2".',
'filerenameerror' => 'Could not rename file "$1" to "$2".',
'filedeleteerror' => 'Could not delete file "$1".',
'directorycreateerror' => 'Could not create directory "$1".',
'filenotfound' => 'Could not find file "$1".',
'fileexistserror' => 'Unable to write to file "$1": File exists.',
'unexpected' => 'Unexpected value: "$1"="$2".',
'formerror' => 'Error: Could not submit form.',
'badarticleerror' => 'This action cannot be performed on this page.',
'cannotdelete' => 'The page or file "$1" could not be deleted.
It may have already been deleted by someone else.',
'cannotdelete-title' => 'Cannot delete page "$1"',
'delete-hook-aborted' => 'Deletion aborted by hook.
It gave no explanation.',
'no-null-revision' => 'Could not create new null revision for page "$1"',
'badtitle' => 'Bad title',
'badtitletext' => 'The requested page title was invalid, empty, or an incorrectly linked inter-language or inter-wiki title.
It may contain one or more characters that cannot be used in titles.',
'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.',
'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.',
'querypage-no-updates' => 'Updates for this page are currently disabled.
Data here will not presently be refreshed.',
'wrong_wfQuery_params' => 'Incorrect parameters to wfQuery()
Function: $1
Query: $2',
'viewsource' => 'View source',
'viewsource-title' => 'View source for $1',
'actionthrottled' => 'Action throttled',
'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.
Please try again in a few minutes.',
'protectedpagetext' => 'This page has been protected to prevent editing or other actions.',
'viewsourcetext' => 'You can view and copy the source of this page:',
'viewyourtext' => "You can view and copy the source of '''your edits''' to this page:",
'protectedinterface' => 'This page provides interface text for the software on this wiki, and is protected to prevent abuse.
To add or change translations for all wikis, please use [//translatewiki.net/ translatewiki.net], the MediaWiki localisation project.',
'editinginterface' => "'''Warning:''' You are editing a page that is used to provide interface text for the software.
Changes to this page will affect the appearance of the user interface for other users on this wiki.
To add or change translations for all wikis, please use [//translatewiki.net/ translatewiki.net], the MediaWiki localisation project.",
'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:
$2',
'namespaceprotected' => "You do not have permission to edit pages in the '''$1''' namespace.",
'customcssprotected' => "You do not have permission to edit this CSS page because it contains another user's personal settings.",
'customjsprotected' => "You do not have permission to edit this JavaScript page because it contains another user's personal settings.",
'mycustomcssprotected' => 'You do not have permission to edit this CSS page.',
'mycustomjsprotected' => 'You do not have permission to edit this JavaScript page.',
'myprivateinfoprotected' => 'You do not have permission to edit your private information.',
'mypreferencesprotected' => 'You do not have permission to edit your preferences.',
'ns-specialprotected' => 'Special pages cannot be edited.',
'titleprotected' => 'This title has been protected from creation by [[User:$1|$1]].
The reason given is "\'\'$2\'\'".',
'filereadonlyerror' => 'Unable to modify the file "$1" because the file repository "$2" is in read-only mode.
The administrator who locked it offered this explanation: "$3".',
'invalidtitle-knownnamespace' => 'Invalid title with namespace "$2" and text "$3"',
'invalidtitle-unknownnamespace' => 'Invalid title with unknown namespace number $1 and text "$2"',
'exception-nologin' => 'Not logged in',
'exception-nologin-text' => 'Please [[Special:Userlogin|log in]] to be able to access this page or action.',
# Virus scanner
'virus-badscanner' => "Bad configuration: Unknown virus scanner: ''$1''",
'virus-scanfailed' => 'scan failed (code $1)',
'virus-unknownscanner' => 'unknown antivirus:',
# Login and logout pages
'logouttext' => "'''You are now logged out.'''
Note that some pages may continue to be displayed as if you were still logged in, until you clear your browser cache.",
'welcomeuser' => 'Welcome, $1!',
'welcomecreation-msg' => 'Your account has been created.
You can change your {{SITENAME}} [[Special:Preferences|preferences]] if you wish.',
'yourname' => 'Username:',
'userlogin-yourname' => 'Username',
'userlogin-yourname-ph' => 'Enter your username',
'createacct-another-username-ph' => 'Enter the username',
'createacct-helpusername' => '', # do not translate or duplicate this message to other languages
'yourpassword' => 'Password:',
'userlogin-yourpassword' => 'Password',
'userlogin-yourpassword-ph' => 'Enter your password',
'createacct-yourpassword-ph' => 'Enter a password',
'yourpasswordagain' => 'Retype password:',
'createacct-yourpasswordagain' => 'Confirm password',
'createacct-yourpasswordagain-ph' => 'Enter password again',
'remembermypassword' => 'Remember my login on this browser (for a maximum of $1 {{PLURAL:$1|day|days}})',
'userlogin-remembermypassword' => 'Keep me logged in',
'userlogin-signwithsecure' => 'Use secure connection',
'yourdomainname' => 'Your domain:',
'password-change-forbidden' => 'You cannot change passwords on this wiki.',
'externaldberror' => 'There was either an authentication database error or you are not allowed to update your external account.',
'login' => 'Log in',
'nav-login-createaccount' => 'Log in / create account',
'loginprompt' => 'You must have cookies enabled to log in to {{SITENAME}}.',
'userlogin' => 'Log in / create account',
'userloginnocreate' => 'Log in',
'logout' => 'Log out',
'userlogout' => 'Log out',
'userlogout-summary' => '', # do not translate or duplicate this message to other languages
'notloggedin' => 'Not logged in',
'userlogin-noaccount' => "Don't have an account?",
'userlogin-joinproject' => 'Join {{SITENAME}}',
'nologin' => "Don't have an account? $1.",
'nologinlink' => 'Create an account',
'createaccount' => 'Create account',
'gotaccount' => 'Already have an account? $1.',
'gotaccountlink' => 'Log in',
'userlogin-resetlink' => 'Forgotten your login details?',
'userlogin-resetpassword-link' => 'Forgot your password?',
'helplogin-url' => 'https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Logging_in',
'userlogin-helplink2' => 'Help with logging in',
'userlogin-loggedin' => 'You are already logged in as {{GENDER:$1|$1}}.
Use the form below to log in as another user.',
'userlogin-createanother' => 'Create another account',
'createacct-join' => 'Enter your information below.',
'createacct-another-join' => "Enter the new account's information below.",
'createacct-emailrequired' => 'Email address',
'createacct-emailoptional' => 'Email address (optional)',
'createacct-email-ph' => 'Enter your email address',
'createacct-another-email-ph' => 'Enter email address',
'createaccountmail' => 'Use a temporary random password and send it to the specified email address',
'createacct-realname' => 'Real name (optional)',
'createaccountreason' => 'Reason:',
'createacct-reason' => 'Reason',
'createacct-reason-ph' => 'Why you are creating another account',
'createacct-captcha' => 'Security check',
'createacct-imgcaptcha-help' => '', # do not translate or duplicate this message to other languages
'createacct-imgcaptcha-ph' => 'Enter the text you see above',
'createacct-submit' => 'Create your account',
'createacct-another-submit' => 'Create another account',
'createacct-benefit-heading' => '{{SITENAME}} is made by people like you.',
'createacct-benefit-icon1' => 'icon-edits', # do not translate or duplicate this message to other languages
'createacct-benefit-head1' => '{{NUMBEROFEDITS}}', # do not translate or duplicate this message to other languages
'createacct-benefit-body1' => '{{PLURAL:$1|edit|edits}}',
'createacct-benefit-icon2' => 'icon-pages', # do not translate or duplicate this message to other languages
'createacct-benefit-head2' => '{{NUMBEROFARTICLES}}', # do not translate or duplicate this message to other languages
'createacct-benefit-body2' => '{{PLURAL:$1|page|pages}}',
'createacct-benefit-icon3' => 'icon-contributors', # do not translate or duplicate this message to other languages
'createacct-benefit-head3' => '{{NUMBEROFACTIVEUSERS}}', # do not translate or duplicate this message to other languages
'createacct-benefit-body3' => 'recent {{PLURAL:$1|contributor|contributors}}',
'badretype' => 'The passwords you entered do not match.',
'userexists' => 'Username entered already in use.
Please choose a different name.',
'loginerror' => 'Login error',
'createacct-error' => 'Account creation error',
'createaccounterror' => 'Could not create account: $1',
'nocookiesnew' => 'The user account was created, but you are not logged in.
{{SITENAME}} uses cookies to log in users.
You have cookies disabled.
Please enable them, then log in with your new username and password.',
'nocookieslogin' => '{{SITENAME}} uses cookies to log in users.
You have cookies disabled.
Please enable them and try again.',
'nocookiesfornew' => 'The user account was not created, as we could not confirm its source.
Ensure you have cookies enabled, reload this page and try again.',
'nocookiesforlogin' => '{{int:nocookieslogin}}', # only translate this message to other languages if you have to change it
'noname' => 'You have not specified a valid username.',
'loginsuccesstitle' => 'Login successful',
'loginsuccess' => "'''You are now logged in to {{SITENAME}} as \"\$1\".'''",
'nosuchuser' => 'There is no user by the name "$1".
Usernames are case sensitive.
Check your spelling, or [[Special:UserLogin/signup|create a new account]].',
'nosuchusershort' => 'There is no user by the name "$1".
Check your spelling.',
'nouserspecified' => 'You have to specify a username.',
'login-userblocked' => 'This user is blocked. Login not allowed.',
'wrongpassword' => 'Incorrect password entered.
Please try again.',
'wrongpasswordempty' => 'Password entered was blank.
Please try again.',
'passwordtooshort' => 'Passwords must be at least {{PLURAL:$1|1 character|$1 characters}}.',
'password-name-match' => 'Your password must be different from your username.',
'password-login-forbidden' => 'The use of this username and password has been forbidden.',
'mailmypassword' => 'Email new password',
'passwordremindertitle' => 'New temporary password for {{SITENAME}}',
'passwordremindertext' => 'Someone (probably you, from IP address $1) requested a new
password for {{SITENAME}} ($4). A temporary password for user
"$2" has been created and was set to "$3". If this was your
intent, you will need to log in and choose a new password now.
Your temporary password will expire in {{PLURAL:$5|one day|$5 days}}.
If someone else made this request, or if you have remembered your password,
and you no longer wish to change it, you may ignore this message and
continue using your old password.',
'noemail' => 'There is no email address recorded for user "$1".',
'noemailcreate' => 'You need to provide a valid email address.',
'passwordsent' => 'A new password has been sent to the email address registered for "$1".
Please log in again after you receive it.',
'blocked-mailpassword' => 'Your IP address is blocked from editing, and so is not allowed to use the password recovery function to prevent abuse.',
'eauthentsent' => 'A confirmation email has been sent to the specified email address.
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.',
'throttled-mailpassword' => 'A password reset email has already been sent, within the last {{PLURAL:$1|hour|$1 hours}}.
To prevent abuse, only one password reset email will be sent per {{PLURAL:$1|hour|$1 hours}}.',
'loginstart' => '', # do not translate or duplicate this message to other languages
'loginend' => '', # do not translate or duplicate this message to other languages
'loginend-https' => '', # do not translate or duplicate this message to other languages
'signupstart' => '{{int:loginstart}}', # do not translate or duplicate this message to other languages
'signupend' => '{{int:loginend}}', # do not translate or duplicate this message to other languages
'signupend-https' => '', # do not translate or duplicate this message to other languages
'mailerror' => 'Error sending mail: $1',
'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.
As a result, visitors using this IP address cannot create any more accounts at the moment.',
'emailauthenticated' => 'Your email address was confirmed on $2 at $3.',
'emailnotauthenticated' => 'Your email address is not yet confirmed.
No email will be sent for any of the following features.',
'noemailprefs' => 'Specify an email address in your preferences for these features to work.',
'emailconfirmlink' => 'Confirm your email address',
'invalidemailaddress' => 'The email address cannot be accepted as it appears to have an invalid format.
Please enter a well-formatted address or empty that field.',
'cannotchangeemail' => 'Account email addresses cannot be changed on this wiki.',
'emaildisabled' => 'This site cannot send emails.',
'accountcreated' => 'Account created',
'accountcreatedtext' => 'The user account for [[{{ns:User}}:$1|$1]] ([[{{ns:User talk}}:$1|talk]]) has been created.',
'createaccount-title' => 'Account creation for {{SITENAME}}',
'createaccount-text' => 'Someone created an account for your email address on {{SITENAME}} ($4) named "$2", with password "$3".
You should log in and change your password now.
You may ignore this message, if this account was created in error.',
'usernamehasherror' => 'Username cannot contain hash characters',
'login-throttled' => 'You have made too many recent login attempts.
Please wait $1 before trying again.',
'login-abort-generic' => 'Your login was unsuccessful - Aborted',
'loginlanguagelabel' => 'Language: $1',
'loginlanguagelinks' => '* {{#language:de}}|de
* {{#language:en}}|en
* {{#language:eo}}|eo
* {{#language:fr}}|fr
* {{#language:es}}|es
* {{#language:it}}|it
* {{#language:nl}}|nl', # do not translate or duplicate this message to other languages
'suspicious-userlogout' => 'Your request to log out was denied because it looks like it was sent by a broken browser or caching proxy.',
'createacct-another-realname-tip' => 'Real name is optional.
If you choose to provide it, this will be used for giving the user attribution for their work.',
# Email sending
'pear-mail-error' => '$1', # do not translate or duplicate this message to other languages
'php-mail-error' => '$1', # do not translate or duplicate this message to other languages
'php-mail-error-unknown' => "Unknown error in PHP's mail() function.",
'user-mail-no-addy' => 'Tried to send email without an email address.',
'user-mail-no-body' => 'Tried to send email with an empty or unreasonably short body.',
# Change password dialog
'resetpass' => 'Change password',
'resetpass_announce' => 'You logged in with a temporary emailed code.
To finish logging in, you must set a new password here:',
'resetpass_text' => '', # only translate this message to other languages if you have to change it
'resetpass_header' => 'Change account password',
'oldpassword' => 'Old password:',
'newpassword' => 'New password:',
'retypenew' => 'Retype new password:',
'resetpass_submit' => 'Set password and log in',
'changepassword-success' => 'Your password has been changed successfully!',
'resetpass_forbidden' => 'Passwords cannot be changed',
'resetpass-no-info' => 'You must be logged in to access this page directly.',
'resetpass-submit-loggedin' => 'Change password',
'resetpass-submit-cancel' => 'Cancel',
'resetpass-wrong-oldpass' => 'Invalid temporary or current password.
You may have already successfully changed your password or requested a new temporary password.',
'resetpass-temp-password' => 'Temporary password:',
'resetpass-abort-generic' => 'Password change has been aborted by an extension.',
# Special:PasswordReset
'passwordreset' => 'Reset password',
'passwordreset-text-one' => 'Complete this form to reset your password.',
'passwordreset-text-many' => '{{PLURAL:$1|Fill one of the fields to reset your password.}}',
'passwordreset-legend' => 'Reset password',
'passwordreset-disabled' => 'Password resets have been disabled on this wiki.',
'passwordreset-emaildisabled' => 'Email features have been disabled on this wiki.',
'passwordreset-username' => 'Username:',
'passwordreset-domain' => 'Domain:',
'passwordreset-capture' => 'View the resulting email?',
'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.',
'passwordreset-email' => 'Email address:',
'passwordreset-emailtitle' => 'Account details on {{SITENAME}}',
'passwordreset-emailtext-ip' => 'Someone (probably you, from IP address $1) requested a reset of your
password for {{SITENAME}} ($4). The following user {{PLURAL:$3|account is|accounts are}}
associated with this email address:
$2
{{PLURAL:$3|This temporary password|These temporary passwords}} will expire in {{PLURAL:$5|one day|$5 days}}.
You should log in and choose a new password now. If someone else made this
request, or if you have remembered your original password, and you no longer
wish to change it, you may ignore this message and continue using your old
password.',
'passwordreset-emailtext-user' => 'User $1 on {{SITENAME}} requested a reset of your password for {{SITENAME}}
($4). The following user {{PLURAL:$3|account is|accounts are}} associated with this email address:
$2
{{PLURAL:$3|This temporary password|These temporary passwords}} will expire in {{PLURAL:$5|one day|$5 days}}.
You should log in and choose a new password now. If someone else made this
request, or if you have remembered your original password, and you no longer
wish to change it, you may ignore this message and continue using your old
password.',
'passwordreset-emailelement' => 'Username: $1
Temporary password: $2',
'passwordreset-emailsent' => 'A password reset email has been sent.',
'passwordreset-emailsent-capture' => 'A password reset email has been sent, which is shown below.',
'passwordreset-emailerror-capture' => 'A password reset email was generated, which is shown below, but sending it to the {{GENDER:$2|user}} failed: $1',
# Special:ChangeEmail
'changeemail' => 'Change email address',
'changeemail-summary' => '', # do not translate or duplicate this message to other languages
'changeemail-header' => 'Change account email address',
'changeemail-text' => 'Complete this form to change your email address. You will need to enter your password to confirm this change.',
'changeemail-no-info' => 'You must be logged in to access this page directly.',
'changeemail-oldemail' => 'Current email address:',
'changeemail-newemail' => 'New email address:',
'changeemail-none' => '(none)',
'changeemail-password' => 'Your {{SITENAME}} password:',
'changeemail-submit' => 'Change email',
'changeemail-cancel' => 'Cancel',
# Special:ResetTokens
'resettokens' => 'Reset tokens',
'resettokens-summary' => '', # do not translate or duplicate this message to other languages
'resettokens-text' => 'You can reset tokens which allow access to certain private data associated with your account here.
You should do it if you accidentally shared them with someone or if your account has been compromised.',
'resettokens-no-tokens' => 'There are no tokens to reset.',
'resettokens-legend' => 'Reset tokens',
'resettokens-tokens' => 'Tokens:',
'resettokens-token-label' => '$1 (current value: $2)',
'resettokens-watchlist-token' => 'Token for the web feed (Atom/RSS) of [[Special:Watchlist|changes to pages on your watchlist]]',
'resettokens-done' => 'Tokens reset.',
'resettokens-resetbutton' => 'Reset selected tokens',
# Edit page toolbar
'bold_sample' => 'Bold text',
'bold_tip' => 'Bold text',
'italic_sample' => 'Italic text',
'italic_tip' => 'Italic text',
'link_sample' => 'Link title',
'link_tip' => 'Internal link',
'extlink_sample' => 'http://www.example.com link title',
'extlink_tip' => 'External link (remember http:// prefix)',
'headline_sample' => 'Headline text',
'headline_tip' => 'Level 2 headline',
'nowiki_sample' => 'Insert non-formatted text here',
'nowiki_tip' => 'Ignore wiki formatting',
'image_sample' => 'Example.jpg', # only translate this message to other languages if you have to change it
'image_tip' => 'Embedded file',
'media_sample' => 'Example.ogg', # only translate this message to other languages if you have to change it
'media_tip' => 'File link',
'sig_tip' => 'Your signature with timestamp',
'hr_tip' => 'Horizontal line (use sparingly)',
# Edit pages
'summary' => 'Summary:',
'subject' => 'Subject/headline:',
'minoredit' => 'This is a minor edit',
'watchthis' => 'Watch this page',
'savearticle' => 'Save page',
'preview' => 'Preview',
'showpreview' => 'Show preview',
'showlivepreview' => 'Live preview',
'showdiff' => 'Show changes',
'anoneditwarning' => "'''Warning:''' You are not logged in.
Your IP address will be recorded in this page's edit history.",
'anonpreviewwarning' => "''You are not logged in. Saving will record your IP address in this page's edit history.''",
'missingsummary' => "'''Reminder:''' You have not provided an edit summary.
If you click \"{{int:savearticle}}\" again, your edit will be saved without one.",
'missingcommenttext' => 'Please enter a comment below.',
'missingcommentheader' => "'''Reminder:''' You have not provided a subject/headline for this comment.
If you click \"{{int:savearticle}}\" again, your edit will be saved without one.",
'summary-preview' => 'Summary preview:',
'subject-preview' => 'Subject/headline preview:',
'blockedtitle' => 'User is blocked',
'blockedtext' => "'''Your username or IP address has been blocked.'''
The block was made by $1.
The reason given is ''$2''.
* Start of block: $8
* Expiry of block: $6
* Intended blockee: $7
You can contact $1 or another [[{{MediaWiki:Grouppage-sysop}}|administrator]] to discuss the block.
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.
Your current IP address is $3, and the block ID is #$5.
Please include all above details in any queries you make.",
'autoblockedtext' => "Your IP address has been automatically blocked because it was used by another user, who was blocked by $1.
The reason given is:
:''$2''
* Start of block: $8
* Expiry of block: $6
* Intended blockee: $7
You may contact $1 or one of the other [[{{MediaWiki:Grouppage-sysop}}|administrators]] to discuss the block.
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.
Your current IP address is $3, and the block ID is #$5.
Please include all above details in any queries you make.",
'blockednoreason' => 'no reason given',
'whitelistedittext' => 'You have to $1 to edit pages.',
'confirmedittext' => 'You must confirm your email address before editing pages.
Please set and validate your email address through your [[Special:Preferences|user preferences]].',
'nosuchsectiontitle' => 'Cannot find section',
'nosuchsectiontext' => 'You tried to edit a section that does not exist.
It may have been moved or deleted while you were viewing the page.',
'loginreqtitle' => 'Login required',
'loginreqlink' => 'log in',
'loginreqpagetext' => 'You must $1 to view other pages.',
'accmailtitle' => 'Password sent',
'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.",
'newarticle' => '(New)',
'newarticletext' => "You have followed a link to a page that does not exist yet.
To create the page, start typing in the box below (see the [$1 help page] for more info).
If you are here by mistake, click your browser's back button.",
'newarticletextanon' => '{{int:newarticletext|$1}}', # do not translate or duplicate this message to other languages
'talkpagetext' => '', # do not translate or duplicate this message to other languages
'anontalkpagetext' => "----
''This is the discussion page for an anonymous user who has not created an account yet, or who does not use it.''
We therefore have to use the numerical IP address to identify him/her.
Such an IP address can be shared by several users.
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.",
'noarticletext' => 'There is currently no text in this page.
You can [[Special:Search/{{PAGENAME}}|search for this page title]] in other pages,
[{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} search the related logs],
or [{{fullurl:{{FULLPAGENAME}}|action=edit}} edit this page].',
'noarticletext-nopermission' => 'There is currently no text in this page.
You can [[Special:Search/{{PAGENAME}}|search for this page title]] in other pages, or [{{fullurl:{{#Special:Log}}|page={{FULLPAGENAMEE}}}} search the related logs], but you do not have permission to create this page.',
'noarticletextanon' => '{{int:noarticletext}}', # do not translate or duplicate this message to other languages
'missing-revision' => 'The revision #$1 of the page named "{{PAGENAME}}" does not exist.
This is usually caused by following an outdated history link to a page that has been deleted.
Details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].',
'userpage-userdoesnotexist' => 'User account "$1" is not registered.
Please check if you want to create/edit this page.',
'userpage-userdoesnotexist-view' => 'User account "$1" is not registered.',
'blocked-notice-logextract' => 'This user is currently blocked.
The latest block log entry is provided below for reference:',
'clearyourcache' => "'''Note:''' After saving, you may have to bypass your browser's cache to see the changes.
* '''Firefox / Safari:''' Hold ''Shift'' while clicking ''Reload'', or press either ''Ctrl-F5'' or ''Ctrl-R'' (''⌘-R'' on a Mac)
* '''Google Chrome:''' Press ''Ctrl-Shift-R'' (''⌘-Shift-R'' on a Mac)
* '''Internet Explorer:''' Hold ''Ctrl'' while clicking ''Refresh'', or press ''Ctrl-F5''
* '''Opera:''' Clear the cache in ''Tools → Preferences''",
'usercssyoucanpreview' => "'''Tip:''' Use the \"{{int:showpreview}}\" button to test your new CSS before saving.",
'userjsyoucanpreview' => "'''Tip:''' Use the \"{{int:showpreview}}\" button to test your new JavaScript before saving.",
'usercsspreview' => "'''Remember that you are only previewing your user CSS.'''
'''It has not yet been saved!'''",
'userjspreview' => "'''Remember that you are only testing/previewing your user JavaScript.'''
'''It has not yet been saved!'''",
'sitecsspreview' => "'''Remember that you are only previewing this CSS.'''
'''It has not yet been saved!'''",
'sitejspreview' => "'''Remember that you are only previewing this JavaScript code.'''
'''It has not yet been saved!'''",
'userinvalidcssjstitle' => "'''Warning:''' There is no skin \"\$1\".
Custom .css and .js pages use a lowercase title, e.g. {{ns:user}}:Foo/vector.css as opposed to {{ns:user}}:Foo/Vector.css.",
'updated' => '(Updated)',
'note' => "'''Note:'''",
'previewnote' => "'''Remember that this is only a preview.'''
Your changes have not yet been saved!",
'continue-editing' => 'Go to editing area',
'previewconflict' => 'This preview reflects the text in the upper text editing area as it will appear if you choose to save.',
'session_fail_preview' => "'''Sorry! We could not process your edit due to a loss of session data.'''
Please try again.
If it still does not work, try [[Special:UserLogout|logging out]] and logging back in.",
'session_fail_preview_html' => "'''Sorry! We could not process your edit due to a loss of session data.'''
''Because {{SITENAME}} has raw HTML enabled, the preview is hidden as a precaution against JavaScript attacks.''
'''If this is a legitimate edit attempt, please try again.'''
If it still does not work, try [[Special:UserLogout|logging out]] and logging back in.",
'token_suffix_mismatch' => "'''Your edit has been rejected because your client mangled the punctuation characters in the edit token.'''
The edit has been rejected to prevent corruption of the page text.
This sometimes happens when you are using a buggy web-based anonymous proxy service.",
'edit_form_incomplete' => "'''Some parts of the edit form did not reach the server; double-check that your edits are intact and try again.'''",
'editing' => 'Editing $1',
'creating' => 'Creating $1',
'editingsection' => 'Editing $1 (section)',
'editingcomment' => 'Editing $1 (new section)',
'editconflict' => 'Edit conflict: $1',
'explainconflict' => "Someone else has changed this page since you started editing it.
The upper text area contains the page text as it currently exists.
Your changes are shown in the lower text area.
You will have to merge your changes into the existing text.
'''Only''' the text in the upper text area will be saved when you press \"{{int:savearticle}}\".",
'yourtext' => 'Your text',
'storedversion' => 'Stored revision',
'nonunicodebrowser' => "'''Warning: Your browser is not Unicode compliant.'''
A workaround is in place to allow you to safely edit pages: Non-ASCII characters will appear in the edit box as hexadecimal codes.",
'editingold' => "'''Warning: You are editing an out-of-date revision of this page.'''
If you save it, any changes made since this revision will be lost.",
'yourdiff' => 'Differences',
'copyrightwarning' => "Please note that all contributions to {{SITENAME}} are considered to be released under the $2 (see $1 for details).
If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
'''Do not submit copyrighted work without permission!'''",
'copyrightwarning2' => "Please note that all contributions to {{SITENAME}} may be edited, altered, or removed by other contributors.
If you do not want your writing to be edited mercilessly, then do not submit it here.
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).
'''Do not submit copyrighted work without permission!'''",
'editpage-head-copy-warn' => '-', # do not translate or duplicate this message to other languages
'editpage-tos-summary' => '-', # do not translate or duplicate this message to other languages
'longpage-hint' => '-', # do not translate or duplicate this message to other languages
'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}}.'''
It cannot be saved.",
'readonlywarning' => "'''Warning: The database has been locked for maintenance, so you will not be able to save your edits right now.'''
You may wish to copy and paste your text into a text file and save it for later.
The administrator who locked it offered this explanation: $1",
'protectedpagewarning' => "'''Warning: This page has been protected so that only users with administrator privileges can edit it.'''
The latest log entry is provided below for reference:",
'semiprotectedpagewarning' => "'''Note:''' This page has been protected so that only registered users can edit it.
The latest log entry is provided below for reference:",
'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}}:",
'titleprotectedwarning' => "'''Warning: This page has been protected so that [[Special:ListGroupRights|specific rights]] are needed to create it.'''
The latest log entry is provided below for reference:",
'templatesused' => '{{PLURAL:$1|Template|Templates}} used on this page:',
'templatesusedpreview' => '{{PLURAL:$1|Template|Templates}} used in this preview:',
'templatesusedsection' => '{{PLURAL:$1|Template|Templates}} used in this section:',
'template-protected' => '(protected)',
'template-semiprotected' => '(semi-protected)',
'hiddencategories' => 'This page is a member of {{PLURAL:$1|1 hidden category|$1 hidden categories}}:',
'edittools' => '', # only translate this message to other languages if you have to change it
'edittools-upload' => '-', # only translate this message to other languages if you have to change it
'nocreatetext' => '{{SITENAME}} has restricted the ability to create new pages.
You can go back and edit an existing page, or [[Special:UserLogin|log in or create an account]].',
'nocreate-loggedin' => 'You do not have permission to create new pages.',
'sectioneditnotsupported-title' => 'Section editing not supported',
'sectioneditnotsupported-text' => 'Section editing is not supported in this page.',
'permissionserrors' => 'Permission error',
'permissionserrorstext' => 'You do not have permission to do that, for the following {{PLURAL:$1|reason|reasons}}:',
'permissionserrorstext-withaction' => 'You do not have permission to $2, for the following {{PLURAL:$1|reason|reasons}}:',
'recreate-moveddeleted-warn' => "'''Warning: You are recreating a page that was previously deleted.'''
You should consider whether it is appropriate to continue editing this page.
The deletion and move log for this page are provided here for convenience:",
'moveddeleted-notice' => 'This page has been deleted.
The deletion and move log for the page are provided below for reference.',
'log-fulllog' => 'View full log',
'edit-hook-aborted' => 'Edit aborted by hook.
It gave no explanation.',
'edit-gone-missing' => 'Could not update the page.
It appears to have been deleted.',
'edit-conflict' => 'Edit conflict.',
'edit-no-change' => 'Your edit was ignored because no change was made to the text.',
'postedit-confirmation' => 'Your edit was saved.',
'edit-already-exists' => 'Could not create a new page.
It already exists.',
'addsection-preload' => '', # do not translate or duplicate this message to other languages
'addsection-editintro' => '', # do not translate or duplicate this message to other languages
'defaultmessagetext' => 'Default message text',
'content-failed-to-parse' => 'Failed to parse $2 content for $1 model: $3',
'invalid-content-data' => 'Invalid content data',
'content-not-allowed-here' => '"$1" content is not allowed on page [[$2]]',
'editwarning-warning' => 'Leaving this page may cause you to lose any changes you have made.
If you are logged in, you can disable this warning in the "Editing" section of your preferences.',
# Content models
'content-model-wikitext' => 'wikitext',
'content-model-text' => 'plain text',
'content-model-javascript' => 'JavaScript',
'content-model-css' => 'CSS',
# Parser/template warnings
'expensive-parserfunction-warning' => "'''Warning:''' This page contains too many expensive parser function calls.
It should have less than $2 {{PLURAL:$2|call|calls}}, there {{PLURAL:$1|is now $1 call|are now $1 calls}}.",
'expensive-parserfunction-category' => 'Pages with too many expensive parser function calls',
'post-expand-template-inclusion-warning' => "'''Warning:''' Template include size is too large.
Some templates will not be included.",
'post-expand-template-inclusion-category' => 'Pages where template include size is exceeded',
'post-expand-template-argument-warning' => "'''Warning:''' This page contains at least one template argument that has a too large expansion size.
These arguments have been omitted.",
'post-expand-template-argument-category' => 'Pages containing omitted template arguments',
'parser-template-loop-warning' => 'Template loop detected: [[$1]]',
'parser-template-recursion-depth-warning' => 'Template recursion depth limit exceeded ($1)',
'language-converter-depth-warning' => 'Language converter depth limit exceeded ($1)',
'node-count-exceeded-category' => 'Pages where node-count is exceeded',
'node-count-exceeded-warning' => 'Page exceeded the node-count',
'expansion-depth-exceeded-category' => 'Pages where expansion depth is exceeded',
'expansion-depth-exceeded-warning' => 'Page exceeded the expansion depth',
'parser-unstrip-loop-warning' => 'Unstrip loop detected',
'parser-unstrip-recursion-limit' => 'Unstrip recursion limit exceeded ($1)',
'converter-manual-rule-error' => 'Error detected in manual language conversion rule',
# "Undo" feature
'undo-success' => 'The edit can be undone.
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.',
'undo-failure' => 'The edit could not be undone due to conflicting intermediate edits.',
'undo-norev' => 'The edit could not be undone because it does not exist or was deleted.',
'undo-summary' => 'Undo revision $1 by [[Special:Contributions/$2|$2]] ([[User talk:$2|talk]])',
'undo-summary-username-hidden' => 'Undo revision $1 by a hidden user',
# Account creation failure
'cantcreateaccounttitle' => 'Cannot create account',
'cantcreateaccount-text' => "Account creation from this IP address ('''$1''') has been blocked by [[User:$3|$3]].
The reason given by $3 is ''$2''",
# History pages
'viewpagelogs' => 'View logs for this page',
'nohistory' => 'There is no edit history for this page.',
'currentrev' => 'Latest revision',
'currentrev-asof' => 'Latest revision as of $1',
'revisionasof' => 'Revision as of $1',
'revision-info' => 'Revision as of $1 by $2',
'revision-info-current' => '-', # do not translate or duplicate this message to other languages
'revision-nav' => '($1) $2{{int:pipe-separator}}$3 ($4){{int:pipe-separator}}$5 ($6)', # do not translate or duplicate this message to other languages
'previousrevision' => '← Older revision',
'nextrevision' => 'Newer revision →',
'currentrevisionlink' => 'Latest revision',
'cur' => 'cur',
'next' => 'next',
'last' => 'prev',
'page_first' => 'first',
'page_last' => 'last',
'histlegend' => "Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: '''({{int:cur}})''' = difference with latest revision, '''({{int:last}})''' = difference with preceding revision, '''{{int:minoreditletter}}''' = minor edit.",
'history-fieldset-title' => 'Browse history',
'history-show-deleted' => 'Deleted only',
'history_copyright' => '-', # do not translate or duplicate this message to other languages
'histfirst' => 'oldest',
'histlast' => 'newest',
'historysize' => '({{PLURAL:$1|1 byte|$1 bytes}})',
'historyempty' => '(empty)',
# Revision feed
'history-feed-title' => 'Revision history',
'history-feed-description' => 'Revision history for this page on the wiki',
'history-feed-item-nocomment' => '$1 at $2',
'history-feed-empty' => 'The requested page does not exist.
It may have been deleted from the wiki, or renamed.
Try [[Special:Search|searching on the wiki]] for relevant new pages.',
# Revision deletion
'rev-deleted-comment' => '(edit summary removed)',
'rev-deleted-user' => '(username removed)',
'rev-deleted-event' => '(log action removed)',
'rev-deleted-user-contribs' => '[username or IP address removed - edit hidden from contributions]',
'rev-deleted-text-permission' => "This page revision has been '''deleted'''.
Details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].",
'rev-deleted-text-unhide' => "This page revision has been '''deleted'''.
Details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].
You can still [$1 view this revision] if you wish to proceed.",
'rev-suppressed-text-unhide' => "This page revision has been '''suppressed'''.
Details can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].
You can still [$1 view this revision] if you wish to proceed.",
'rev-deleted-text-view' => "This page revision has been '''deleted'''.
You can view it; details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].",
'rev-suppressed-text-view' => "This page revision has been '''suppressed'''.
You can view it; details can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].",
'rev-deleted-no-diff' => "You cannot view this diff because one of the revisions has been '''deleted'''.
Details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].",
'rev-suppressed-no-diff' => "You cannot view this diff because one of the revisions has been '''deleted'''.",
'rev-deleted-unhide-diff' => "One of the revisions of this diff has been '''deleted'''.
Details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].
You can still [$1 view this diff] if you wish to proceed.",
'rev-suppressed-unhide-diff' => "One of the revisions of this diff has been '''suppressed'''.
Details can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].
You can still [$1 view this diff] if you wish to proceed.",
'rev-deleted-diff-view' => "One of the revisions of this diff has been '''deleted'''.
You can view this diff; details can be found in the [{{fullurl:{{#Special:Log}}/delete|page={{FULLPAGENAMEE}}}} deletion log].",
'rev-suppressed-diff-view' => "One of the revisions of this diff has been '''suppressed'''.
You can view this diff; details can be found in the [{{fullurl:{{#Special:Log}}/suppress|page={{FULLPAGENAMEE}}}} suppression log].",
'rev-delundel' => 'change visibility',
'rev-showdeleted' => 'show',
'revisiondelete' => 'Delete/undelete revisions',
'revdelete-nooldid-title' => 'Invalid target revision',
'revdelete-nooldid-text' => 'You have either not specified a target revision(s) to perform this
function, the specified revision does not exist, or you are attempting to hide the current revision.',
'revdelete-nologtype-title' => 'No log type given',
'revdelete-nologtype-text' => 'You have not specified a log type to perform this action on.',
'revdelete-nologid-title' => 'Invalid log entry',
'revdelete-nologid-text' => 'You have either not specified a target log event to perform this function or the specified entry does not exist.',
'revdelete-no-file' => 'The file specified does not exist.',
'revdelete-show-file-confirm' => 'Are you sure you want to view a deleted revision of the file "
[[ {{ns:file}}:File.jpg]]
''' to use the full version of the file
* '''[[ {{ns:file}}:File.png|200px|thumb|left|alt text]]
''' to use a 200 pixel wide rendition in a box in the left margin with \"alt text\" as description
* '''[[ {{ns:media}}:File.ogg]]
''' for directly linking to the file without displaying the file",
'upload-permitted' => 'Permitted file types: $1.',
'upload-preferred' => 'Preferred file types: $1.',
'upload-prohibited' => 'Prohibited file types: $1.',
'uploadfooter' => '-', # do not translate or duplicate this message to other languages
'upload-default-description' => '-', # do not translate or duplicate this message to other languages
'uploadlog' => 'upload log',
'uploadlogpage' => 'Upload log',
'uploadlogpagetext' => 'Below is a list of the most recent file uploads.
See the [[Special:NewFiles|gallery of new files]] for a more visual overview.',
'filename' => 'Filename',
'filedesc' => 'Summary',
'fileuploadsummary' => 'Summary:',
'filereuploadsummary' => 'File changes:',
'filestatus' => 'Copyright status:',
'filesource' => 'Source:',
'uploadedfiles' => 'Uploaded files',
'ignorewarning' => 'Ignore warning and save file anyway',
'ignorewarnings' => 'Ignore any warnings',
'minlength1' => 'Filenames must be at least one letter.',
'illegalfilename' => 'The filename "$1" contains characters that are not allowed in page titles.
Please rename the file and try uploading it again.',
'filename-toolong' => 'Filenames may not be longer than 240 bytes.',
'badfilename' => 'Filename has been changed to "$1".',
'filetype-mime-mismatch' => 'File extension ".$1" does not match the detected MIME type of the file ($2).',
'filetype-badmime' => 'Files of the MIME type "$1" are not allowed to be uploaded.',
'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.',
'filetype-unwanted-type' => "'''\".\$1\"''' is an unwanted file type.
Preferred {{PLURAL:\$3|file type is|file types are}} \$2.",
'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.',
'filetype-missing' => 'The file has no extension (like ".jpg").',
'empty-file' => 'The file you submitted was empty.',
'file-too-large' => 'The file you submitted was too large.',
'filename-tooshort' => 'The filename is too short.',
'filetype-banned' => 'This type of file is banned.',
'verification-error' => 'This file did not pass file verification.',
'hookaborted' => 'The modification you tried to make was aborted by an extension.',
'illegal-filename' => 'The filename is not allowed.',
'overwrite' => 'Overwriting an existing file is not allowed.',
'unknown-error' => 'An unknown error occurred.',
'tmp-create-error' => 'Could not create temporary file.',
'tmp-write-error' => 'Error writing temporary file.',
'large-file' => 'It is recommended that files are no larger than $1;
this file is $2.',
'largefileserver' => 'This file is bigger than the server is configured to allow.',
'emptyfile' => 'The file you uploaded seems to be empty.
This might be due to a typo in the filename.
Please check whether you really want to upload this file.',
'windows-nonascii-filename' => 'This wiki does not support filenames with special characters.',
'fileexists' => 'A file with this name exists already, please check [[:$1]] if you are not sure if you want to change it.
[[$1|thumb]]',
'filepageexists' => 'The description page for this file has already been created at [[:$1]], but no file with this name currently exists.
The summary you enter will not appear on the description page.
To make your summary appear there, you will need to manually edit it.
[[$1|thumb]]',
'fileexists-extension' => 'A file with a similar name exists: [[$2|thumb]]
* Name of the uploading file: [[:$1]]
* Name of the existing file: [[:$2]]
Please choose a different name.',
'fileexists-thumbnail-yes' => "The file seems to be an image of reduced size ''(thumbnail)''.
[[$1|thumb]]
Please check the file [[:$1]].
If the checked file is the same image of original size it is not necessary to upload an extra thumbnail.",
'file-thumbnail-no' => "The filename begins with $1.
It seems to be an image of reduced size ''(thumbnail)''.
If you have this image in full resolution upload this one, otherwise change the filename please.",
'fileexists-forbidden' => 'A file with this name already exists, and cannot be overwritten.
If you still want to upload your file, please go back and use a new name.
[[File:$1|thumb|center|$1]]',
'fileexists-shared-forbidden' => 'A file with this name exists already in the shared file repository.
If you still want to upload your file, please go back and use a new name.
[[File:$1|thumb|center|$1]]',
'file-exists-duplicate' => 'This file is a duplicate of the following {{PLURAL:$1|file|files}}:',
'file-deleted-duplicate' => "A file identical to this file ([[:$1]]) has previously been deleted.
You should check that file's deletion history before proceeding to re-upload it.",
'uploadwarning' => 'Upload warning',
'uploadwarning-text' => 'Please modify the file description below and try again.',
'savefile' => 'Save file',
'uploadedimage' => 'uploaded "[[$1]]"',
'overwroteimage' => 'uploaded a new version of "[[$1]]"',
'uploaddisabled' => 'Uploads disabled.',
'copyuploaddisabled' => 'Upload by URL disabled.',
'uploadfromurl-queued' => 'Your upload has been queued.',
'uploaddisabledtext' => 'File uploads are disabled.',
'php-uploaddisabledtext' => 'File uploads are disabled in PHP.
Please check the file_uploads setting.',
'uploadscripted' => 'This file contains HTML or script code that may be erroneously interpreted by a web browser.',
'uploadscriptednamespace' => 'This SVG file contains an illegal namespace \'$1\'',
'uploadinvalidxml' => 'The XML in the uploaded file could not be parsed.',
'uploadvirus' => 'The file contains a virus!
Details: $1',
'uploadjava' => 'The file is a ZIP file that contains a Java .class file.
Uploading Java files is not allowed because they can cause security restrictions to be bypassed.',
'upload-source' => 'Source file',
'sourcefilename' => 'Source filename:',
'sourceurl' => 'Source URL:',
'destfilename' => 'Destination filename:',
'upload-maxfilesize' => 'Maximum file size: $1',
'upload-description' => 'File description',
'upload-options' => 'Upload options',
'watchthisupload' => 'Watch this file',
'filewasdeleted' => 'A file of this name has been previously uploaded and subsequently deleted.
You should check the $1 before proceeding to upload it again.',
'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.
Please choose a more descriptive name for your file.",
'filename-prefix-blacklist' => ' # # Syntax is as follows: # * Everything from a "#" character to the end of the line is a comment # * Every non-blank line is a prefix for typical filenames assigned automatically by digital cameras CIMG # Casio DSC_ # Nikon DSCF # Fuji DSCN # Nikon DUW # some mobile phones IMG # generic JD # Jenoptik MGP # Pentax PICT # misc. #', # only translate this message to other languages if you have to change it 'upload-success-subj' => 'Successful upload', 'upload-success-msg' => 'Your upload from [$2] was successful. It is available here: [[:{{ns:file}}:$1]]', 'upload-failure-subj' => 'Upload problem', 'upload-failure-msg' => 'There was a problem with your upload from [$2]: $1', 'upload-warning-subj' => 'Upload warning', '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.', 'upload-proto-error' => 'Incorrect protocol', 'upload-proto-error-text' => 'Remote upload requires URLs beginning with
http://
or ftp://
.',
'upload-file-error' => 'Internal error',
'upload-file-error-text' => 'An internal error occurred when attempting to create a temporary file on the server.
Please contact an [[Special:ListUsers/sysop|administrator]].',
'upload-misc-error' => 'Unknown upload error',
'upload-misc-error-text' => 'An unknown error occurred during the upload.
Please verify that the URL is valid and accessible and try again.
If the problem persists, contact an [[Special:ListUsers/sysop|administrator]].',
'upload-too-many-redirects' => 'The URL contained too many redirects',
'upload-unknown-size' => 'Unknown size',
'upload-http-error' => 'An HTTP error occurred: $1',
'upload-copy-upload-invalid-domain' => 'Copy uploads are not available from this domain.',
# File backend
'backend-fail-stream' => 'Could not stream file "$1".',
'backend-fail-backup' => 'Could not backup file "$1".',
'backend-fail-notexists' => 'The file $1 does not exist.',
'backend-fail-hashes' => 'Could not get file hashes for comparison.',
'backend-fail-notsame' => 'A non-identical file already exists at "$1".',
'backend-fail-invalidpath' => '"$1" is not a valid storage path.',
'backend-fail-delete' => 'Could not delete file "$1".',
'backend-fail-describe' => 'Could not change metadata for file "$1".',
'backend-fail-alreadyexists' => 'The file "$1" already exists.',
'backend-fail-store' => 'Could not store file "$1" at "$2".',
'backend-fail-copy' => 'Could not copy file "$1" to "$2".',
'backend-fail-move' => 'Could not move file "$1" to "$2".',
'backend-fail-opentemp' => 'Could not open temporary file.',
'backend-fail-writetemp' => 'Could not write to temporary file.',
'backend-fail-closetemp' => 'Could not close temporary file.',
'backend-fail-read' => 'Could not read file "$1".',
'backend-fail-create' => 'Could not write file "$1".',
'backend-fail-maxsize' => 'Could not write file "$1" because it is larger than {{PLURAL:$2|one byte|$2 bytes}}.',
'backend-fail-readonly' => 'The storage backend "$1" is currently read-only. The reason given is: "\'\'$2\'\'"',
'backend-fail-synced' => 'The file "$1" is in an inconsistent state within the internal storage backends',
'backend-fail-connect' => 'Could not connect to storage backend "$1".',
'backend-fail-internal' => 'An unknown error occurred in storage backend "$1".',
'backend-fail-contenttype' => 'Could not determine the content type of the file to store at "$1".',
'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}}.',
'backend-fail-usable' => 'Could not read or write file "$1" due to insufficient permissions or missing directories/containers.',
# File journal errors
'filejournal-fail-dbconnect' => 'Could not connect to the journal database for storage backend "$1".',
'filejournal-fail-dbquery' => 'Could not update the journal database for storage backend "$1".',
# Lock manager
'lockmanager-notlocked' => 'Could not unlock "$1"; it is not locked.',
'lockmanager-fail-closelock' => 'Could not close lock file for "$1".',
'lockmanager-fail-deletelock' => 'Could not delete lock file for "$1".',
'lockmanager-fail-acquirelock' => 'Could not acquire lock for "$1".',
'lockmanager-fail-openlock' => 'Could not open lock file for "$1".',
'lockmanager-fail-releaselock' => 'Could not release lock for "$1".',
'lockmanager-fail-db-bucket' => 'Could not contact enough lock databases in bucket $1.',
'lockmanager-fail-db-release' => 'Could not release locks on database $1.',
'lockmanager-fail-svr-acquire' => 'Could not acquire locks on server $1.',
'lockmanager-fail-svr-release' => 'Could not release locks on server $1.',
# ZipDirectoryReader
'zip-file-open-error' => 'An error was encountered when opening the file for ZIP checks.',
'zip-wrong-format' => 'The specified file was not a ZIP file.',
'zip-bad' => 'The file is a corrupt or otherwise unreadable ZIP file.
It cannot be properly checked for security.',
'zip-unsupported' => 'The file is a ZIP file that uses ZIP features not supported by MediaWiki.
It cannot be properly checked for security.',
# Special:UploadStash
'uploadstash' => 'Upload stash',
'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.',
'uploadstash-clear' => 'Clear stashed files',
'uploadstash-nofiles' => 'You have no stashed files.',
'uploadstash-badtoken' => 'Performing of that action was unsuccessful, perhaps because your editing credentials expired. Try again.',
'uploadstash-errclear' => 'Clearing the files was unsuccessful.',
'uploadstash-refresh' => 'Refresh the list of files',
'invalid-chunk-offset' => 'Invalid chunk offset',
# img_auth script messages
'img-auth-accessdenied' => 'Access denied',
'img-auth-nopathinfo' => 'Missing PATH_INFO.
Your server is not set up to pass this information.
It may be CGI-based and cannot support img_auth.
See https://www.mediawiki.org/wiki/Manual:Image_Authorization.',
'img-auth-notindir' => 'Requested path is not in the configured upload directory.',
'img-auth-badtitle' => 'Unable to construct a valid title from "$1".',
'img-auth-nologinnWL' => 'You are not logged in and "$1" is not in the whitelist.',
'img-auth-nofile' => 'File "$1" does not exist.',
'img-auth-isdir' => 'You are trying to access a directory "$1".
Only file access is allowed.',
'img-auth-streaming' => 'Streaming "$1".',
'img-auth-public' => 'The function of img_auth.php is to output files from a private wiki.
This wiki is configured as a public wiki.
For optimal security, img_auth.php is disabled.',
'img-auth-noread' => 'User does not have access to read "$1".',
'img-auth-bad-query-string' => 'The URL has an invalid query string.',
# HTTP errors
'http-invalid-url' => 'Invalid URL: $1',
'http-invalid-scheme' => 'URLs with the "$1" scheme are not supported.',
'http-request-error' => 'HTTP request failed due to unknown error.',
'http-read-error' => 'HTTP read error.',
'http-timed-out' => 'HTTP request timed out.',
'http-curl-error' => 'Error fetching URL: $1',
'http-bad-status' => 'There was a problem during the HTTP request: $1 $2',
# Some likely curl errors. More could be added from image/jpeg
.',
'mimetype' => 'MIME type:',
'download' => 'download',
# Unwatched pages
'unwatchedpages' => 'Unwatched pages',
'unwatchedpages-summary' => '', # do not translate or duplicate this message to other languages
# List redirects
'listredirects' => 'List of redirects',
'listredirects-summary' => '', # do not translate or duplicate this message to other languages
# Unused templates
'unusedtemplates' => 'Unused templates',
'unusedtemplates-summary' => '', # do not translate or duplicate this message to other languages
'unusedtemplatestext' => 'This page lists all pages in the {{ns:template}} namespace that are not included in another page.
Remember to check for other links to the templates before deleting them.',
'unusedtemplateswlh' => 'other links',
# Random page
'randompage' => 'Random page',
'randompage-nopages' => 'There are no pages in the following {{PLURAL:$2|namespace|namespaces}}: $1.',
'randompage-url' => 'Special:Random', # do not translate or duplicate this message to other languages
# Random page in category
'randomincategory' => 'Random page in category',
'randomincategory-invalidcategory' => '"$1" is not a valid category name.',
'randomincategory-nopages' => 'There are no pages in the [[:Category:$1|$1]] category.',
'randomincategory-selectcategory' => 'Get random page from category: $1 $2.',
'randomincategory-selectcategory-submit' => 'Go',
# Random redirect
'randomredirect' => 'Random redirect',
'randomredirect-nopages' => 'There are no redirects in the namespace "$1".',
# Statistics
'statistics' => 'Statistics',
'statistics-summary' => '', # do not translate or duplicate this message to other languages
'statistics-header-pages' => 'Page statistics',
'statistics-header-edits' => 'Edit statistics',
'statistics-header-views' => 'View statistics',
'statistics-header-users' => 'User statistics',
'statistics-header-hooks' => 'Other statistics',
'statistics-articles' => 'Content pages',
'statistics-pages' => 'Pages',
'statistics-pages-desc' => 'All pages in the wiki, including talk pages, redirects, etc.',
'statistics-files' => 'Uploaded files',
'statistics-edits' => 'Page edits since {{SITENAME}} was set up',
'statistics-edits-average' => 'Average edits per page',
'statistics-views-total' => 'Views total',
'statistics-views-total-desc' => 'Views to non-existing pages and special pages are not included',
'statistics-views-peredit' => 'Views per edit',
'statistics-users' => 'Registered [[Special:ListUsers|users]]',
'statistics-users-active' => 'Active users',
'statistics-users-active-desc' => 'Users who have performed an action in the last {{PLURAL:$1|day|$1 days}}',
'statistics-mostpopular' => 'Most viewed pages',
'statistics-footer' => '', # do not translate or duplicate this message to other languages
'pageswithprop' => 'Pages with a page property',
'pageswithprop-summary' => '', # do not translate or duplicate this message to other languages
'pageswithprop-legend' => 'Pages with a page property',
'pageswithprop-text' => 'This page lists pages that use a particular page property.',
'pageswithprop-prop' => 'Property name:',
'pageswithprop-submit' => 'Go',
'pageswithprop-prophidden-long' => 'long text property value hidden ($1)',
'pageswithprop-prophidden-binary' => 'binary property value hidden ($1)',
'doubleredirects' => 'Double redirects',
'doubleredirects-summary' => '', # do not translate or duplicate this message to other languages
'doubleredirectstext' => 'This page lists pages that redirect to other redirect pages.
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.
$1
(defaults to http:// if no protocol is specified).',
'linksearch-line' => '$1 is linked from $2',
'linksearch-error' => 'Wildcards may appear only at the start of the hostname.',
# Special:ListUsers
'listusersfrom' => 'Display users starting at:',
'listusers-submit' => 'Show',
'listusers-noresult' => 'No user found.',
'listusers-blocked' => '(blocked)',
# Special:ActiveUsers
'activeusers' => 'Active users list',
'activeusers-summary' => '', # do not translate or duplicate this message to other languages
'activeusers-intro' => 'This is a list of users who had some kind of activity within the last $1 {{PLURAL:$1|day|days}}.',
'activeusers-count' => '$1 {{PLURAL:$1|action|actions}} in the last {{PLURAL:$3|day|$3 days}}',
'activeusers-from' => 'Display users starting at:',
'activeusers-hidebots' => 'Hide bots',
'activeusers-hidesysops' => 'Hide administrators',
'activeusers-noresult' => 'No users found.',
# Special:ListGroupRights
'listgrouprights' => 'User group rights',
'listgrouprights-summary' => 'The following is a list of user groups defined on this wiki, with their associated access rights.
There may be [[{{MediaWiki:Listgrouprights-helppage}}|additional information]] about individual rights.',
'listgrouprights-key' => 'Legend:
* Granted right
* Revoked right',
'listgrouprights-group' => 'Group',
'listgrouprights-rights' => 'Rights',
'listgrouprights-helppage' => 'Help:Group rights',
'listgrouprights-members' => '(list of members)',
'listgrouprights-right-display' => '$1 ($2)
', # only translate this message to other languages if you have to change it
'listgrouprights-right-revoked' => '$1 ($2)
', # only translate this message to other languages if you have to change it
'listgrouprights-addgroup' => 'Add {{PLURAL:$2|group|groups}}: $1',
'listgrouprights-removegroup' => 'Remove {{PLURAL:$2|group|groups}}: $1',
'listgrouprights-addgroup-all' => 'Add all groups',
'listgrouprights-removegroup-all' => 'Remove all groups',
'listgrouprights-addgroup-self' => 'Add {{PLURAL:$2|group|groups}} to own account: $1',
'listgrouprights-removegroup-self' => 'Remove {{PLURAL:$2|group|groups}} from own account: $1',
'listgrouprights-addgroup-self-all' => 'Add all groups to own account',
'listgrouprights-removegroup-self-all' => 'Remove all groups from own account',
# Email user
'mailnologin' => 'No send address',
'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.',
'emailuser' => 'Email this user',
'emailuser-title-target' => 'Email this {{GENDER:$1|user}}',
'emailuser-title-notarget' => 'Email user',
'emailuser-summary' => '', # do not translate or duplicate this message to other languages
'emailpage' => 'Email user',
'emailpagetext' => 'You can use the form below to send an email message to this {{GENDER:$1|user}}.
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.',
'usermailererror' => 'Mail object returned error:',
'defemailsubject' => '{{SITENAME}} email from user "$1"',
'usermaildisabled' => 'User email disabled',
'usermaildisabledtext' => 'You cannot send email to other users on this wiki',
'noemailtitle' => 'No email address',
'noemailtext' => 'This user has not specified a valid email address.',
'nowikiemailtitle' => 'No email allowed',
'nowikiemailtext' => 'This user has chosen not to receive email from other users.',
'emailnotarget' => 'Non-existent or invalid username for recipient.',
'emailtarget' => 'Enter username of recipient',
'emailusername' => 'Username:',
'emailusernamesubmit' => 'Submit',
'email-legend' => 'Send an email to another {{SITENAME}} user',
'emailfrom' => 'From:',
'emailto' => 'To:',
'emailsubject' => 'Subject:',
'emailmessage' => 'Message:',
'emailsend' => 'Send',
'emailccme' => 'Email me a copy of my message.',
'emailccsubject' => 'Copy of your message to $1: $2',
'emailsent' => 'Email sent',
'emailsenttext' => 'Your email message has been sent.',
'emailuserfooter' => 'This email was sent by $1 to $2 by the "Email user" function at {{SITENAME}}.',
# User Messenger
'usermessage-summary' => 'Leaving system message.',
'usermessage-editor' => 'System messenger',
'usermessage-template' => 'MediaWiki:UserMessage', # only translate this message to other languages if you have to change it
# Watchlist
'watchlist' => 'Watchlist',
'watchlist-summary' => '', # do not translate or duplicate this message to other languages
'mywatchlist' => 'Watchlist',
'watchlistfor2' => 'For $1 $2',
'nowatchlist' => 'You have no items on your watchlist.',
'watchlistanontext' => 'Please $1 to view or edit items on your watchlist.',
'watchnologin' => 'Not logged in',
'watchnologintext' => 'You must be [[Special:UserLogin|logged in]] to modify your watchlist.',
'addwatch' => 'Add to watchlist',
'addedwatchtext' => 'The page "[[:$1]]" has been added to your [[Special:Watchlist|watchlist]].
Future changes to this page and its associated talk page will be listed there.',
'removewatch' => 'Remove from watchlist',
'removedwatchtext' => 'The page "[[:$1]]" has been removed from [[Special:Watchlist|your watchlist]].',
'watch' => 'Watch',
'watchthispage' => 'Watch this page',
'unwatch' => 'Unwatch',
'unwatchthispage' => 'Stop watching',
'notanarticle' => 'Not a content page',
'notvisiblerev' => 'The last revision by a different user has been deleted',
'watchlist-details' => '{{PLURAL:$1|$1 page|$1 pages}} on your watchlist, not counting talk pages.',
'wlheader-enotif' => 'Email notification is enabled.',
'wlheader-showupdated' => "Pages that have been changed since you last visited them are shown in '''bold'''.",
'watchmethod-recent' => 'checking recent edits for watched pages',
'watchmethod-list' => 'checking watched pages for recent edits',
'watchlistcontains' => 'Your watchlist contains $1 {{PLURAL:$1|page|pages}}.',
'iteminvalidname' => 'Problem with item "$1", invalid name...',
'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.",
'wlshowlast' => 'Show last $1 hours $2 days $3',
'watchlist-options' => 'Watchlist options',
# Displayed when you click the "watch" button and it is in the process of watching
'watching' => 'Watching...',
'unwatching' => 'Unwatching...',
'watcherrortext' => 'An error occurred while changing your watchlist settings for "$1".',
'enotif_mailer' => '{{SITENAME}} notification mailer',
'enotif_reset' => 'Mark all pages visited',
'enotif_impersonal_salutation' => '{{SITENAME}} user',
'enotif_subject_deleted' => '{{SITENAME}} page $1 has been {{GENDER:$2|deleted}} by $2',
'enotif_subject_created' => '{{SITENAME}} page $1 has been {{GENDER:$2|created}} by $2',
'enotif_subject_moved' => '{{SITENAME}} page $1 has been {{GENDER:$2|moved}} by $2',
'enotif_subject_restored' => '{{SITENAME}} page $1 has been {{GENDER:$2|restored}} by $2',
'enotif_subject_changed' => '{{SITENAME}} page $1 has been {{GENDER:$2|changed}} by $2',
'enotif_body_intro_deleted' => 'The {{SITENAME}} page $1 has been {{GENDER:$2|deleted}} on $PAGEEDITDATE by $2, see $3.',
'enotif_body_intro_created' => 'The {{SITENAME}} page $1 has been {{GENDER:$2|created}} on $PAGEEDITDATE by $2, see $3 for the current revision.',
'enotif_body_intro_moved' => 'The {{SITENAME}} page $1 has been {{GENDER:$2|moved}} on $PAGEEDITDATE by $2, see $3 for the current revision.',
'enotif_body_intro_restored' => 'The {{SITENAME}} page $1 has been {{GENDER:$2|restored}} on $PAGEEDITDATE by $2, see $3 for the current revision.',
'enotif_body_intro_changed' => 'The {{SITENAME}} page $1 has been {{GENDER:$2|changed}} on $PAGEEDITDATE by $2, see $3 for the current revision.',
'enotif_lastvisited' => 'See $1 for all changes since your last visit.',
'enotif_lastdiff' => 'See $1 to view this change.',
'enotif_anon_editor' => 'anonymous user $1',
'enotif_body' => 'Dear $WATCHINGUSERNAME,
$PAGEINTRO $NEWPAGE
Editor\'s summary: $PAGESUMMARY $PAGEMINOREDIT
Contact the editor:
mail: $PAGEEDITOR_EMAIL
wiki: $PAGEEDITOR_WIKI
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.
Your friendly {{SITENAME}} notification system
--
To change your email notification settings, visit
{{canonicalurl:{{#special:Preferences}}}}
To change your watchlist settings, visit
{{canonicalurl:{{#special:EditWatchlist}}}}
To delete the page from your watchlist, visit
$UNWATCHURL
Feedback and further assistance:
$HELPPAGE',
'created' => 'created', # only translate this message to other languages if you have to change it
'changed' => 'changed', # only translate this message to other languages if you have to change it
# Delete
'deletepage' => 'Delete page',
'confirm' => 'Confirm',
'excontent' => 'content was: "$1"',
'excontentauthor' => 'content was: "$1" (and the only contributor was "[[Special:Contributions/$2|$2]]")',
'exbeforeblank' => 'content before blanking was: "$1"',
'exblank' => 'page was empty',
'delete-confirm' => 'Delete "$1"',
'delete-legend' => 'Delete',
'historywarning' => "'''Warning:''' The page you are about to delete has a history with approximately $1 {{PLURAL:$1|revision|revisions}}:",
'confirmdeletetext' => 'You are about to delete a page along with all of its history.
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]].',
'actioncomplete' => 'Action complete',
'actionfailed' => 'Action failed',
'deletedtext' => '"$1" has been deleted.
See $2 for a record of recent deletions.',
'dellogpage' => 'Deletion log',
'dellogpagetext' => 'Below is a list of the most recent deletions.',
'deletionlog' => 'deletion log',
'reverted' => 'Reverted to earlier revision',
'deletecomment' => 'Reason:',
'deleteotherreason' => 'Other/additional reason:',
'deletereasonotherlist' => 'Other reason',
'deletereason-dropdown' => '* Common delete reasons
** Spam
** Vandalism
** Copyright violation
** Author request
** Broken redirect',
'delete-edit-reasonlist' => 'Edit deletion reasons',
'delete-toobig' => 'This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.
Deletion of such pages has been restricted to prevent accidental disruption of {{SITENAME}}.',
'delete-warning-toobig' => 'This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.
Deleting it may disrupt database operations of {{SITENAME}};
proceed with caution.',
# Rollback
'rollback' => 'Roll back edits',
'rollback_short' => 'Rollback',
'rollbacklink' => 'rollback',
'rollbacklinkcount' => 'rollback $1 {{PLURAL:$1|edit|edits}}',
'rollbacklinkcount-morethan' => 'rollback more than $1 {{PLURAL:$1|edit|edits}}',
'rollbackfailed' => 'Rollback failed',
'cantrollback' => 'Cannot revert edit;
last contributor is only author of this page.',
'alreadyrolled' => 'Cannot rollback last edit of [[:$1]] by [[User:$2|$2]] ([[User talk:$2|talk]]{{int:pipe-separator}}[[Special:Contributions/$2|{{int:contribslink}}]]);
someone else has edited or rolled back the page already.
The last edit to the page was by [[User:$3|$3]] ([[User talk:$3|talk]]{{int:pipe-separator}}[[Special:Contributions/$3|{{int:contribslink}}]]).',
'editcomment' => "The edit summary was: \"''\$1''\".",
'revertpage' => 'Reverted edits by [[Special:Contributions/$2|$2]] ([[User talk:$2|talk]]) to last revision by [[User:$1|$1]]',
'revertpage-nouser' => 'Reverted edits by a hidden user to last revision by {{GENDER:$1|[[User:$1|$1]]}}',
'rollback-success' => 'Reverted edits by $1;
changed back to last revision by $2.',
# Edit tokens
'sessionfailure-title' => 'Session failure',
'sessionfailure' => 'There seems to be a problem with your login session;
this action has been canceled as a precaution against session hijacking.
Go back to the previous page, reload that page and then try again.',
# Protect
'protectlogpage' => 'Protection log',
'protectlogtext' => 'Below is a list of changes to page protections.
See the [[Special:ProtectedPages|protected pages list]] for the list of currently operational page protections.',
'protectedarticle' => 'protected "[[$1]]"',
'modifiedarticleprotection' => 'changed protection level for "[[$1]]"',
'unprotectedarticle' => 'removed protection from "[[$1]]"',
'movedarticleprotection' => 'moved protection settings from "[[$2]]" to "[[$1]]"',
'protect-title' => 'Change protection level for "$1"',
'protect-title-notallowed' => 'View protection level of "$1"',
'prot_1movedto2' => '[[$1]] moved to [[$2]]',
'protect-badnamespace-title' => 'Non-protectable namespace',
'protect-badnamespace-text' => 'Pages in this namespace cannot be protected.',
'protect-norestrictiontypes-text' => 'This page cannot be protected as there are no restriction types available.',
'protect-norestrictiontypes-title' => 'Non-protectable page',
'protect-legend' => 'Confirm protection',
'protectcomment' => 'Reason:',
'protectexpiry' => 'Expires:',
'protect_expiry_invalid' => 'Expiry time is invalid.',
'protect_expiry_old' => 'Expiry time is in the past.',
'protect-unchain-permissions' => 'Unlock further protect options',
'protect-text' => "Here you may view and change the protection level for the page '''$1'''.",
'protect-locked-blocked' => "You cannot change protection levels while blocked.
Here are the current settings for the page '''$1''':",
'protect-locked-dblock' => "Protection levels cannot be changed due to an active database lock.
Here are the current settings for the page '''$1''':",
'protect-locked-access' => "Your account does not have permission to change page protection levels.
Here are the current settings for the page '''$1''':",
'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.
You can change this page's protection level, but it will not affect the cascading protection.",
'protect-default' => 'Allow all users',
'protect-fallback' => 'Allow only users with "$1" permission',
'protect-level-autoconfirmed' => 'Allow only autoconfirmed users',
'protect-level-sysop' => 'Allow only administrators',
'protect-summary-desc' => '[$1=$2] ($3)', # only translate this message to other languages if you have to change it
'protect-summary-cascade' => 'cascading',
'protect-expiring' => 'expires $1 (UTC)',
'protect-expiring-local' => 'expires $1',
'protect-expiry-indefinite' => 'indefinite',
'protect-cascade' => 'Protect pages included in this page (cascading protection)',
'protect-cantedit' => 'You cannot change the protection levels of this page because you do not have permission to edit it.',
'protect-othertime' => 'Other time:',
'protect-othertime-op' => 'other time',
'protect-existing-expiry' => 'Existing expiry time: $3, $2',
'protect-otherreason' => 'Other/additional reason:',
'protect-otherreason-op' => 'Other reason',
'protect-dropdown' => '*Common protection reasons
** Excessive vandalism
** Excessive spamming
** Counter-productive edit warring
** High traffic page',
'protect-edit-reasonlist' => 'Edit protection reasons',
'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',
'restriction-type' => 'Permission:',
'restriction-level' => 'Restriction level:',
'minimum-size' => 'Min size',
'maximum-size' => 'Max size:',
'pagesize' => '(bytes)',
# Restrictions (nouns)
'restriction-edit' => 'Edit',
'restriction-move' => 'Move',
'restriction-create' => 'Create',
'restriction-upload' => 'Upload',
# Restriction levels
'restriction-level-sysop' => 'fully protected',
'restriction-level-autoconfirmed' => 'semi protected',
'restriction-level-all' => 'any level',
# Undelete
'undelete' => 'View deleted pages',
'undelete-summary' => '', # do not translate or duplicate this message to other languages
'undeletepage' => 'View and restore deleted pages',
'undeletepagetitle' => "'''The following consists of deleted revisions of [[:$1|$1]]'''.",
'viewdeletedpage' => 'View deleted pages',
'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.
The archive may be periodically cleaned out.',
'undelete-fieldset-title' => 'Restore revisions',
'undeleteextrahelp' => "To restore the page's entire history, leave all checkboxes deselected and click '''''{{int:undeletebtn}}'''''.
To perform a selective restoration, check the boxes corresponding to the revisions to be restored, and click '''''{{int:undeletebtn}}'''''.",
'undeleterevisions' => '$1 {{PLURAL:$1|revision|revisions}} archived',
'undeletehistory' => 'If you restore the page, all revisions will be restored to the history.
If a new page with the same name has been created since the deletion, the restored revisions will appear in the prior history.',
'undeleterevdel' => 'Undeletion will not be performed if it will result in the top page or file revision being partially deleted.
In such cases, you must uncheck or unhide the newest deleted revision.',
'undeletehistorynoadmin' => 'This page has been deleted.
The reason for deletion is shown in the summary below, along with details of the users who had edited this page before deletion.
The actual text of these deleted revisions is only available to administrators.',
'undelete-revision' => 'Deleted revision of $1 (as of $4, at $5) by $3:',
'undeleterevision-missing' => 'Invalid or missing revision.
You may have a bad link, or the revision may have been restored or removed from the archive.',
'undelete-nodiff' => 'No previous revision found.',
'undeletebtn' => 'Restore',
'undeletelink' => 'view/restore',
'undeleteviewlink' => 'view',
'undeletereset' => 'Reset',
'undeleteinvert' => 'Invert selection',
'undeletecomment' => 'Reason:',
'undeletedrevisions' => '{{PLURAL:$1|1 revision|$1 revisions}} restored',
'undeletedrevisions-files' => '{{PLURAL:$1|1 revision|$1 revisions}} and {{PLURAL:$2|1 file|$2 files}} restored',
'undeletedfiles' => '{{PLURAL:$1|1 file|$1 files}} restored',
'cannotundelete' => 'Undelete failed:
$1',
'undeletedpage' => "'''$1 has been restored'''
Consult the [[Special:Log/delete|deletion log]] for a record of recent deletions and restorations.",
'undelete-header' => 'See [[Special:Log/delete|the deletion log]] for recently deleted pages.',
'undelete-search-title' => 'Search deleted pages',
'undelete-search-box' => 'Search deleted pages',
'undelete-search-prefix' => 'Show pages starting with:',
'undelete-search-submit' => 'Search',
'undelete-no-results' => 'No matching pages found in the deletion archive.',
'undelete-filename-mismatch' => 'Cannot undelete file revision with timestamp $1: Filename mismatch.',
'undelete-bad-store-key' => 'Cannot undelete file revision with timestamp $1: File was missing before deletion.',
'undelete-cleanup-error' => 'Error deleting unused archive file "$1".',
'undelete-missing-filearchive' => 'Unable to restore file archive ID $1 because it is not in the database.
It may have already been undeleted.',
'undelete-error' => 'Error undeleting page',
'undelete-error-short' => 'Error undeleting file: $1',
'undelete-error-long' => 'Errors were encountered while undeleting the file:
$1',
'undelete-show-file-confirm' => 'Are you sure you want to view the deleted revision of the file "#Put regular expression fragments (just the part that goes between the //) below #These will be matched with the URLs of external (hotlinked) images #Those that match will be displayed as images, otherwise only a link to the image will be shown #Lines beginning with # are treated as comments #This is case-insensitive #Put all regex fragments above this line. Leave this line exactly as it is', # Special:Tags 'tags' => 'Valid change tags', 'tags-summary' => '', # do not translate or duplicate this message to other languages 'tag-filter' => '[[Special:Tags|Tag]] filter:', 'tag-filter-submit' => 'Filter', 'tag-list-wrapper' => '([[Special:Tags|{{PLURAL:$1|Tag|Tags}}]]: $2)', 'tags-title' => 'Tags', 'tags-intro' => 'This page lists the tags that the software may mark an edit with, and their meaning.', 'tags-tag' => 'Tag name', 'tags-display-header' => 'Appearance on change lists', 'tags-description-header' => 'Full description of meaning', 'tags-active-header' => 'Active?', 'tags-hitcount-header' => 'Tagged changes', 'tags-active-yes' => 'Yes', 'tags-active-no' => 'No', 'tags-edit' => 'edit', 'tags-hitcount' => '$1 {{PLURAL:$1|change|changes}}', # Special:ComparePages 'comparepages' => 'Compare pages', 'comparepages-summary' => '', # do not translate or duplicate this message to other languages 'compare-selector' => 'Compare page revisions', 'compare-page1' => 'Page 1', 'compare-page2' => 'Page 2', 'compare-rev1' => 'Revision 1', 'compare-rev2' => 'Revision 2', 'compare-submit' => 'Compare', 'compare-invalid-title' => 'The title you specified is invalid.', 'compare-title-not-exists' => 'The title you specified does not exist.', 'compare-revision-not-exists' => 'The revision you specified does not exist.', # Database error messages 'dberr-header' => 'This wiki has a problem', 'dberr-problems' => 'Sorry! This site is experiencing technical difficulties.', 'dberr-again' => 'Try waiting a few minutes and reloading.', 'dberr-info' => '(Cannot contact the database server: $1)', 'dberr-info-hidden' => '(Cannot contact the database server)', 'dberr-usegoogle' => 'You can try searching via Google in the meantime.', 'dberr-outofdate' => 'Note that their indexes of our content may be out of date.', 'dberr-cachederror' => 'This is a cached copy of the requested page, and may not be up to date.', # HTML forms 'htmlform-invalid-input' => 'There are problems with some of your input', 'htmlform-select-badoption' => 'The value you specified is not a valid option.', 'htmlform-int-invalid' => 'The value you specified is not an integer.', 'htmlform-float-invalid' => 'The value you specified is not a number.', 'htmlform-int-toolow' => 'The value you specified is below the minimum of $1', 'htmlform-int-toohigh' => 'The value you specified is above the maximum of $1', 'htmlform-required' => 'This value is required', 'htmlform-submit' => 'Submit', 'htmlform-reset' => 'Undo changes', 'htmlform-selectorother-other' => 'Other', 'htmlform-no' => 'No', 'htmlform-yes' => 'Yes', 'htmlform-chosen-placeholder' => 'Select an option', # SQLite database support 'sqlite-has-fts' => '$1 with full-text search support', 'sqlite-no-fts' => '$1 without full-text search support', # New logging system 'logentry-delete-delete' => '$1 {{GENDER:$2|deleted}} page $3', 'logentry-delete-restore' => '$1 {{GENDER:$2|restored}} page $3', 'logentry-delete-event' => '$1 {{GENDER:$2|changed}} visibility of {{PLURAL:$5|a log event|$5 log events}} on $3: $4', 'logentry-delete-revision' => '$1 {{GENDER:$2|changed}} visibility of {{PLURAL:$5|a revision|$5 revisions}} on page $3: $4', 'logentry-delete-event-legacy' => '$1 {{GENDER:$2|changed}} visibility of log events on $3', 'logentry-delete-revision-legacy' => '$1 {{GENDER:$2|changed}} visibility of revisions on page $3', 'logentry-suppress-delete' => '$1 {{GENDER:$2|suppressed}} page $3', 'logentry-suppress-event' => '$1 secretly {{GENDER:$2|changed}} visibility of {{PLURAL:$5|a log event|$5 log events}} on $3: $4', 'logentry-suppress-revision' => '$1 secretly {{GENDER:$2|changed}} visibility of {{PLURAL:$5|a revision|$5 revisions}} on page $3: $4', 'logentry-suppress-event-legacy' => '$1 secretly {{GENDER:$2|changed}} visibility of log events on $3', 'logentry-suppress-revision-legacy' => '$1 secretly {{GENDER:$2|changed}} visibility of revisions on page $3', 'revdelete-content-hid' => 'content hidden', 'revdelete-summary-hid' => 'edit summary hidden', 'revdelete-uname-hid' => 'username hidden', 'revdelete-content-unhid' => 'content unhidden', 'revdelete-summary-unhid' => 'edit summary unhidden', 'revdelete-uname-unhid' => 'username unhidden', 'revdelete-restricted' => 'applied restrictions to administrators', 'revdelete-unrestricted' => 'removed restrictions for administrators', 'logentry-move-move' => '$1 {{GENDER:$2|moved}} page $3 to $4', 'logentry-move-move-noredirect' => '$1 {{GENDER:$2|moved}} page $3 to $4 without leaving a redirect', 'logentry-move-move_redir' => '$1 {{GENDER:$2|moved}} page $3 to $4 over redirect', 'logentry-move-move_redir-noredirect' => '$1 {{GENDER:$2|moved}} page $3 to $4 over a redirect without leaving a redirect', 'logentry-patrol-patrol' => '$1 {{GENDER:$2|marked}} revision $4 of page $3 patrolled', 'logentry-patrol-patrol-auto' => '$1 automatically {{GENDER:$2|marked}} revision $4 of page $3 patrolled', 'logentry-newusers-newusers' => 'User account $1 was {{GENDER:$2|created}}', 'logentry-newusers-create' => 'User account $1 was {{GENDER:$2|created}}', 'logentry-newusers-create2' => 'User account $3 was {{GENDER:$2|created}} by $1', 'logentry-newusers-byemail' => 'User account $3 was {{GENDER:$2|created}} by $1 and password was sent by email', 'logentry-newusers-autocreate' => 'User account $1 was {{GENDER:$2|created}} automatically', 'logentry-rights-rights' => '$1 {{GENDER:$2|changed}} group membership for $3 from $4 to $5', 'logentry-rights-rights-legacy' => '$1 {{GENDER:$2|changed}} group membership for $3', 'logentry-rights-autopromote' => '$1 was automatically {{GENDER:$2|promoted}} from $4 to $5', 'rightsnone' => '(none)', # For IRC, see bug 34508. Do not change 'revdelete-logentry' => 'changed revision visibility of "[[$1]]"', # do not translate or duplicate this message to other languages 'logdelete-logentry' => 'changed event visibility of "[[$1]]"', # do not translate or duplicate this message to other languages 'revdelete-content' => 'content', # do not translate or duplicate this message to other languages 'revdelete-summary' => 'edit summary', # do not translate or duplicate this message to other languages 'revdelete-uname' => 'username', # do not translate or duplicate this message to other languages 'revdelete-hid' => 'hid $1', # do not translate or duplicate this message to other languages 'revdelete-unhid' => 'unhid $1', # do not translate or duplicate this message to other languages 'revdelete-log-message' => '$1 for $2 {{PLURAL:$2|revision|revisions}}', # do not translate or duplicate this message to other languages 'logdelete-log-message' => '$1 for $2 {{PLURAL:$2|event|events}}', # do not translate or duplicate this message to other languages 'deletedarticle' => 'deleted "[[$1]]"', # do not translate or duplicate this message to other languages 'suppressedarticle' => 'suppressed "[[$1]]"', # do not translate or duplicate this message to other languages 'undeletedarticle' => 'restored "[[$1]]"', # do not translate or duplicate this message to other languages 'patrol-log-line' => 'marked $1 of $2 patrolled $3', # do not translate or duplicate this message to other languages 'patrol-log-auto' => '(automatic)', # do not translate or duplicate this message to other languages 'patrol-log-diff' => 'revision $1', # do not translate or duplicate this message to other languages '1movedto2' => 'moved [[$1]] to [[$2]]', # do not translate or duplicate this message to other languages '1movedto2_redir' => 'moved [[$1]] to [[$2]] over redirect', # do not translate or duplicate this message to other languages 'move-redirect-suppressed' => 'redirect suppressed', # do not translate or duplicate this message to other languages 'newuserlog-create-entry' => 'New user account', # do not translate or duplicate this message to other languages 'newuserlog-create2-entry' => 'created new account $1', # do not translate or duplicate this message to other languages 'newuserlog-autocreate-entry' => 'Account created automatically', # do not translate or duplicate this message to other languages 'rightslogentry' => 'changed group membership for $1 from $2 to $3', # do not translate or duplicate this message to other languages 'rightslogentry-autopromote' => 'was automatically promoted from $2 to $3', # do not translate or duplicate this message to other languages # Feedback 'feedback-bugornote' => 'If you are ready to describe a technical problem in detail please [$1 report a bug]. Otherwise, you can use the easy form below. Your comment will be added to the page "[$3 $2]", along with your username.', 'feedback-subject' => 'Subject:', 'feedback-message' => 'Message:', 'feedback-cancel' => 'Cancel', 'feedback-submit' => 'Submit Feedback', 'feedback-adding' => 'Adding feedback to page...', 'feedback-error1' => 'Error: Unrecognized result from API', 'feedback-error2' => 'Error: Edit failed', 'feedback-error3' => 'Error: No response from API', 'feedback-thanks' => 'Thanks! Your feedback has been posted to the page "[$2 $1]".', 'feedback-close' => 'Done', 'feedback-bugcheck' => 'Great! Just check that it is not already one of the [$1 known bugs].', 'feedback-bugnew' => 'I checked. Report a new bug', # Search suggestions 'searchsuggest-search' => 'Search', 'searchsuggest-containing' => 'containing...', # API errors 'api-error-badaccess-groups' => 'You are not permitted to upload files to this wiki.', 'api-error-badtoken' => 'Internal error: Bad token.', 'api-error-copyuploaddisabled' => 'Uploading by URL is disabled on this server.', 'api-error-duplicate' => 'There {{PLURAL:$1|is [$2 another file]|are [$2 some other files]}} already on the site with the same content.', '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.', 'api-error-duplicate-archive-popup-title' => 'Duplicate {{PLURAL:$1|file that has|files that have}} already been deleted.', 'api-error-duplicate-popup-title' => 'Duplicate {{PLURAL:$1|file|files}}.', 'api-error-empty-file' => 'The file you submitted was empty.', 'api-error-emptypage' => 'Creating new, empty pages is not allowed.', 'api-error-fetchfileerror' => 'Internal error: Something went wrong while fetching the file.', 'api-error-fileexists-forbidden' => 'A file with name "$1" already exists, and cannot be overwritten.', 'api-error-fileexists-shared-forbidden' => 'A file with name "$1" already exists in the shared file repository, and cannot be overwritten.', 'api-error-file-too-large' => 'The file you submitted was too large.', 'api-error-filename-tooshort' => 'The filename is too short.', 'api-error-filetype-banned' => 'This type of file is banned.', '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.', 'api-error-filetype-missing' => 'The filename is missing an extension.', 'api-error-hookaborted' => 'The modification you tried to make was aborted by an extension.', 'api-error-http' => 'Internal error: Unable to connect to server.', 'api-error-illegal-filename' => 'The filename is not allowed.', 'api-error-internal-error' => 'Internal error: Something went wrong with processing your upload on the wiki.', 'api-error-invalid-file-key' => 'Internal error: File was not found in temporary storage.', 'api-error-missingparam' => 'Internal error: Missing parameters on request.', 'api-error-missingresult' => 'Internal error: Could not determine if the copy succeeded.', 'api-error-mustbeloggedin' => 'You must be logged in to upload files.', 'api-error-mustbeposted' => 'Internal error: Request requires HTTP POST.', 'api-error-noimageinfo' => 'The upload succeeded, but the server did not give us any information about the file.', 'api-error-nomodule' => 'Internal error: No upload module set.', 'api-error-ok-but-empty' => 'Internal error: No response from server.', 'api-error-overwrite' => 'Overwriting an existing file is not allowed.', 'api-error-stashfailed' => 'Internal error: Server failed to store temporary file.', 'api-error-publishfailed' => 'Internal error: Server failed to publish temporary file.', 'api-error-timeout' => 'The server did not respond within the expected time.', 'api-error-unclassified' => 'An unknown error occurred.', 'api-error-unknown-code' => 'Unknown error: "$1".', 'api-error-unknown-error' => 'Internal error: Something went wrong when trying to upload your file.', 'api-error-unknown-warning' => 'Unknown warning: "$1".', 'api-error-unknownerror' => 'Unknown error: "$1".', 'api-error-uploaddisabled' => 'Uploading is disabled on this wiki.', 'api-error-verification-error' => 'This file might be corrupt, or have the wrong extension.', # Durations 'duration-seconds' => '$1 {{PLURAL:$1|second|seconds}}', 'duration-minutes' => '$1 {{PLURAL:$1|minute|minutes}}', 'duration-hours' => '$1 {{PLURAL:$1|hour|hours}}', 'duration-days' => '$1 {{PLURAL:$1|day|days}}', 'duration-weeks' => '$1 {{PLURAL:$1|week|weeks}}', 'duration-years' => '$1 {{PLURAL:$1|year|years}}', 'duration-decades' => '$1 {{PLURAL:$1|decade|decades}}', 'duration-centuries' => '$1 {{PLURAL:$1|century|centuries}}', 'duration-millennia' => '$1 {{PLURAL:$1|millennium|millennia}}', # Image rotation 'rotate-comment' => 'Image rotated by $1 {{PLURAL:$1|degree|degrees}} clockwise', # Limit report 'limitreport-title' => 'Parser profiling data:', 'limitreport-cputime' => 'CPU time usage', 'limitreport-cputime-value' => '$1 {{PLURAL:$1|second|seconds}}', 'limitreport-walltime' => 'Real time usage', 'limitreport-walltime-value' => '$1 {{PLURAL:$1|second|seconds}}', 'limitreport-ppvisitednodes' => 'Preprocessor visited node count', 'limitreport-ppvisitednodes-value' => '$1/$2', # only translate this message to other languages if you have to change it 'limitreport-ppgeneratednodes' => 'Preprocessor generated node count', 'limitreport-ppgeneratednodes-value' => '$1/$2', # only translate this message to other languages if you have to change it 'limitreport-postexpandincludesize' => 'Post-expand include size', 'limitreport-postexpandincludesize-value' => '$1/$2 {{PLURAL:$2|byte|bytes}}', 'limitreport-templateargumentsize' => 'Template argument size', 'limitreport-templateargumentsize-value' => '$1/$2 {{PLURAL:$2|byte|bytes}}', 'limitreport-expansiondepth' => 'Highest expansion depth', 'limitreport-expansiondepth-value' => '$1/$2', # only translate this message to other languages if you have to change it 'limitreport-expensivefunctioncount' => 'Expensive parser function count', 'limitreport-expensivefunctioncount-value' => '$1/$2', # only translate this message to other languages if you have to change it );