00001 <?php
00020 $fallback = false;
00021
00027 $rtl = false;
00028
00032 $digitTransformTable = null;
00033
00037 $separatorTransformTable = null;
00038
00042 $defaultUserOptionOverrides = array();
00043
00049 $extraUserToggles = array();
00050
00057 $fallback8bitEncoding = 'windows-1252';
00058
00062 $linkPrefixExtension = false;
00063
00080 $namespaceNames = array(
00081 NS_MEDIA => 'Media',
00082 NS_SPECIAL => 'Special',
00083 NS_MAIN => '',
00084 NS_TALK => 'Talk',
00085 NS_USER => 'User',
00086 NS_USER_TALK => 'User_talk',
00087 # NS_PROJECT set by $wgMetaNamespace
00088 NS_PROJECT_TALK => '$1_talk',
00089 NS_FILE => 'File',
00090 NS_FILE_TALK => 'File_talk',
00091 NS_MEDIAWIKI => 'MediaWiki',
00092 NS_MEDIAWIKI_TALK => 'MediaWiki_talk',
00093 NS_TEMPLATE => 'Template',
00094 NS_TEMPLATE_TALK => 'Template_talk',
00095 NS_HELP => 'Help',
00096 NS_HELP_TALK => 'Help_talk',
00097 NS_CATEGORY => 'Category',
00098 NS_CATEGORY_TALK => 'Category_talk',
00099 );
00100
00104 $namespaceAliases = array();
00105
00109 $mathNames = array(
00110 MW_MATH_PNG => 'mw_math_png',
00111 MW_MATH_SIMPLE => 'mw_math_simple',
00112 MW_MATH_HTML => 'mw_math_html',
00113 MW_MATH_SOURCE => 'mw_math_source',
00114 MW_MATH_MODERN => 'mw_math_modern',
00115 MW_MATH_MATHML => 'mw_math_mathml'
00116 );
00117
00127 $datePreferences = array(
00128 'default',
00129 'mdy',
00130 'dmy',
00131 'ymd',
00132 'ISO 8601',
00133 );
00134
00141 $defaultDateFormat = 'dmy or mdy';
00142
00147 $datePreferenceMigrationMap = array(
00148 'default',
00149 'mdy',
00150 'dmy',
00151 'ymd'
00152 );
00153
00162 $dateFormats = array(
00163 'mdy time' => 'H:i',
00164 'mdy date' => 'F j, Y',
00165 'mdy both' => 'H:i, F j, Y',
00166
00167 'dmy time' => 'H:i',
00168 'dmy date' => 'j F Y',
00169 'dmy both' => 'H:i, j F Y',
00170
00171 'ymd time' => 'H:i',
00172 'ymd date' => 'Y F j',
00173 'ymd both' => 'H:i, Y F j',
00174
00175 'ISO 8601 time' => 'xnH:xni:xns',
00176 'ISO 8601 date' => 'xnY-xnm-xnd',
00177 'ISO 8601 both' => 'xnY-xnm-xnd"T"xnH:xni:xns',
00178 );
00179
00183 $bookstoreList = array(
00184 'AddALL' => 'http://www.addall.com/New/Partner.cgi?query=$1&type=ISBN',
00185 'PriceSCAN' => 'http://www.pricescan.com/books/bookDetail.asp?isbn=$1',
00186 'Barnes & Noble' => 'http://search.barnesandnoble.com/bookSearch/isbnInquiry.asp?isbn=$1',
00187 'Amazon.com' => 'http://www.amazon.com/exec/obidos/ISBN=$1'
00188 );
00189
00202 $magicWords = array(
00203 # ID CASE SYNONYMS
00204 'redirect' => array( 0, '#REDIRECT' ),
00205 'notoc' => array( 0, '__NOTOC__' ),
00206 'nogallery' => array( 0, '__NOGALLERY__' ),
00207 'forcetoc' => array( 0, '__FORCETOC__' ),
00208 'toc' => array( 0, '__TOC__' ),
00209 'noeditsection' => array( 0, '__NOEDITSECTION__' ),
00210 'noheader' => array( 0, '__NOHEADER__' ),
00211 'currentmonth' => array( 1, 'CURRENTMONTH' ),
00212 'currentmonthname' => array( 1, 'CURRENTMONTHNAME' ),
00213 'currentmonthnamegen' => array( 1, 'CURRENTMONTHNAMEGEN' ),
00214 'currentmonthabbrev' => array( 1, 'CURRENTMONTHABBREV' ),
00215 'currentday' => array( 1, 'CURRENTDAY' ),
00216 'currentday2' => array( 1, 'CURRENTDAY2' ),
00217 'currentdayname' => array( 1, 'CURRENTDAYNAME' ),
00218 'currentyear' => array( 1, 'CURRENTYEAR' ),
00219 'currenttime' => array( 1, 'CURRENTTIME' ),
00220 'currenthour' => array( 1, 'CURRENTHOUR' ),
00221 'localmonth' => array( 1, 'LOCALMONTH' ),
00222 'localmonthname' => array( 1, 'LOCALMONTHNAME' ),
00223 'localmonthnamegen' => array( 1, 'LOCALMONTHNAMEGEN' ),
00224 'localmonthabbrev' => array( 1, 'LOCALMONTHABBREV' ),
00225 'localday' => array( 1, 'LOCALDAY' ),
00226 'localday2' => array( 1, 'LOCALDAY2' ),
00227 'localdayname' => array( 1, 'LOCALDAYNAME' ),
00228 'localyear' => array( 1, 'LOCALYEAR' ),
00229 'localtime' => array( 1, 'LOCALTIME' ),
00230 'localhour' => array( 1, 'LOCALHOUR' ),
00231 'numberofpages' => array( 1, 'NUMBEROFPAGES' ),
00232 'numberofarticles' => array( 1, 'NUMBEROFARTICLES' ),
00233 'numberoffiles' => array( 1, 'NUMBEROFFILES' ),
00234 'numberofusers' => array( 1, 'NUMBEROFUSERS' ),
00235 'numberofactiveusers' => array( 1, 'NUMBEROFACTIVEUSERS' ),
00236 'numberofedits' => array( 1, 'NUMBEROFEDITS' ),
00237 'numberofviews' => array( 1, 'NUMBEROFVIEWS' ),
00238 'pagename' => array( 1, 'PAGENAME' ),
00239 'pagenamee' => array( 1, 'PAGENAMEE' ),
00240 'namespace' => array( 1, 'NAMESPACE' ),
00241 'namespacee' => array( 1, 'NAMESPACEE' ),
00242 'talkspace' => array( 1, 'TALKSPACE' ),
00243 'talkspacee' => array( 1, 'TALKSPACEE' ),
00244 'subjectspace' => array( 1, 'SUBJECTSPACE', 'ARTICLESPACE' ),
00245 'subjectspacee' => array( 1, 'SUBJECTSPACEE', 'ARTICLESPACEE' ),
00246 'fullpagename' => array( 1, 'FULLPAGENAME' ),
00247 'fullpagenamee' => array( 1, 'FULLPAGENAMEE' ),
00248 'subpagename' => array( 1, 'SUBPAGENAME' ),
00249 'subpagenamee' => array( 1, 'SUBPAGENAMEE' ),
00250 'basepagename' => array( 1, 'BASEPAGENAME' ),
00251 'basepagenamee' => array( 1, 'BASEPAGENAMEE' ),
00252 'talkpagename' => array( 1, 'TALKPAGENAME' ),
00253 'talkpagenamee' => array( 1, 'TALKPAGENAMEE' ),
00254 'subjectpagename' => array( 1, 'SUBJECTPAGENAME', 'ARTICLEPAGENAME' ),
00255 'subjectpagenamee' => array( 1, 'SUBJECTPAGENAMEE', 'ARTICLEPAGENAMEE' ),
00256 'msg' => array( 0, 'MSG:' ),
00257 'subst' => array( 0, 'SUBST:' ),
00258 'msgnw' => array( 0, 'MSGNW:' ),
00259 'img_thumbnail' => array( 1, 'thumbnail', 'thumb' ),
00260 'img_manualthumb' => array( 1, 'thumbnail=$1', 'thumb=$1'),
00261 'img_right' => array( 1, 'right' ),
00262 'img_left' => array( 1, 'left' ),
00263 'img_none' => array( 1, 'none' ),
00264 'img_width' => array( 1, '$1px' ),
00265 'img_center' => array( 1, 'center', 'centre' ),
00266 'img_framed' => array( 1, 'framed', 'enframed', 'frame' ),
00267 'img_frameless' => array( 1, 'frameless' ),
00268 'img_page' => array( 1, 'page=$1', 'page $1' ),
00269 'img_upright' => array( 1, 'upright', 'upright=$1', 'upright $1' ),
00270 'img_border' => array( 1, 'border' ),
00271 'img_baseline' => array( 1, 'baseline' ),
00272 'img_sub' => array( 1, 'sub' ),
00273 'img_super' => array( 1, 'super', 'sup' ),
00274 'img_top' => array( 1, 'top' ),
00275 'img_text_top' => array( 1, 'text-top' ),
00276 'img_middle' => array( 1, 'middle' ),
00277 'img_bottom' => array( 1, 'bottom' ),
00278 'img_text_bottom' => array( 1, 'text-bottom' ),
00279 'img_link' => array( 1, 'link=$1' ),
00280 'img_alt' => array( 1, 'alt=$1' ),
00281 'int' => array( 0, 'INT:' ),
00282 'sitename' => array( 1, 'SITENAME' ),
00283 'ns' => array( 0, 'NS:' ),
00284 'localurl' => array( 0, 'LOCALURL:' ),
00285 'localurle' => array( 0, 'LOCALURLE:' ),
00286 'server' => array( 0, 'SERVER' ),
00287 'servername' => array( 0, 'SERVERNAME' ),
00288 'scriptpath' => array( 0, 'SCRIPTPATH' ),
00289 'grammar' => array( 0, 'GRAMMAR:' ),
00290 'gender' => array( 0, 'GENDER:' ),
00291 'notitleconvert' => array( 0, '__NOTITLECONVERT__', '__NOTC__'),
00292 'nocontentconvert' => array( 0, '__NOCONTENTCONVERT__', '__NOCC__'),
00293 'currentweek' => array( 1, 'CURRENTWEEK' ),
00294 'currentdow' => array( 1, 'CURRENTDOW' ),
00295 'localweek' => array( 1, 'LOCALWEEK' ),
00296 'localdow' => array( 1, 'LOCALDOW' ),
00297 'revisionid' => array( 1, 'REVISIONID' ),
00298 'revisionday' => array( 1, 'REVISIONDAY' ),
00299 'revisionday2' => array( 1, 'REVISIONDAY2' ),
00300 'revisionmonth' => array( 1, 'REVISIONMONTH' ),
00301 'revisionyear' => array( 1, 'REVISIONYEAR' ),
00302 'revisiontimestamp' => array( 1, 'REVISIONTIMESTAMP' ),
00303 'revisionuser' => array( 1, 'REVISIONUSER' ),
00304 'plural' => array( 0, 'PLURAL:' ),
00305 'fullurl' => array( 0, 'FULLURL:' ),
00306 'fullurle' => array( 0, 'FULLURLE:' ),
00307 'lcfirst' => array( 0, 'LCFIRST:' ),
00308 'ucfirst' => array( 0, 'UCFIRST:' ),
00309 'lc' => array( 0, 'LC:' ),
00310 'uc' => array( 0, 'UC:' ),
00311 'raw' => array( 0, 'RAW:' ),
00312 'displaytitle' => array( 1, 'DISPLAYTITLE' ),
00313 'rawsuffix' => array( 1, 'R' ),
00314 'newsectionlink' => array( 1, '__NEWSECTIONLINK__' ),
00315 'nonewsectionlink' => array( 1, '__NONEWSECTIONLINK__' ),
00316 'currentversion' => array( 1, 'CURRENTVERSION' ),
00317 'urlencode' => array( 0, 'URLENCODE:' ),
00318 'anchorencode' => array( 0, 'ANCHORENCODE' ),
00319 'currenttimestamp' => array( 1, 'CURRENTTIMESTAMP' ),
00320 'localtimestamp' => array( 1, 'LOCALTIMESTAMP' ),
00321 'directionmark' => array( 1, 'DIRECTIONMARK', 'DIRMARK' ),
00322 'language' => array( 0, '#LANGUAGE:' ),
00323 'contentlanguage' => array( 1, 'CONTENTLANGUAGE', 'CONTENTLANG' ),
00324 'pagesinnamespace' => array( 1, 'PAGESINNAMESPACE:', 'PAGESINNS:' ),
00325 'numberofadmins' => array( 1, 'NUMBEROFADMINS' ),
00326 'formatnum' => array( 0, 'FORMATNUM' ),
00327 'padleft' => array( 0, 'PADLEFT' ),
00328 'padright' => array( 0, 'PADRIGHT' ),
00329 'special' => array( 0, 'special', ),
00330 'defaultsort' => array( 1, 'DEFAULTSORT:', 'DEFAULTSORTKEY:', 'DEFAULTCATEGORYSORT:' ),
00331 'filepath' => array( 0, 'FILEPATH:' ),
00332 'tag' => array( 0, 'tag' ),
00333 'hiddencat' => array( 1, '__HIDDENCAT__' ),
00334 'pagesincategory' => array( 1, 'PAGESINCATEGORY', 'PAGESINCAT' ),
00335 'pagesize' => array( 1, 'PAGESIZE' ),
00336 'index' => array( 1, '__INDEX__' ),
00337 'noindex' => array( 1, '__NOINDEX__' ),
00338 'numberingroup' => array( 1, 'NUMBERINGROUP', 'NUMINGROUP' ),
00339 'staticredirect' => array( 1, '__STATICREDIRECT__' ),
00340 'protectionlevel' => array( 1, 'PROTECTIONLEVEL' ),
00341 'formatdate' => array( 0, 'formatdate', 'dateformat' ),
00342 );
00343
00352 $specialPageAliases = array(
00353 'DoubleRedirects' => array( 'DoubleRedirects' ),
00354 'BrokenRedirects' => array( 'BrokenRedirects' ),
00355 'Disambiguations' => array( 'Disambiguations' ),
00356 'Userlogin' => array( 'UserLogin' ),
00357 'Userlogout' => array( 'UserLogout' ),
00358 'CreateAccount' => array( 'CreateAccount' ),
00359 'Preferences' => array( 'Preferences' ),
00360 'Watchlist' => array( 'Watchlist' ),
00361 'Recentchanges' => array( 'RecentChanges' ),
00362 'Upload' => array( 'Upload' ),
00363 'Listfiles' => array( 'ListFiles', 'FileList', 'ImageList' ),
00364 'Newimages' => array( 'NewFiles', 'NewImages' ),
00365 'Listusers' => array( 'ListUsers', 'UserList' ),
00366 'Listgrouprights' => array( 'ListGroupRights', 'UserGroupRights' ),
00367 'Statistics' => array( 'Statistics' ),
00368 'Randompage' => array( 'Random', 'RandomPage' ),
00369 'Lonelypages' => array( 'LonelyPages', 'OrphanedPages' ),
00370 'Uncategorizedpages' => array( 'UncategorizedPages' ),
00371 'Uncategorizedcategories' => array( 'UncategorizedCategories' ),
00372 'Uncategorizedimages' => array( 'UncategorizedFiles', 'UncategorizedImages' ),
00373 'Uncategorizedtemplates' => array( 'UncategorizedTemplates' ),
00374 'Unusedcategories' => array( 'UnusedCategories' ),
00375 'Unusedimages' => array( 'UnusedFiles', 'UnusedImages' ),
00376 'Wantedpages' => array( 'WantedPages', 'BrokenLinks' ),
00377 'Wantedcategories' => array( 'WantedCategories' ),
00378 'Wantedfiles' => array( 'WantedFiles' ),
00379 'Wantedtemplates' => array( 'WantedTemplates' ),
00380 'Mostlinked' => array( 'MostLinkedPages', 'MostLinked' ),
00381 'Mostlinkedcategories' => array( 'MostLinkedCategories', 'MostUsedCategories' ),
00382 'Mostlinkedtemplates' => array( 'MostLinkedTemplates', 'MostUsedTemplates' ),
00383 'Mostimages' => array( 'MostLinkedFiles', 'MostFiles', 'MostImages' ),
00384 'Mostcategories' => array( 'MostCategories' ),
00385 'Mostrevisions' => array( 'MostRevisions' ),
00386 'Fewestrevisions' => array( 'FewestRevisions' ),
00387 'Shortpages' => array( 'ShortPages' ),
00388 'Longpages' => array( 'LongPages' ),
00389 'Newpages' => array( 'NewPages' ),
00390 'Ancientpages' => array( 'AncientPages' ),
00391 'Deadendpages' => array( 'DeadendPages' ),
00392 'Protectedpages' => array( 'ProtectedPages' ),
00393 'Protectedtitles' => array( 'ProtectedTitles' ),
00394 'Allpages' => array( 'AllPages' ),
00395 'Prefixindex' => array( 'PrefixIndex' ) ,
00396 'Ipblocklist' => array( 'BlockList', 'ListBlocks', 'IPBlockList' ),
00397 'Specialpages' => array( 'SpecialPages' ),
00398 'Contributions' => array( 'Contributions' ),
00399 'Emailuser' => array( 'EmailUser' ),
00400 'Confirmemail' => array( 'ConfirmEmail' ),
00401 'Whatlinkshere' => array( 'WhatLinksHere' ),
00402 'Recentchangeslinked' => array( 'RecentChangesLinked', 'RelatedChanges' ),
00403 'Movepage' => array( 'MovePage' ),
00404 'Blockme' => array( 'BlockMe' ),
00405 'Booksources' => array( 'BookSources' ),
00406 'Categories' => array( 'Categories' ),
00407 'Export' => array( 'Export' ),
00408 'Version' => array( 'Version' ),
00409 'Allmessages' => array( 'AllMessages' ),
00410 'Log' => array( 'Log', 'Logs' ),
00411 'Blockip' => array( 'Block', 'BlockIP', 'BlockUser' ),
00412 'Undelete' => array( 'Undelete' ),
00413 'Import' => array( 'Import' ),
00414 'Lockdb' => array( 'LockDB' ),
00415 'Unlockdb' => array( 'UnlockDB' ),
00416 'Userrights' => array( 'UserRights' ),
00417 'MIMEsearch' => array( 'MIMESearch' ),
00418 'FileDuplicateSearch' => array( 'FileDuplicateSearch' ),
00419 'Unwatchedpages' => array( 'UnwatchedPages' ),
00420 'Listredirects' => array( 'ListRedirects' ),
00421 'Revisiondelete' => array( 'RevisionDelete' ),
00422 'Unusedtemplates' => array( 'UnusedTemplates' ),
00423 'Randomredirect' => array( 'RandomRedirect' ),
00424 'Mypage' => array( 'MyPage' ),
00425 'Mytalk' => array( 'MyTalk' ),
00426 'Mycontributions' => array( 'MyContributions' ),
00427 'Listadmins' => array( 'ListAdmins' ),
00428 'Listbots' => array( 'ListBots' ),
00429 'Popularpages' => array( 'PopularPages' ),
00430 'Search' => array( 'Search' ),
00431 'Resetpass' => array( 'ChangePassword', 'ResetPass', 'ResetPassword' ),
00432 'Withoutinterwiki' => array( 'WithoutInterwiki' ),
00433 'MergeHistory' => array( 'MergeHistory' ),
00434 'Filepath' => array( 'FilePath' ),
00435 'Invalidateemail' => array( 'InvalidateEmail' ),
00436 'Blankpage' => array( 'BlankPage' ),
00437 'LinkSearch' => array( 'LinkSearch' ),
00438 'DeletedContributions' => array( 'DeletedContributions' ),
00439 'Tags' => array( 'Tags' ),
00440 );
00441
00446 $linkTrail = '/^([a-z]+)(.*)$/sD';
00447
00452 $imageFiles = array(
00453 'button-bold' => 'button_bold.png',
00454 'button-italic' => 'button_italic.png',
00455 'button-link' => 'button_link.png',
00456 'button-extlink' => 'button_extlink.png',
00457 'button-headline' => 'button_headline.png',
00458 'button-image' => 'button_image.png',
00459 'button-media' => 'button_media.png',
00460 'button-math' => 'button_math.png',
00461 'button-nowiki' => 'button_nowiki.png',
00462 'button-sig' => 'button_sig.png',
00463 'button-hr' => 'button_hr.png',
00464 );
00465
00466 #-------------------------------------------------------------------
00467 # Default messages
00468 #-------------------------------------------------------------------
00469 # Allowed characters in keys are: A-Z, a-z, 0-9, underscore (_) and
00470 # hyphen (-). If you need more characters, you may be able to change
00471 # the regex in MagicWord::initRegex
00472
00473 $messages = array(
00474
00475
00476
00477
00478
00479
00480
00481
00482 'sidebar' => '
00483 * navigation
00484 ** mainpage|mainpage-description
00485 ** portal-url|portal
00486 ** currentevents-url|currentevents
00487 ** recentchanges-url|recentchanges
00488 ** randompage-url|randompage
00489 ** helppage|help
00490 * SEARCH
00491 * TOOLBOX
00492 * LANGUAGES', # do not translate or duplicate this message to other languages
00493
00494 # User preference toggles
00495 'tog-underline' => 'Link underlining:',
00496 'tog-highlightbroken' => 'Format broken links <a href="" class="new">like this</a> (alternative: like this<a href="" class="internal">?</a>)',
00497 'tog-justify' => 'Justify paragraphs',
00498 'tog-hideminor' => 'Hide minor edits in recent changes',
00499 'tog-hidepatrolled' => 'Hide patrolled edits in recent changes',
00500 'tog-newpageshidepatrolled' => 'Hide patrolled pages from new page list',
00501 'tog-extendwatchlist' => 'Expand watchlist to show all changes, not just the most recent',
00502 'tog-usenewrc' => 'Use enhanced recent changes (requires JavaScript)',
00503 'tog-numberheadings' => 'Auto-number headings',
00504 'tog-showtoolbar' => 'Show edit toolbar (requires JavaScript)',
00505 'tog-editondblclick' => 'Edit pages on double click (requires JavaScript)',
00506 'tog-editsection' => 'Enable section editing via [edit] links',
00507 'tog-editsectiononrightclick' => 'Enable section editing by right clicking on section titles (requires JavaScript)',
00508 'tog-showtoc' => 'Show table of contents (for pages with more than 3 headings)',
00509 'tog-rememberpassword' => 'Remember my login on this computer',
00510 'tog-editwidth' => 'Widen the edit box to fill the entire screen',
00511 'tog-watchcreations' => 'Add pages I create to my watchlist',
00512 'tog-watchdefault' => 'Add pages I edit to my watchlist',
00513 'tog-watchmoves' => 'Add pages I move to my watchlist',
00514 'tog-watchdeletion' => 'Add pages I delete to my watchlist',
00515 'tog-minordefault' => 'Mark all edits minor by default',
00516 'tog-previewontop' => 'Show preview before edit box',
00517 'tog-previewonfirst' => 'Show preview on first edit',
00518 'tog-nocache' => 'Disable page caching',
00519 'tog-enotifwatchlistpages' => 'E-mail me when a page on my watchlist is changed',
00520 'tog-enotifusertalkpages' => 'E-mail me when my user talk page is changed',
00521 'tog-enotifminoredits' => 'E-mail me also for minor edits of pages',
00522 'tog-enotifrevealaddr' => 'Reveal my e-mail address in notification e-mails',
00523 'tog-shownumberswatching' => 'Show the number of watching users',
00524 'tog-fancysig' => 'Treat signature as wikitext (without an automatic link)',
00525 'tog-externaleditor' => 'Use external editor by default (for experts only, needs special settings on your computer)',
00526 'tog-externaldiff' => 'Use external diff by default (for experts only, needs special settings on your computer)',
00527 'tog-showjumplinks' => 'Enable "jump to" accessibility links',
00528 'tog-uselivepreview' => 'Use live preview (requires JavaScript) (experimental)',
00529 'tog-forceeditsummary' => 'Prompt me when entering a blank edit summary',
00530 'tog-watchlisthideown' => 'Hide my edits from the watchlist',
00531 'tog-watchlisthidebots' => 'Hide bot edits from the watchlist',
00532 'tog-watchlisthideminor' => 'Hide minor edits from the watchlist',
00533 'tog-watchlisthideliu' => 'Hide edits by logged in users from the watchlist',
00534 'tog-watchlisthideanons' => 'Hide edits by anonymous users from the watchlist',
00535 'tog-watchlisthidepatrolled' => 'Hide patrolled edits from the watchlist',
00536 'tog-nolangconversion' => 'Disable variants conversion', # only translate this message to other languages if you have to change it
00537 'tog-ccmeonemails' => 'Send me copies of e-mails I send to other users',
00538 'tog-diffonly' => 'Do not show page content below diffs',
00539 'tog-showhiddencats' => 'Show hidden categories',
00540 'tog-noconvertlink' => 'Disable link title conversion', # only translate this message to other languages if you have to change it
00541 'tog-norollbackdiff' => 'Omit diff after performing a rollback',
00542
00543 'underline-always' => 'Always',
00544 'underline-never' => 'Never',
00545 'underline-default' => 'Browser default',
00546
00547 # Dates
00548 'sunday' => 'Sunday',
00549 'monday' => 'Monday',
00550 'tuesday' => 'Tuesday',
00551 'wednesday' => 'Wednesday',
00552 'thursday' => 'Thursday',
00553 'friday' => 'Friday',
00554 'saturday' => 'Saturday',
00555 'sun' => 'Sun',
00556 'mon' => 'Mon',
00557 'tue' => 'Tue',
00558 'wed' => 'Wed',
00559 'thu' => 'Thu',
00560 'fri' => 'Fri',
00561 'sat' => 'Sat',
00562 'january' => 'January',
00563 'february' => 'February',
00564 'march' => 'March',
00565 'april' => 'April',
00566 'may_long' => 'May',
00567 'june' => 'June',
00568 'july' => 'July',
00569 'august' => 'August',
00570 'september' => 'September',
00571 'october' => 'October',
00572 'november' => 'November',
00573 'december' => 'December',
00574 'january-gen' => 'January',
00575 'february-gen' => 'February',
00576 'march-gen' => 'March',
00577 'april-gen' => 'April',
00578 'may-gen' => 'May',
00579 'june-gen' => 'June',
00580 'july-gen' => 'July',
00581 'august-gen' => 'August',
00582 'september-gen' => 'September',
00583 'october-gen' => 'October',
00584 'november-gen' => 'November',
00585 'december-gen' => 'December',
00586 'jan' => 'Jan',
00587 'feb' => 'Feb',
00588 'mar' => 'Mar',
00589 'apr' => 'Apr',
00590 'may' => 'May',
00591 'jun' => 'Jun',
00592 'jul' => 'Jul',
00593 'aug' => 'Aug',
00594 'sep' => 'Sep',
00595 'oct' => 'Oct',
00596 'nov' => 'Nov',
00597 'dec' => 'Dec',
00598
00599 # Categories related messages
00600 'pagecategories' => '{{PLURAL:$1|Category|Categories}}',
00601 'pagecategorieslink' => 'Special:Categories', # do not translate or duplicate this message to other languages
00602 'category_header' => 'Pages in category "$1"',
00603 'subcategories' => 'Subcategories',
00604 'category-media-header' => 'Media in category "$1"',
00605 'category-empty' => "''This category currently contains no pages or media.''",
00606 'hidden-categories' => '{{PLURAL:$1|Hidden category|Hidden categories}}',
00607 'hidden-category-category' => 'Hidden categories', # Name of the category where hidden categories will be listed
00608 '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.}}',
00609 'category-subcat-count-limited' => 'This category has the following {{PLURAL:$1|subcategory|$1 subcategories}}.',
00610 '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.}}',
00611 'category-article-count-limited' => 'The following {{PLURAL:$1|page is|$1 pages are}} in the current category.',
00612 '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.}}',
00613 'category-file-count-limited' => 'The following {{PLURAL:$1|file is|$1 files are}} in the current category.',
00614 'listingcontinuesabbrev' => 'cont.',
00615
00616 'linkprefix' => '/^(.*?)([a-zA-Z\\x80-\\xff]+)$/sD', # only translate this message to other languages if you have to change it
00617 'mainpagetext' => "'''MediaWiki has been successfully installed.'''",
00618 'mainpagedocfooter' => "Consult the [http://meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software.
00619
00620 == Getting started ==
00621 * [http://www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]
00622 * [http://www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]
00623 * [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]",
00624
00625 'about' => 'About',
00626 'article' => 'Content page',
00627 'newwindow' => '(opens in new window)',
00628 'cancel' => 'Cancel',
00629 'qbfind' => 'Find',
00630 'qbbrowse' => 'Browse',
00631 'qbedit' => 'Edit',
00632 'qbpageoptions' => 'This page',
00633 'qbpageinfo' => 'Context',
00634 'qbmyoptions' => 'My pages',
00635 'qbspecialpages' => 'Special pages',
00636 'moredotdotdot' => 'More…',
00637 'mypage' => 'My page',
00638 'mytalk' => 'My talk',
00639 'anontalk' => 'Talk for this IP',
00640 'navigation' => 'Navigation',
00641 'and' => ' and',
00642
00643 # Metadata in edit box
00644 'metadata_help' => 'Metadata:',
00645
00646 'errorpagetitle' => 'Error',
00647 'returnto' => 'Return to $1.',
00648 'tagline' => 'From {{SITENAME}}',
00649 'help' => 'Help',
00650 'search' => 'Search',
00651 'searchbutton' => 'Search',
00652 'go' => 'Go',
00653 'searcharticle' => 'Go',
00654 'history' => 'Page history',
00655 'history_short' => 'History',
00656 'updatedmarker' => 'updated since my last visit',
00657 'info_short' => 'Information',
00658 'printableversion' => 'Printable version',
00659 'permalink' => 'Permanent link',
00660 'print' => 'Print',
00661 'edit' => 'Edit',
00662 'create' => 'Create',
00663 'editthispage' => 'Edit this page',
00664 'create-this-page' => 'Create this page',
00665 'delete' => 'Delete',
00666 'deletethispage' => 'Delete this page',
00667 'undelete_short' => 'Undelete {{PLURAL:$1|one edit|$1 edits}}',
00668 'protect' => 'Protect',
00669 'protect_change' => 'change',
00670 'protectthispage' => 'Protect this page',
00671 'unprotect' => 'Unprotect',
00672 'unprotectthispage' => 'Unprotect this page',
00673 'newpage' => 'New page',
00674 'talkpage' => 'Discuss this page',
00675 'talkpagelinktext' => 'Talk',
00676 'specialpage' => 'Special page',
00677 'personaltools' => 'Personal tools',
00678 'postcomment' => 'New section',
00679 'addsection' => '+', # do not translate or duplicate this message to other languages
00680 'articlepage' => 'View content page',
00681 'talk' => 'Discussion',
00682 'views' => 'Views',
00683 'toolbox' => 'Toolbox',
00684 'userpage' => 'View user page',
00685 'projectpage' => 'View project page',
00686 'imagepage' => 'View file page',
00687 'mediawikipage' => 'View message page',
00688 'templatepage' => 'View template page',
00689 'viewhelppage' => 'View help page',
00690 'categorypage' => 'View category page',
00691 'viewtalkpage' => 'View discussion',
00692 'otherlanguages' => 'In other languages',
00693 'redirectedfrom' => '(Redirected from $1)',
00694 'redirectpagesub' => 'Redirect page',
00695 'lastmodifiedat' => 'This page was last modified on $1, at $2.', # $1 date, $2 time
00696 'viewcount' => 'This page has been accessed {{PLURAL:$1|once|$1 times}}.',
00697 'protectedpage' => 'Protected page',
00698 'jumpto' => 'Jump to:',
00699 'jumptonavigation' => 'navigation',
00700 'jumptosearch' => 'search',
00701
00702 # 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) and the disambiguation template definition (see disambiguations).
00703 'aboutsite' => 'About {{SITENAME}}',
00704 'aboutpage' => 'Project:About',
00705 'copyright' => 'Content is available under $1.',
00706 'copyrightpagename' => '{{SITENAME}} copyright',
00707 'copyrightpage' => '{{ns:project}}:Copyrights',
00708 'currentevents' => 'Current events',
00709 'currentevents-url' => 'Project:Current events',
00710 'disclaimers' => 'Disclaimers',
00711 'disclaimerpage' => 'Project:General disclaimer',
00712 'edithelp' => 'Editing help',
00713 'edithelppage' => 'Help:Editing',
00714 'faq' => 'FAQ',
00715 'faqpage' => 'Project:FAQ',
00716 'helppage' => 'Help:Contents',
00717 'mainpage' => 'Main Page',
00718 'mainpage-description' => 'Main page',
00719 'policy-url' => 'Project:Policy',
00720 'portal' => 'Community portal',
00721 'portal-url' => 'Project:Community Portal',
00722 'privacy' => 'Privacy policy',
00723 'privacypage' => 'Project:Privacy policy',
00724
00725 'badaccess' => 'Permission error',
00726 'badaccess-group0' => 'You are not allowed to execute the action you have requested.',
00727 'badaccess-groups' => 'The action you have requested is limited to users in {{PLURAL:$2|the group|one of the groups}}: $1.',
00728
00729 'versionrequired' => 'Version $1 of MediaWiki required',
00730 'versionrequiredtext' => 'Version $1 of MediaWiki is required to use this page.
00731 See [[Special:Version|version page]].',
00732
00733 'ok' => 'OK',
00734 'sitetitle' => '{{SITENAME}}', # do not translate or duplicate this message to other languages
00735 'pagetitle' => '$1 - {{SITENAME}}', # only translate this message to other languages if you have to change it
00736 'pagetitle-view-mainpage' => '{{SITENAME}}', # only translate this message to other languages if you have to change it
00737 'sitesubtitle' => '', # do not translate or duplicate this message to other languages
00738 'retrievedfrom' => 'Retrieved from "$1"',
00739 'youhavenewmessages' => 'You have $1 ($2).',
00740 'newmessageslink' => 'new messages',
00741 'newmessagesdifflink' => 'last change',
00742 'youhavenewmessagesmulti' => 'You have new messages on $1',
00743 'newtalkseparator' => ',_', # do not translate or duplicate this message to other languages
00744 'editsection' => 'edit',
00745 'editsection-brackets' => '[$1]', # only translate this message to other languages if you have to change it
00746 'editold' => 'edit',
00747 'viewsourceold' => 'view source',
00748 'editlink' => 'edit',
00749 'viewsourcelink' => 'view source',
00750 'editsectionhint' => 'Edit section: $1',
00751 'toc' => 'Contents',
00752 'showtoc' => 'show',
00753 'hidetoc' => 'hide',
00754 'thisisdeleted' => 'View or restore $1?',
00755 'viewdeleted' => 'View $1?',
00756 'restorelink' => '{{PLURAL:$1|one deleted edit|$1 deleted edits}}',
00757 'feedlinks' => 'Feed:',
00758 'feed-invalid' => 'Invalid subscription feed type.',
00759 'feed-unavailable' => 'Syndication feeds are not available',
00760 'site-rss-feed' => '$1 RSS feed',
00761 'site-atom-feed' => '$1 Atom feed',
00762 'page-rss-feed' => '"$1" RSS feed',
00763 'page-atom-feed' => '"$1" Atom feed',
00764 'feed-atom' => 'Atom', # only translate this message to other languages if you have to change it
00765 'feed-rss' => 'RSS', # only translate this message to other languages if you have to change it
00766 'sitenotice' => '-', # the equivalent to wgSiteNotice; do not translate or duplicate this message to other languages
00767 'anonnotice' => '-', # do not translate or duplicate this message to other languages
00768 'newsectionheaderdefaultlevel' => '== $1 ==', # do not translate or duplicate this message to other languages
00769 'red-link-title' => '$1 (page does not exist)',
00770
00771 # Short words for each namespace, by default used in the namespace tab in monobook
00772 'nstab-main' => 'Page',
00773 'nstab-user' => 'User page',
00774 'nstab-media' => 'Media page',
00775 'nstab-special' => 'Special page',
00776 'nstab-project' => 'Project page',
00777 'nstab-image' => 'File',
00778 'nstab-mediawiki' => 'Message',
00779 'nstab-template' => 'Template',
00780 'nstab-help' => 'Help page',
00781 'nstab-category' => 'Category',
00782
00783 # Main script and global functions
00784 'nosuchaction' => 'No such action',
00785 'nosuchactiontext' => 'The action specified by the URL is invalid.
00786 You might have mistyped the URL, or followed an incorrect link.
00787 This might also indicate a bug in the software used by {{SITENAME}}.',
00788 'nosuchspecialpage' => 'No such special page',
00789 'nospecialpagetext' => '<strong>You have requested an invalid special page.</strong>
00790
00791 A list of valid special pages can be found at [[Special:SpecialPages|{{int:specialpages}}]].',
00792
00793 # General errors
00794 'error' => 'Error',
00795 'databaseerror' => 'Database error',
00796 'dberrortext' => 'A database query syntax error has occurred.
00797 This may indicate a bug in the software.
00798 The last attempted database query was:
00799 <blockquote><tt>$1</tt></blockquote>
00800 from within function "<tt>$2</tt>".
00801 Database returned error "<tt>$3: $4</tt>".',
00802 'dberrortextcl' => 'A database query syntax error has occurred.
00803 The last attempted database query was:
00804 "$1"
00805 from within function "$2".
00806 Database returned error "$3: $4"',
00807 'noconnect' => 'Sorry! The wiki is experiencing some technical difficulties, and cannot contact the database server.<br />
00808 $1',
00809 'nodb' => 'Could not select database $1',
00810 'cachederror' => 'The following is a cached copy of the requested page, and may not be up to date.',
00811 'laggedslavemode' => "'''Warning:''' Page may not contain recent updates.",
00812 'readonly' => 'Database locked',
00813 'enterlockreason' => 'Enter a reason for the lock, including an estimate of when the lock will be released',
00814 '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.
00815
00816 The administrator who locked it offered this explanation: $1',
00817 'missing-article' => 'The database did not find the text of a page that it should have found, named "$1" $2.
00818
00819 This is usually caused by following an outdated diff or history link to a page that has been deleted.
00820
00821 If this is not the case, you may have found a bug in the software.
00822 Please report this to an [[Special:ListUsers/sysop|administrator]], making note of the URL.',
00823 'missingarticle-rev' => '(revision#: $1)',
00824 'missingarticle-diff' => '(Diff: $1, $2)',
00825 'readonly_lag' => 'The database has been automatically locked while the slave database servers catch up to the master',
00826 'internalerror' => 'Internal error',
00827 'internalerror_info' => 'Internal error: $1',
00828 'filecopyerror' => 'Could not copy file "$1" to "$2".',
00829 'filerenameerror' => 'Could not rename file "$1" to "$2".',
00830 'filedeleteerror' => 'Could not delete file "$1".',
00831 'directorycreateerror' => 'Could not create directory "$1".',
00832 'filenotfound' => 'Could not find file "$1".',
00833 'fileexistserror' => 'Unable to write to file "$1": file exists',
00834 'unexpected' => 'Unexpected value: "$1"="$2".',
00835 'formerror' => 'Error: could not submit form',
00836 'badarticleerror' => 'This action cannot be performed on this page.',
00837 'cannotdelete' => 'Could not delete the page or file specified.
00838 It may have already been deleted by someone else.',
00839 'badtitle' => 'Bad title',
00840 'badtitletext' => 'The requested page title was invalid, empty, or an incorrectly linked inter-language or inter-wiki title.
00841 It may contain one or more characters which cannot be used in titles.',
00842 'perfcached' => 'The following data is cached and may not be up to date.',
00843 'perfcachedts' => 'The following data is cached, and was last updated $1.',
00844 'querypage-no-updates' => 'Updates for this page are currently disabled.
00845 Data here will not presently be refreshed.',
00846 'wrong_wfQuery_params' => 'Incorrect parameters to wfQuery()<br />
00847 Function: $1<br />
00848 Query: $2',
00849 'viewsource' => 'View source',
00850 'viewsourcefor' => 'for $1',
00851 'actionthrottled' => 'Action throttled',
00852 '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.
00853 Please try again in a few minutes.',
00854 'protectedpagetext' => 'This page has been locked to prevent editing.',
00855 'viewsourcetext' => 'You can view and copy the source of this page:',
00856 'protectedinterface' => 'This page provides interface text for the software, and is locked to prevent abuse.',
00857 'editinginterface' => "'''Warning:''' You are editing a page which is used to provide interface text for the software.
00858 Changes to this page will affect the appearance of the user interface for other users.
00859 For translations, please consider using [http://translatewiki.net/wiki/Main_Page?setlang=en translatewiki.net], the MediaWiki localisation project.",
00860 'sqlhidden' => '(SQL query hidden)',
00861 '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:
00862 $2',
00863 'namespaceprotected' => "You do not have permission to edit pages in the '''$1''' namespace.",
00864 'customcssjsprotected' => "You do not have permission to edit this page, because it contains another user's personal settings.",
00865 'ns-specialprotected' => 'Special pages cannot be edited.',
00866 'titleprotected' => 'This title has been protected from creation by [[User:$1|$1]].
00867 The reason given is "\'\'$2\'\'".',
00868
00869 # Virus scanner
00870 'virus-badscanner' => "Bad configuration: unknown virus scanner: ''$1''",
00871 'virus-scanfailed' => 'scan failed (code $1)',
00872 'virus-unknownscanner' => 'unknown antivirus:',
00873
00874 # Login and logout pages
00875 'logouttitle' => 'User logout',
00876 'logouttext' => "'''You are now logged out.'''
00877
00878 You can continue to use {{SITENAME}} anonymously, or you can [[Special:UserLogin|log in again]] as the same or as a different user.
00879 Note that some pages may continue to be displayed as if you were still logged in, until you clear your browser cache.",
00880 'welcomecreation' => '== Welcome, $1! ==
00881 Your account has been created.
00882 Do not forget to change your [[Special:Preferences|{{SITENAME}} preferences]].',
00883 'loginpagetitle' => 'User login',
00884 'yourname' => 'Username:',
00885 'yourpassword' => 'Password:',
00886 'yourpasswordagain' => 'Retype password:',
00887 'remembermypassword' => 'Remember my login on this computer',
00888 'yourdomainname' => 'Your domain:',
00889 'externaldberror' => 'There was either an authentication database error or you are not allowed to update your external account.',
00890 'login' => 'Log in',
00891 'nav-login-createaccount' => 'Log in / create account',
00892 'loginprompt' => 'You must have cookies enabled to log in to {{SITENAME}}.',
00893 'userlogin' => 'Log in / create account',
00894 'logout' => 'Log out',
00895 'userlogout' => 'Log out',
00896 'notloggedin' => 'Not logged in',
00897 'nologin' => "Don't have an account? $1.",
00898 'nologinlink' => 'Create an account',
00899 'createaccount' => 'Create account',
00900 'gotaccount' => 'Already have an account? $1.',
00901 'gotaccountlink' => 'Log in',
00902 'createaccountmail' => 'By e-mail',
00903 'badretype' => 'The passwords you entered do not match.',
00904 'userexists' => 'Username entered already in use.
00905 Please choose a different name.',
00906 'youremail' => 'E-mail:',
00907 'username' => 'Username:',
00908 'uid' => 'User ID:',
00909 'prefs-memberingroups' => 'Member of {{PLURAL:$1|group|groups}}:',
00910 'yourrealname' => 'Real name:',
00911 'yourlanguage' => 'Language:',
00912 'yourvariant' => 'Variant:', # only translate this message to other languages if you have to change it
00913 'yournick' => 'Signature:',
00914 'badsig' => 'Invalid raw signature.
00915 Check HTML tags.',
00916 'badsiglength' => 'Your signature is too long.
00917 It must not be more than $1 {{PLURAL:$1|character|characters}} long.',
00918 'yourgender' => 'Gender:',
00919 'gender-unknown' => 'Unspecified',
00920 'gender-male' => 'Male',
00921 'gender-female' => 'Female',
00922 'prefs-help-gender' => 'Optional: used for gender-correct addressing by the software.
00923 This information will be public.',
00924 'email' => 'E-mail',
00925 'prefs-help-realname' => 'Real name is optional.
00926 If you choose to provide it, this will be used for giving you attribution for your work.',
00927 'loginerror' => 'Login error',
00928 'prefs-help-email' => 'E-mail address is optional, but allows a new password to be e-mailed to you if you forget your password.
00929 You can also choose to let others contact you through your user or talk page without needing to reveal your identity.',
00930 'prefs-help-email-required' => 'E-mail address is required.',
00931 'nocookiesnew' => 'The user account was created, but you are not logged in.
00932 {{SITENAME}} uses cookies to log in users.
00933 You have cookies disabled.
00934 Please enable them, then log in with your new username and password.',
00935 'nocookieslogin' => '{{SITENAME}} uses cookies to log in users.
00936 You have cookies disabled.
00937 Please enable them and try again.',
00938 'noname' => 'You have not specified a valid user name.',
00939 'loginsuccesstitle' => 'Login successful',
00940 'loginsuccess' => "'''You are now logged in to {{SITENAME}} as \"\$1\".'''",
00941 'nosuchuser' => 'There is no user by the name "$1".
00942 User names are case sensitive.
00943 Check your spelling, or [[Special:UserLogin/signup|create a new account]].',
00944 'nosuchusershort' => 'There is no user by the name "<nowiki>$1</nowiki>".
00945 Check your spelling.',
00946 'nouserspecified' => 'You have to specify a username.',
00947 'wrongpassword' => 'Incorrect password entered.
00948 Please try again.',
00949 'wrongpasswordempty' => 'Password entered was blank.
00950 Please try again.',
00951 'passwordtooshort' => 'Your password is invalid or too short.
00952 It must have at least {{PLURAL:$1|1 character|$1 characters}} and be different from your username.',
00953 'mailmypassword' => 'E-mail new password',
00954 'passwordremindertitle' => 'New temporary password for {{SITENAME}}',
00955 'passwordremindertext' => 'Someone (probably you, from IP address $1) requested a new
00956 password for {{SITENAME}} ($4). A temporary password for user
00957 "$2" has been created and was set to "$3". If this was your
00958 intent, you will need to log in and choose a new password now.
00959 Your temporary password will expire in {{PLURAL:$5|one day|$5 days}}.
00960
00961 If someone else made this request, or if you have remembered your password,
00962 and you no longer wish to change it, you may ignore this message and
00963 continue using your old password.',
00964 'noemail' => 'There is no e-mail address recorded for user "$1".',
00965 'passwordsent' => 'A new password has been sent to the e-mail address registered for "$1".
00966 Please log in again after you receive it.',
00967 'blocked-mailpassword' => 'Your IP address is blocked from editing, and so is not allowed to use the password recovery function to prevent abuse.',
00968 'eauthentsent' => 'A confirmation e-mail has been sent to the nominated e-mail address.
00969 Before any other e-mail is sent to the account, you will have to follow the instructions in the e-mail, to confirm that the account is actually yours.',
00970 'throttled-mailpassword' => 'A password reminder has already been sent, within the last {{PLURAL:$1|hour|$1 hours}}.
00971 To prevent abuse, only one password reminder will be sent per {{PLURAL:$1|hour|$1 hours}}.',
00972 'loginstart' => '', # do not translate or duplicate this message to other languages
00973 'loginend' => '', # do not translate or duplicate this message to other languages
00974 'signupend' => '{{int:loginend}}', # do not translate or duplicate this message to other languages
00975 'mailerror' => 'Error sending mail: $1',
00976 '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.
00977 As a result, visitors using this IP address cannot create any more accounts at the moment.',
00978 'emailauthenticated' => 'Your e-mail address was authenticated on $2 at $3.',
00979 'emailnotauthenticated' => 'Your e-mail address is not yet authenticated.
00980 No e-mail will be sent for any of the following features.',
00981 'noemailprefs' => 'Specify an e-mail address in your preferences for these features to work.',
00982 'emailconfirmlink' => 'Confirm your e-mail address',
00983 'invalidemailaddress' => 'The e-mail address cannot be accepted as it appears to have an invalid format.
00984 Please enter a well-formatted address or empty that field.',
00985 'accountcreated' => 'Account created',
00986 'accountcreatedtext' => 'The user account for $1 has been created.',
00987 'createaccount-title' => 'Account creation for {{SITENAME}}',
00988 'createaccount-text' => 'Someone created an account for your e-mail address on {{SITENAME}} ($4) named "$2", with password "$3".
00989 You should log in and change your password now.
00990
00991 You may ignore this message, if this account was created in error.',
00992 'login-throttled' => 'You have made too many recent login attempts.
00993 Please wait before trying again.',
00994 'loginlanguagelabel' => 'Language: $1',
00995 'loginlanguagelinks' => '* Deutsch|de
00996 * English|en
00997 * Esperanto|eo
00998 * Français|fr
00999 * Español|es
01000 * Italiano|it
01001 * Nederlands|nl', # do not translate or duplicate this message to other languages
01002
01003 # Password reset dialog
01004 'resetpass' => 'Change password',
01005 'resetpass_announce' => 'You logged in with a temporary e-mailed code.
01006 To finish logging in, you must set a new password here:',
01007 'resetpass_text' => '<!-- Add text here -->', # only translate this message to other languages if you have to change it
01008 'resetpass_header' => 'Change account password',
01009 'oldpassword' => 'Old password:',
01010 'newpassword' => 'New password:',
01011 'retypenew' => 'Retype new password:',
01012 'resetpass_submit' => 'Set password and log in',
01013 'resetpass_success' => 'Your password has been changed successfully!
01014 Now logging you in...',
01015 'resetpass_bad_temporary' => 'Invalid temporary password.
01016 You may have already successfully changed your password or requested a new temporary password.',
01017 'resetpass_forbidden' => 'Passwords cannot be changed',
01018 'resetpass-no-info' => 'You must be logged in to access this page directly.',
01019 'resetpass-submit-loggedin' => 'Change password',
01020 'resetpass-wrong-oldpass' => 'Invalid temporary or current password.
01021 You may have already successfully changed your password or requested a new temporary password.',
01022 'resetpass-temp-password' => 'Temporary password:',
01023 'resetpass-log' => 'Password resets log',
01024 'resetpass-logtext' => 'Below is a log of users who have had their password reset by an administrator.',
01025 'resetpass-logentry' => 'changed the password for $1',
01026 'resetpass-comment' => 'Reason for password reset:',
01027
01028 # Edit page toolbar
01029 'bold_sample' => 'Bold text',
01030 'bold_tip' => 'Bold text',
01031 'italic_sample' => 'Italic text',
01032 'italic_tip' => 'Italic text',
01033 'link_sample' => 'Link title',
01034 'link_tip' => 'Internal link',
01035 'extlink_sample' => 'http://www.example.com link title',
01036 'extlink_tip' => 'External link (remember http:// prefix)',
01037 'headline_sample' => 'Headline text',
01038 'headline_tip' => 'Level 2 headline',
01039 'math_sample' => 'Insert formula here',
01040 'math_tip' => 'Mathematical formula (LaTeX)',
01041 'nowiki_sample' => 'Insert non-formatted text here',
01042 'nowiki_tip' => 'Ignore wiki formatting',
01043 'image_sample' => 'Example.jpg', # only translate this message to other languages if you have to change it
01044 'image_tip' => 'Embedded file',
01045 'media_sample' => 'Example.ogg', # only translate this message to other languages if you have to change it
01046 'media_tip' => 'File link',
01047 'sig_tip' => 'Your signature with timestamp',
01048 'hr_tip' => 'Horizontal line (use sparingly)',
01049
01050 # Edit pages
01051 'summary' => 'Summary:',
01052 'subject' => 'Subject/headline:',
01053 'minoredit' => 'This is a minor edit',
01054 'watchthis' => 'Watch this page',
01055 'savearticle' => 'Save page',
01056 'preview' => 'Preview',
01057 'showpreview' => 'Show preview',
01058 'showlivepreview' => 'Live preview',
01059 'showdiff' => 'Show changes',
01060 'anoneditwarning' => "'''Warning:''' You are not logged in.
01061 Your IP address will be recorded in this page's edit history.",
01062 'missingsummary' => "'''Reminder:''' You have not provided an edit summary.
01063 If you click Save again, your edit will be saved without one.",
01064 'missingcommenttext' => 'Please enter a comment below.',
01065 'missingcommentheader' => "'''Reminder:''' You have not provided a subject/headline for this comment.
01066 If you click Save again, your edit will be saved without one.",
01067 'summary-preview' => 'Summary preview:',
01068 'subject-preview' => 'Subject/headline preview:',
01069 'blockedtitle' => 'User is blocked',
01070 'blockedtext' => "'''Your user name or IP address has been blocked.'''
01071
01072 The block was made by $1.
01073 The reason given is ''$2''.
01074
01075 * Start of block: $8
01076 * Expiry of block: $6
01077 * Intended blockee: $7
01078
01079 You can contact $1 or another [[{{MediaWiki:Grouppage-sysop}}|administrator]] to discuss the block.
01080 You cannot use the 'e-mail this user' feature unless a valid e-mail address is specified in your [[Special:Preferences|account preferences]] and you have not been blocked from using it.
01081 Your current IP address is $3, and the block ID is #$5.
01082 Please include all above details in any queries you make.",
01083 'autoblockedtext' => 'Your IP address has been automatically blocked because it was used by another user, who was blocked by $1.
01084 The reason given is this:
01085
01086 :\'\'$2\'\'
01087
01088 * Start of block: $8
01089 * Expiry of block: $6
01090 * Intended blockee: $7
01091
01092 You may contact $1 or one of the other [[{{MediaWiki:Grouppage-sysop}}|administrators]] to discuss the block.
01093
01094 Note that you may not use the "e-mail this user" feature unless you have a valid e-mail address registered in your [[Special:Preferences|user preferences]] and you have not been blocked from using it.
01095
01096 Your current IP address is $3, and the block ID is #$5.
01097 Please include all above details in any queries you make.',
01098 'blockednoreason' => 'no reason given',
01099 'blockedoriginalsource' => "The source of '''$1''' is shown below:",
01100 'blockededitsource' => "The text of '''your edits''' to '''$1''' is shown below:",
01101 'whitelistedittitle' => 'Login required to edit',
01102 'whitelistedittext' => 'You have to $1 to edit pages.',
01103 'confirmedittitle' => 'E-mail confirmation required to edit',
01104 'confirmedittext' => 'You must confirm your e-mail address before editing pages.
01105 Please set and validate your e-mail address through your [[Special:Preferences|user preferences]].',
01106 'nosuchsectiontitle' => 'Cannot find section',
01107 'nosuchsectiontext' => 'You tried to edit a section that does not exist.
01108 Since there is no section $1, there is no place to save your edit.',
01109 'loginreqtitle' => 'Login required',
01110 'loginreqlink' => 'log in',
01111 'loginreqpagetext' => 'You must $1 to view other pages.',
01112 'accmailtitle' => 'Password sent.',
01113 'accmailtext' => "A randomly generated password for [[User talk:$1|$1]] has been sent to $2.
01114
01115 The password for this new account can be changed on the ''[[Special:ChangePassword|change password]]'' page upon logging in.",
01116 'newarticle' => '(New)',
01117 'newarticletext' => "You have followed a link to a page that does not exist yet.
01118 To create the page, start typing in the box below (see the [[{{MediaWiki:Helppage}}|help page]] for more info).
01119 If you are here by mistake, click your browser's '''back''' button.",
01120 'newarticletextanon' => '{{int:newarticletext}}', # do not translate or duplicate this message to other languages
01121 'talkpagetext' => '<!-- MediaWiki:talkpagetext -->', # do not translate or duplicate this message to other languages
01122 'anontalkpagetext' => "----''This is the discussion page for an anonymous user who has not created an account yet, or who does not use it.
01123 We therefore have to use the numerical IP address to identify him/her.
01124 Such an IP address can be shared by several users.
01125 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.''",
01126 'noarticletext' => 'There is currently no text in this page.
01127 You can [[Special:Search/{{PAGENAME}}|search for this page title]] in other pages,
01128 <span class="plainlinks">[{{fullurl:Special:Log|page={{urlencode:{{FULLPAGENAME}}}}}} search the related logs],
01129 or [{{fullurl:{{FULLPAGENAME}}|action=edit}} edit this page]</span>.',
01130 'noarticletextanon' => '{{int:noarticletext}}', # do not translate or duplicate this message to other languages
01131 'userpage-userdoesnotexist' => 'User account "$1" is not registered.
01132 Please check if you want to create/edit this page.',
01133 'clearyourcache' => "'''Note: After saving, you may have to bypass your browser's cache to see the changes.'''
01134 '''Mozilla / Firefox / Safari:''' hold ''Shift'' while clicking ''Reload'', or press either ''Ctrl-F5'' or ''Ctrl-R'' (''Command-R'' on a Macintosh);
01135 '''Konqueror: '''click ''Reload'' or press ''F5'';
01136 '''Opera:''' clear the cache in ''Tools → Preferences'';
01137 '''Internet Explorer:''' hold ''Ctrl'' while clicking ''Refresh,'' or press ''Ctrl-F5''.",
01138 'usercssjsyoucanpreview' => "'''Tip:''' Use the 'Show preview' button to test your new CSS/JS before saving.",
01139 'usercsspreview' => "'''Remember that you are only previewing your user CSS.'''
01140 '''It has not yet been saved!'''",
01141 'userjspreview' => "'''Remember that you are only testing/previewing your user JavaScript.'''
01142 '''It has not yet been saved!'''",
01143 'userinvalidcssjstitle' => "'''Warning:''' There is no skin \"\$1\".
01144 Remember that custom .css and .js pages use a lowercase title, e.g. {{ns:user}}:Foo/monobook.css as opposed to {{ns:user}}:Foo/Monobook.css.",
01145 'updated' => '(Updated)',
01146 'note' => "'''Note:'''",
01147 'previewnote' => "'''Remember that this is only a preview.'''
01148 Your changes have not yet been saved!",
01149 'previewconflict' => 'This preview reflects the text in the upper text editing area as it will appear if you choose to save.',
01150 'session_fail_preview' => "'''Sorry! We could not process your edit due to a loss of session data.'''
01151 Please try again.
01152 If it still does not work, try [[Special:UserLogout|logging out]] and logging back in.",
01153 'session_fail_preview_html' => "'''Sorry! We could not process your edit due to a loss of session data.'''
01154
01155 ''Because {{SITENAME}} has raw HTML enabled, the preview is hidden as a precaution against JavaScript attacks.''
01156
01157 '''If this is a legitimate edit attempt, please try again.'''
01158 If it still does not work, try [[Special:UserLogout|logging out]] and logging back in.",
01159 'token_suffix_mismatch' => "'''Your edit has been rejected because your client mangled the punctuation characters in the edit token.'''
01160 The edit has been rejected to prevent corruption of the page text.
01161 This sometimes happens when you are using a buggy web-based anonymous proxy service.",
01162 'editing' => 'Editing $1',
01163 'editingsection' => 'Editing $1 (section)',
01164 'editingcomment' => 'Editing $1 (new section)',
01165 'editconflict' => 'Edit conflict: $1',
01166 'explainconflict' => "Someone else has changed this page since you started editing it.
01167 The upper text area contains the page text as it currently exists.
01168 Your changes are shown in the lower text area.
01169 You will have to merge your changes into the existing text.
01170 '''Only''' the text in the upper text area will be saved when you press \"Save page\".",
01171 'yourtext' => 'Your text',
01172 'storedversion' => 'Stored revision',
01173 'nonunicodebrowser' => "'''Warning: Your browser is not unicode compliant.'''
01174 A workaround is in place to allow you to safely edit pages: non-ASCII characters will appear in the edit box as hexadecimal codes.",
01175 'editingold' => "'''Warning: You are editing an out-of-date revision of this page.'''
01176 If you save it, any changes made since this revision will be lost.",
01177 'yourdiff' => 'Differences',
01178 'copyrightwarning' => "Please note that all contributions to {{SITENAME}} are considered to be released under the $2 (see $1 for details).
01179 If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.<br />
01180 You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
01181 '''Do not submit copyrighted work without permission!'''",
01182 'copyrightwarning2' => "Please note that all contributions to {{SITENAME}} may be edited, altered, or removed by other contributors.
01183 If you do not want your writing to be edited mercilessly, then do not submit it here.<br />
01184 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).
01185 '''Do not submit copyrighted work without permission!'''",
01186 'longpagewarning' => "'''Warning:''' This page is $1 kilobytes long;
01187 some browsers may have problems editing pages approaching or longer than 32kb.
01188 Please consider breaking the page into smaller sections.",
01189 'longpageerror' => "'''Error: The text you have submitted is $1 kilobytes long, which is longer than the maximum of $2 kilobytes.'''
01190 It cannot be saved.",
01191 'readonlywarning' => "'''Warning: The database has been locked for maintenance, so you will not be able to save your edits right now.'''
01192 You may wish to cut-n-paste the text into a text file and save it for later.
01193
01194 The administrator who locked it offered this explanation: $1",
01195 'protectedpagewarning' => "'''Warning: This page has been locked so that only users with administrator privileges can edit it.'''",
01196 'semiprotectedpagewarning' => "'''Note:''' This page has been locked so that only registered users can edit it.",
01197 'cascadeprotectedwarning' => "'''Warning:''' This page has been locked so that only users with administrator privileges can edit it, because it is included in the following cascade-protected {{PLURAL:$1|page|pages}}:",
01198 'titleprotectedwarning' => "'''Warning: This page has been locked so that [[Special:ListGroupRights|specific rights]] are needed to create it.'''",
01199 'templatesused' => 'Templates used on this page:',
01200 'templatesusedpreview' => 'Templates used in this preview:',
01201 'templatesusedsection' => 'Templates used in this section:',
01202 'template-protected' => '(protected)',
01203 'template-semiprotected' => '(semi-protected)',
01204 'hiddencategories' => 'This page is a member of {{PLURAL:$1|1 hidden category|$1 hidden categories}}:',
01205 'edittools' => '<!-- Text here will be shown below edit and upload forms. -->', # only translate this message to other languages if you have to change it
01206 'nocreatetitle' => 'Page creation limited',
01207 'nocreatetext' => '{{SITENAME}} has restricted the ability to create new pages.
01208 You can go back and edit an existing page, or [[Special:UserLogin|log in or create an account]].',
01209 'nocreate-loggedin' => 'You do not have permission to create new pages.',
01210 'permissionserrors' => 'Permissions errors',
01211 'permissionserrorstext' => 'You do not have permission to do that, for the following {{PLURAL:$1|reason|reasons}}:',
01212 'permissionserrorstext-withaction' => 'You do not have permission to $2, for the following {{PLURAL:$1|reason|reasons}}:',
01213 'recreate-deleted-warn' => "'''Warning: You are recreating a page that was previously deleted.'''
01214
01215 You should consider whether it is appropriate to continue editing this page.
01216 The deletion log for this page is provided here for convenience:",
01217 'deleted-notice' => 'This page has been deleted.
01218 The deletion log for the page is provided below for reference.',
01219 'deletelog-fulllog' => 'View full log',
01220 'edit-hook-aborted' => 'Edit aborted by hook.
01221 It gave no explanation.',
01222 'edit-gone-missing' => 'Could not update the page.
01223 It appears to have been deleted.',
01224 'edit-conflict' => 'Edit conflict.',
01225 'edit-no-change' => 'Your edit was ignored, because no change was made to the text.',
01226 'edit-already-exists' => 'Could not create a new page.
01227 It already exists.',
01228
01229 # Parser/template warnings
01230 'expensive-parserfunction-warning' => "'''Warning:''' This page contains too many expensive parser function calls.
01231
01232 It should have less than $2 {{PLURAL:$2|call|calls}}, there {{PLURAL:$1|is now $1 call|are now $1 calls}}.",
01233 'expensive-parserfunction-category' => 'Pages with too many expensive parser function calls',
01234 'post-expand-template-inclusion-warning' => "'''Warning:''' Template include size is too large.
01235 Some templates will not be included.",
01236 'post-expand-template-inclusion-category' => 'Pages where template include size is exceeded',
01237 'post-expand-template-argument-warning' => "'''Warning:''' This page contains at least one template argument which has a too large expansion size.
01238 These arguments have been omitted.",
01239 'post-expand-template-argument-category' => 'Pages containing omitted template arguments',
01240 'parser-template-loop-warning' => 'Template loop detected: [[$1]]',
01241 'parser-template-recursion-depth-warning' => 'Template recursion depth limit exceeded ($1)',
01242
01243 # "Undo" feature
01244 'undo-success' => 'The edit can be undone.
01245 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.',
01246 'undo-failure' => 'The edit could not be undone due to conflicting intermediate edits.',
01247 'undo-norev' => 'The edit could not be undone because it does not exist or was deleted.',
01248 'undo-summary' => 'Undo revision $1 by [[Special:Contributions/$2|$2]] ([[User talk:$2|Talk]])',
01249
01250 # Account creation failure
01251 'cantcreateaccounttitle' => 'Cannot create account',
01252 'cantcreateaccount-text' => "Account creation from this IP address ('''$1''') has been blocked by [[User:$3|$3]].
01253
01254 The reason given by $3 is ''$2''",
01255 'cantcreateaccount-nonblock-text' => '', # do not translate or duplicate this message to other languages
01256
01257 # History pages
01258 'viewpagelogs' => 'View logs for this page',
01259 'nohistory' => 'There is no edit history for this page.',
01260 'currentrev' => 'Latest revision',
01261 'currentrev-asof' => 'Latest revision as of $1',
01262 'revisionasof' => 'Revision as of $1',
01263 'revision-info' => 'Revision as of $1 by $2', # Additionally available: $3: revision id
01264 'revision-info-current' => '-', # Available parameters: $1: timestamp; $2: userlinks; $3: revision id; do not translate or duplicate this message to other languages
01265 'revision-nav' => '($1) $2{{int:pipe-separator}}$3 ($4){{int:pipe-separator}}$5 ($6)', # do not translate or duplicate this message to other languages
01266 'previousrevision' => '← Older revision',
01267 'nextrevision' => 'Newer revision →',
01268 'currentrevisionlink' => 'Latest revision',
01269 'cur' => 'cur',
01270 'next' => 'next',
01271 'last' => 'prev',
01272 'page_first' => 'first',
01273 'page_last' => 'last',
01274 'histlegend' => "Diff selection: mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.<br />
01275 Legend: '''({{int:cur}})''' = difference with latest revision, '''({{int:last}})''' = difference with preceding revision, '''{{int:minoreditletter}}''' = minor edit.",
01276 'history-fieldset-title' => 'Browse history',
01277 'history_copyright' => '-', # do not translate or duplicate this message to other languages
01278 'deletedrev' => '[deleted]',
01279 'histfirst' => 'Earliest',
01280 'histlast' => 'Latest',
01281 'historysize' => '({{PLURAL:$1|1 byte|$1 bytes}})',
01282 'historyempty' => '(empty)',
01283
01284 # Revision feed
01285 'history-feed-title' => 'Revision history',
01286 'history-feed-description' => 'Revision history for this page on the wiki',
01287 'history-feed-item-nocomment' => '$1 at $2', # user at time
01288 'history-feed-empty' => 'The requested page does not exist.
01289 It may have been deleted from the wiki, or renamed.
01290 Try [[Special:Search|searching on the wiki]] for relevant new pages.',
01291
01292 # Revision deletion
01293 'rev-deleted-comment' => '(comment removed)',
01294 'rev-deleted-user' => '(username removed)',
01295 'rev-deleted-event' => '(log action removed)',
01296 'rev-deleted-text-permission' => "This page revision has been '''deleted'''.
01297 There may be details in the [{{fullurl:Special:Log/delete|page={{FULLPAGENAMEE}}}} deletion log].",
01298 'rev-deleted-text-view' => "This page revision has been '''deleted'''.
01299 As an administrator you can view it; there may be details in the [{{fullurl:Special:Log/delete|page={{FULLPAGENAMEE}}}} deletion log].",
01300 'rev-deleted-no-diff' => "You cannot view this diff because one of the revisions has been '''deleted'''.
01301 There may be details in the [{{fullurl:Special:Log/delete|page={{FULLPAGENAMEE}}}} deletion log].",
01302 'rev-deleted-unhide-diff' => "One of the revisions of this diff has been '''deleted'''.
01303 There may be details in the [{{fullurl:Special:Log/delete|page={{FULLPAGENAMEE}}}} deletion log].
01304 As an administrator you can still [$1 view this diff] if you wish to proceed.",
01305 'rev-delundel' => 'show/hide',
01306 'revisiondelete' => 'Delete/undelete revisions',
01307 'revdelete-nooldid-title' => 'Invalid target revision',
01308 'revdelete-nooldid-text' => 'You have either not specified a target revision(s) to perform this
01309 function, the specified revision does not exist, or you are attempting to hide the current revision.',
01310 'revdelete-nologtype-title' => 'No log type given',
01311 'revdelete-nologtype-text' => 'You have not specified a log type to perform this action on.',
01312 'revdelete-toomanytargets-title' => 'Too many targets',
01313 'revdelete-toomanytargets-text' => 'You have specified too many types of targets to perform this action on.',
01314 'revdelete-nologid-title' => 'Invalid log entry',
01315 'revdelete-nologid-text' => 'You have either not specified a target log event to perform this function or the specified entry does not exist.',
01316 'revdelete-selected' => "'''{{PLURAL:$2|Selected revision|Selected revisions}} of [[:$1]]:'''",
01317 'logdelete-selected' => "'''{{PLURAL:$1|Selected log event|Selected log events}}:'''",
01318 'revdelete-text' => "'''Deleted revisions and events will still appear in the page history and logs, but parts of their content will be inaccessible to the public.'''
01319 Other administrators on {{SITENAME}} will still be able to access the hidden content and can undelete it again through this same interface, unless additional restrictions are set.
01320
01321 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]].",
01322 'revdelete-suppress-text' => "Suppression should '''only''' be used for the following cases:
01323 * Potentially libelous information
01324 * Inappropriate personal information
01325 *: ''home addresses and telephone numbers, social security numbers, etc.''",
01326 'revdelete-legend' => 'Set visibility restrictions',
01327 'revdelete-hide-text' => 'Hide revision text',
01328 'revdelete-hide-name' => 'Hide action and target',
01329 'revdelete-hide-comment' => 'Hide edit summary',
01330 'revdelete-hide-user' => "Hide editor's username/IP address",
01331 'revdelete-hide-restricted' => 'Suppress data from administrators as well as others',
01332 'revdelete-suppress' => 'Suppress data from administrators as well as others',
01333 'revdelete-hide-image' => 'Hide file content',
01334 'revdelete-unsuppress' => 'Remove restrictions on restored revisions',
01335 'revdelete-log' => 'Reason:',
01336 'revdelete-submit' => 'Apply to selected revision',
01337 'revdelete-logentry' => 'changed revision visibility of [[$1]]',
01338 'logdelete-logentry' => 'changed event visibility of [[$1]]',
01339 'revdelete-success' => "'''Revision visibility successfully updated.'''",
01340 'logdelete-success' => "'''Log visibility successfully set.'''",
01341 'revdel-restore' => 'change visibility',
01342 'pagehist' => 'Page history',
01343 'deletedhist' => 'Deleted history',
01344 'revdelete-content' => 'content',
01345 'revdelete-summary' => 'edit summary',
01346 'revdelete-uname' => 'username',
01347 'revdelete-restricted' => 'applied restrictions to administrators',
01348 'revdelete-unrestricted' => 'removed restrictions for administrators',
01349 'revdelete-hid' => 'hid $1',
01350 'revdelete-unhid' => 'unhid $1',
01351 'revdelete-log-message' => '$1 for $2 {{PLURAL:$2|revision|revisions}}',
01352 'logdelete-log-message' => '$1 for $2 {{PLURAL:$2|event|events}}',
01353
01354 # Suppression log
01355 'suppressionlog' => 'Suppression log',
01356 'suppressionlogtext' => 'Below is a list of deletions and blocks involving content hidden from administrators.
01357 See the [[Special:IPBlockList|IP block list]] for the list of currently operational bans and blocks.',
01358
01359 # History merging
01360 'mergehistory' => 'Merge page histories',
01361 'mergehistory-header' => 'This page lets you merge revisions of the history of one source page into a newer page.
01362 Make sure that this change will maintain historical page continuity.',
01363 'mergehistory-box' => 'Merge revisions of two pages:',
01364 'mergehistory-from' => 'Source page:',
01365 'mergehistory-into' => 'Destination page:',
01366 'mergehistory-list' => 'Mergeable edit history',
01367 'mergehistory-merge' => 'The following revisions of [[:$1]] can be merged into [[:$2]].
01368 Use the radio button column to merge in only the revisions created at and before the specified time.
01369 Note that using the navigation links will reset this column.',
01370 'mergehistory-go' => 'Show mergeable edits',
01371 'mergehistory-submit' => 'Merge revisions',
01372 'mergehistory-empty' => 'No revisions can be merged.',
01373 'mergehistory-success' => '$3 {{PLURAL:$3|revision|revisions}} of [[:$1]] successfully merged into [[:$2]].',
01374 'mergehistory-fail' => 'Unable to perform history merge, please recheck the page and time parameters.',
01375 'mergehistory-no-source' => 'Source page $1 does not exist.',
01376 'mergehistory-no-destination' => 'Destination page $1 does not exist.',
01377 'mergehistory-invalid-source' => 'Source page must be a valid title.',
01378 'mergehistory-invalid-destination' => 'Destination page must be a valid title.',
01379 'mergehistory-autocomment' => 'Merged [[:$1]] into [[:$2]]',
01380 'mergehistory-comment' => 'Merged [[:$1]] into [[:$2]]: $3',
01381 'mergehistory-same-destination' => 'Source and destination pages cannot be the same',
01382 'mergehistory-reason' => 'Reason:',
01383
01384 # Merge log
01385 'mergelog' => 'Merge log',
01386 'pagemerge-logentry' => 'merged [[$1]] into [[$2]] (revisions up to $3)',
01387 'revertmerge' => 'Unmerge',
01388 'mergelogpagetext' => 'Below is a list of the most recent merges of one page history into another.',
01389
01390 # Diffs
01391 'history-title' => 'Revision history of "$1"',
01392 'difference' => '(Difference between revisions)',
01393 'lineno' => 'Line $1:',
01394 'compareselectedversions' => 'Compare selected revisions',
01395 'visualcomparison' => 'Visual comparison',
01396 'wikicodecomparison' => 'Wikitext comparison',
01397 'editundo' => 'undo',
01398 'diff-multi' => '({{PLURAL:$1|One intermediate revision|$1 intermediate revisions}} not shown)',
01399 'diff-movedto' => 'moved to $1',
01400 'diff-styleadded' => '$1 style added',
01401 'diff-added' => '$1 added',
01402 'diff-changedto' => 'changed to $1',
01403 'diff-movedoutof' => 'moved out of $1',
01404 'diff-styleremoved' => '$1 style removed',
01405 'diff-removed' => '$1 removed',
01406 'diff-changedfrom' => 'changed from $1',
01407 'diff-src' => 'source',
01408 'diff-withdestination' => 'with destination $1',
01409 'diff-with' => ' with $1 $2',
01410 'diff-with-additional' => '$1 $2', # only translate this message to other languages if you have to change it
01411 'diff-with-final' => ' and $1 $2',
01412 'diff-width' => 'width',
01413 'diff-height' => 'height',
01414 'diff-p' => "a '''paragraph'''",
01415 'diff-blockquote' => "a '''quote'''",
01416 'diff-h1' => "a '''heading (level 1)'''",
01417 'diff-h2' => "a '''heading (level 2)'''",
01418 'diff-h3' => "a '''heading (level 3)'''",
01419 'diff-h4' => "a '''heading (level 4)'''",
01420 'diff-h5' => "a '''heading (level 5)'''",
01421 'diff-pre' => "a '''preformatted block'''",
01422 'diff-div' => "a '''division'''",
01423 'diff-ul' => "an '''unordered list'''",
01424 'diff-ol' => "an '''ordered list'''",
01425 'diff-li' => "a '''list item'''",
01426 'diff-table' => "a '''table'''",
01427 'diff-tbody' => "a '''table's content'''",
01428 'diff-tr' => "a '''row'''",
01429 'diff-td' => "a '''cell'''",
01430 'diff-th' => "a '''header'''",
01431 'diff-br' => "a '''break'''",
01432 'diff-hr' => "a '''horizontal rule'''",
01433 'diff-code' => "a '''computer code block'''",
01434 'diff-dl' => "a '''definition list'''",
01435 'diff-dt' => "a '''definition term'''",
01436 'diff-dd' => "a '''definition'''",
01437 'diff-input' => "an '''input'''",
01438 'diff-form' => "a '''form'''",
01439 'diff-img' => "an '''image'''",
01440 'diff-span' => "a '''span'''",
01441 'diff-a' => "a '''link'''",
01442 'diff-i' => "'''italics'''",
01443 'diff-b' => "'''bold'''",
01444 'diff-strong' => "'''strong'''",
01445 'diff-em' => "'''emphasis'''",
01446 'diff-font' => "'''font'''",
01447 'diff-big' => "'''big'''",
01448 'diff-del' => "'''deleted'''",
01449 'diff-tt' => "'''fixed width'''",
01450 'diff-sub' => "'''subscript'''",
01451 'diff-sup' => "'''superscript'''",
01452 'diff-strike' => "'''strikethrough'''",
01453
01454 # Search results
01455 'searchresults' => 'Search results',
01456 'searchresults-title' => 'Search results for "$1"',
01457 'searchresulttext' => 'For more information about searching {{SITENAME}}, see [[{{MediaWiki:Helppage}}|{{int:help}}]].',
01458 'searchsubtitle' => 'You searched for \'\'\'[[:$1]]\'\'\' ([[Special:Prefixindex/$1|all pages starting with "$1"]]{{int:pipe-separator}}[[Special:WhatLinksHere/$1|all pages that link to "$1"]])',
01459 'searchsubtitleinvalid' => "You searched for '''$1'''",
01460 'noexactmatch' => "'''There is no page titled \"\$1\".'''
01461 You can [[:\$1|create this page]].",
01462 'noexactmatch-nocreate' => "'''There is no page titled \"\$1\".'''",
01463 'toomanymatches' => 'Too many matches were returned, please try a different query',
01464 'titlematches' => 'Page title matches',
01465 'notitlematches' => 'No page title matches',
01466 'textmatches' => 'Page text matches',
01467 'notextmatches' => 'No page text matches',
01468 'prevn' => 'previous $1',
01469 'nextn' => 'next $1',
01470 'prevn-title' => 'Previous $1 {{PLURAL:$1|result|results}}',
01471 'nextn-title' => 'Next $1 {{PLURAL:$1|result|results}}',
01472 'shown-title' => 'Show $1 {{PLURAL:$1|result|results}} per page',
01473 'viewprevnext' => 'View ($1) ($2) ($3)',
01474 'searchmenu-legend' => 'Search options',
01475 'searchmenu-exists' => "'''There is a page named \"[[:\$1]]\" on this wiki'''",
01476 'searchmenu-new' => "'''Create the page \"[[:\$1]]\" on this wiki!'''",
01477 'searchhelp-url' => 'Help:Contents',
01478 'searchmenu-prefix' => '[[Special:PrefixIndex/$1|Browse pages with this prefix]]',
01479 'searchmenu-help' => '[[{{MediaWiki:Searchhelp-url}}|{{int:help}}]]?', # do not translate or duplicate this message to other languages
01480 'searchprofile-articles' => 'Content pages',
01481 'searchprofile-articles-and-proj' => 'Content & project pages',
01482 'searchprofile-project' => 'Project pages',
01483 'searchprofile-images' => 'Files',
01484 'searchprofile-everything' => 'Everything',
01485 'searchprofile-advanced' => 'Advanced',
01486 'searchprofile-articles-tooltip' => 'Search in $1',
01487 'searchprofile-project-tooltip' => 'Search in $1',
01488 'searchprofile-images-tooltip' => 'Search for files',
01489 'searchprofile-everything-tooltip' => 'Search all of content (including talk pages)',
01490 'searchprofile-advanced-tooltip' => 'Search in custom namespaces',
01491 'prefs-search-nsdefault' => 'Search using defaults:',
01492 'prefs-search-nscustom' => 'Search custom namespaces:',
01493 'search-result-size' => '$1 ({{PLURAL:$2|1 word|$2 words}})',
01494 'search-result-score' => 'Relevance: $1%',
01495 'search-redirect' => '(redirect $1)',
01496 'search-section' => '(section $1)',
01497 'search-suggest' => 'Did you mean: $1',
01498 'search-interwiki-caption' => 'Sister projects',
01499 'search-interwiki-default' => '$1 results:',
01500 'search-interwiki-custom' => '', # do not translate or duplicate this message to other languages
01501 'search-interwiki-more' => '(more)',
01502 'search-mwsuggest-enabled' => 'with suggestions',
01503 'search-mwsuggest-disabled' => 'no suggestions',
01504 'search-relatedarticle' => 'Related',
01505 'mwsuggest-disable' => 'Disable AJAX suggestions',
01506 'searchrelated' => 'related',
01507 'searchall' => 'all',
01508 'showingresults' => "Showing below up to {{PLURAL:$1|'''1''' result|'''$1''' results}} starting with #'''$2'''.",
01509 'showingresultsnum' => "Showing below {{PLURAL:$3|'''1''' result|'''$3''' results}} starting with #'''$2'''.",
01510 'showingresultstotal' => "Showing below {{PLURAL:$4|result '''$1''' of '''$3'''|results '''$1 - $2''' of '''$3'''}}",
01511 'nonefound' => "'''Note''': Only some namespaces are searched by default.
01512 Try prefixing your query with ''all:'' to search all content (including talk pages, templates, etc), or use the desired namespace as prefix.",
01513 'search-nonefound' => 'There were no results matching the query.',
01514 'powersearch' => 'Advanced search',
01515 'powersearch-legend' => 'Advanced search',
01516 'powersearch-ns' => 'Search in namespaces:',
01517 'powersearch-redir' => 'List redirects',
01518 'powersearch-field' => 'Search for',
01519 'search-external' => 'External search',
01520 'searchdisabled' => '{{SITENAME}} search is disabled.
01521 You can search via Google in the meantime.
01522 Note that their indexes of {{SITENAME}} content may be out of date.',
01523 'googlesearch' => '<form method="get" action="http://www.google.com/search" id="googlesearch">
01524 <input type="hidden" name="domains" value="{{SERVER}}" />
01525 <input type="hidden" name="num" value="50" />
01526 <input type="hidden" name="ie" value="$2" />
01527 <input type="hidden" name="oe" value="$2" />
01528
01529 <input type="text" name="q" size="31" maxlength="255" value="$1" />
01530 <input type="submit" name="btnG" value="$3" />
01531 <div>
01532 <input type="radio" name="sitesearch" id="gwiki" value="{{SERVER}}" checked="checked" /><label for="gwiki">{{SITENAME}}</label>
01533 <input type="radio" name="sitesearch" id="gWWW" value="" /><label for="gWWW">WWW</label>
01534 </div>
01535 </form>', # do not translate or duplicate this message to other languages
01536
01537 # OpenSearch description
01538 'opensearch-desc' => '{{SITENAME}} ({{CONTENTLANGUAGE}})', # do not translate or duplicate this message to other languages
01539
01540 # Preferences page
01541 'preferences' => 'Preferences',
01542 'preferences-summary' => '', # do not translate or duplicate this message to other languages
01543 'mypreferences' => 'My preferences',
01544 'prefs-edits' => 'Number of edits:',
01545 'prefsnologin' => 'Not logged in',
01546 'prefsnologintext' => 'You must be <span class="plainlinks">[{{fullurl:Special:UserLogin|returnto=$1}} logged in]</span> to set user preferences.',
01547 'prefsreset' => 'Preferences have been reset from storage.',
01548 'qbsettings' => 'Quickbar',
01549 'qbsettings-none' => 'None',
01550 'qbsettings-fixedleft' => 'Fixed left',
01551 'qbsettings-fixedright' => 'Fixed right',
01552 'qbsettings-floatingleft' => 'Floating left',
01553 'qbsettings-floatingright' => 'Floating right',
01554 'changepassword' => 'Change password',
01555 'skin' => 'Skin',
01556 'skin-preview' => 'Preview',
01557 'math' => 'Math',
01558 'dateformat' => 'Date format',
01559 'datedefault' => 'No preference',
01560 'datetime' => 'Date and time',
01561 'math_failure' => 'Failed to parse',
01562 'math_unknown_error' => 'unknown error',
01563 'math_unknown_function' => 'unknown function',
01564 'math_lexing_error' => 'lexing error',
01565 'math_syntax_error' => 'syntax error',
01566 'math_image_error' => 'PNG conversion failed;
01567 check for correct installation of latex, dvips, gs, and convert',
01568 'math_bad_tmpdir' => 'Cannot write to or create math temp directory',
01569 'math_bad_output' => 'Cannot write to or create math output directory',
01570 'math_notexvc' => 'Missing texvc executable;
01571 please see math/README to configure.',
01572 'prefs-personal' => 'User profile',
01573 'prefs-rc' => 'Recent changes',
01574 'prefs-watchlist' => 'Watchlist',
01575 'prefs-watchlist-days' => 'Days to show in watchlist:',
01576 'prefs-watchlist-days-max' => '(maximum 7 days)',
01577 'prefs-watchlist-edits' => 'Maximum number of changes to show in expanded watchlist:',
01578 'prefs-watchlist-edits-max' => '(maximum number: 1000)',
01579 'prefs-misc' => 'Misc',
01580 'prefs-resetpass' => 'Change password',
01581 'saveprefs' => 'Save',
01582 'resetprefs' => 'Clear unsaved changes',
01583 'restoreprefs' => 'Restore all default settings',
01584 'textboxsize' => 'Editing',
01585 'prefs-edit-boxsize' => 'Size of the edit window.',
01586 'rows' => 'Rows:',
01587 'columns' => 'Columns:',
01588 'searchresultshead' => 'Search',
01589 'resultsperpage' => 'Hits per page:',
01590 'contextlines' => 'Lines per hit:',
01591 'contextchars' => 'Context per line:',
01592 'stub-threshold' => 'Threshold for <a href="#" class="stub">stub link</a> formatting (bytes):',
01593 'recentchangesdays' => 'Days to show in recent changes:',
01594 'recentchangesdays-max' => '(maximum $1 {{PLURAL:$1|day|days}})',
01595 'recentchangescount' => 'Number of edits to show in recent changes, page histories, and in logs, by default:',
01596 'savedprefs' => 'Your preferences have been saved.',
01597 'timezonelegend' => 'Time zone:',
01598 'timezonetext' => '¹The number of hours your local time differs from server time (UTC).',
01599 'localtime' => 'Local time:',
01600 'timezoneselect' => 'Time zone:',
01601 'timezoneuseserverdefault' => 'Use server default',
01602 'timezoneuseoffset' => 'Other (specify offset)',
01603 'timezoneoffset' => 'Offset¹:',
01604 'servertime' => 'Server time:',
01605 'guesstimezone' => 'Fill in from browser',
01606 'timezoneregion-africa' => 'Africa',
01607 'timezoneregion-america' => 'America',
01608 'timezoneregion-antarctica' => 'Antarctica',
01609 'timezoneregion-arctic' => 'Arctic',
01610 'timezoneregion-asia' => 'Asia',
01611 'timezoneregion-atlantic' => 'Atlantic Ocean',
01612 'timezoneregion-australia' => 'Australia',
01613 'timezoneregion-europe' => 'Europe',
01614 'timezoneregion-indian' => 'Indian Ocean',
01615 'timezoneregion-pacific' => 'Pacific Ocean',
01616 'allowemail' => 'Enable e-mail from other users',
01617 'prefs-searchoptions' => 'Search options',
01618 'prefs-namespaces' => 'Namespaces',
01619 'defaultns' => 'Search in these namespaces by default:',
01620 'default' => 'default',
01621 'files' => 'Files',
01622 'prefs-custom-css' => 'Custom CSS',
01623 'prefs-custom-js' => 'Custom JavaScript',
01624
01625 # User rights
01626 'userrights' => 'User rights management', # Not used as normal message but as header for the special page itself
01627 'userrights-summary' => '', # do not translate or duplicate this message to other languages
01628 'userrights-lookup-user' => 'Manage user groups',
01629 'userrights-user-editname' => 'Enter a username:',
01630 'editusergroup' => 'Edit user groups',
01631 'editinguser' => "Changing user rights of user '''[[User:$1|$1]]''' ([[User talk:$1|{{int:talkpagelinktext}}]]{{int:pipe-separator}}[[Special:Contributions/$1|{{int:contribslink}}]])",
01632 'userrights-editusergroup' => 'Edit user groups',
01633 'saveusergroups' => 'Save user groups',
01634 'userrights-groupsmember' => 'Member of:',
01635 'userrights-groups-help' => 'You may alter the groups this user is in:
01636 * A checked box means the user is in that group.
01637 * An unchecked box means the user is not in that group.
01638 * A * indicates that you cannot remove the group once you have added it, or vice versa.',
01639 'userrights-reason' => 'Reason:',
01640 'userrights-no-interwiki' => 'You do not have permission to edit user rights on other wikis.',
01641 'userrights-nodatabase' => 'Database $1 does not exist or is not local.',
01642 'userrights-nologin' => 'You must [[Special:UserLogin|log in]] with an administrator account to assign user rights.',
01643 'userrights-notallowed' => 'Your account does not have permission to assign user rights.',
01644 'userrights-changeable-col' => 'Groups you can change',
01645 'userrights-unchangeable-col' => 'Groups you cannot change',
01646 'userrights-irreversible-marker' => '$1*', # only translate this message to other languages if you have to change it
01647
01648 # Groups
01649 'group' => 'Group:',
01650 'group-user' => 'Users',
01651 'group-autoconfirmed' => 'Autoconfirmed users',
01652 'group-bot' => 'Bots',
01653 'group-sysop' => 'Administrators',
01654 'group-bureaucrat' => 'Bureaucrats',
01655 'group-suppress' => 'Oversights',
01656 'group-all' => '(all)',
01657
01658 'group-user-member' => 'user',
01659 'group-autoconfirmed-member' => 'autoconfirmed user',
01660 'group-bot-member' => 'bot',
01661 'group-sysop-member' => 'administrator',
01662 'group-bureaucrat-member' => 'bureaucrat',
01663 'group-suppress-member' => 'oversight',
01664
01665 'grouppage-user' => '{{ns:project}}:Users',
01666 'grouppage-autoconfirmed' => '{{ns:project}}:Autoconfirmed users',
01667 'grouppage-bot' => '{{ns:project}}:Bots',
01668 'grouppage-sysop' => '{{ns:project}}:Administrators',
01669 'grouppage-bureaucrat' => '{{ns:project}}:Bureaucrats',
01670 'grouppage-suppress' => '{{ns:project}}:Oversight',
01671
01672 # Rights
01673 'right-read' => 'Read pages',
01674 'right-edit' => 'Edit pages',
01675 'right-createpage' => 'Create pages (which are not discussion pages)',
01676 'right-createtalk' => 'Create discussion pages',
01677 'right-createaccount' => 'Create new user accounts',
01678 'right-minoredit' => 'Mark edits as minor',
01679 'right-move' => 'Move pages',
01680 'right-move-subpages' => 'Move pages with their subpages',
01681 'right-move-rootuserpages' => 'Move root user pages',
01682 'right-movefile' => 'Move files',
01683 'right-suppressredirect' => 'Not create redirects from source pages when moving pages',
01684 'right-upload' => 'Upload files',
01685 'right-reupload' => 'Overwrite existing files',
01686 'right-reupload-own' => 'Overwrite existing files uploaded by oneself',
01687 'right-reupload-shared' => 'Override files on the shared media repository locally',
01688 'right-upload_by_url' => 'Upload files from a URL',
01689 'right-purge' => 'Purge the site cache for a page without confirmation',
01690 'right-autoconfirmed' => 'Edit semi-protected pages',
01691 'right-bot' => 'Be treated as an automated process',
01692 'right-nominornewtalk' => 'Not have minor edits to discussion pages trigger the new messages prompt',
01693 'right-apihighlimits' => 'Use higher limits in API queries',
01694 'right-writeapi' => 'Use of the write API',
01695 'right-delete' => 'Delete pages',
01696 'right-bigdelete' => 'Delete pages with large histories',
01697 'right-deleterevision' => 'Delete and undelete specific revisions of pages',
01698 'right-deletedhistory' => 'View deleted history entries, without their associated text',
01699 'right-browsearchive' => 'Search deleted pages',
01700 'right-undelete' => 'Undelete a page',
01701 'right-suppressrevision' => 'Review and restore revisions hidden from administrators',
01702 'right-suppressionlog' => 'View private logs',
01703 'right-block' => 'Block other users from editing',
01704 'right-blockemail' => 'Block a user from sending e-mail',
01705 'right-hideuser' => 'Block a username, hiding it from the public',
01706 'right-ipblock-exempt' => 'Bypass IP blocks, auto-blocks and range blocks',
01707 'right-proxyunbannable' => 'Bypass automatic blocks of proxies',
01708 'right-protect' => 'Change protection levels and edit protected pages',
01709 'right-editprotected' => 'Edit protected pages (without cascading protection)',
01710 'right-editinterface' => 'Edit the user interface',
01711 'right-editusercssjs' => "Edit other users' CSS and JavaScript files",
01712 'right-rollback' => 'Quickly rollback the edits of the last user who edited a particular page',
01713 'right-markbotedits' => 'Mark rolled-back edits as bot edits',
01714 'right-noratelimit' => 'Not be affected by rate limits',
01715 'right-import' => 'Import pages from other wikis',
01716 'right-importupload' => 'Import pages from a file upload',
01717 'right-patrol' => "Mark others' edits as patrolled",
01718 'right-autopatrol' => "Have one's own edits automatically marked as patrolled",
01719 'right-patrolmarks' => 'View recent changes patrol marks',
01720 'right-unwatchedpages' => 'View a list of unwatched pages',
01721 'right-trackback' => 'Submit a trackback',
01722 'right-mergehistory' => 'Merge the history of pages',
01723 'right-userrights' => 'Edit all user rights',
01724 'right-userrights-interwiki' => 'Edit user rights of users on other wikis',
01725 'right-siteadmin' => 'Lock and unlock the database',
01726 'right-reset-passwords' => "Reset other users' passwords",
01727 'right-override-export-depth' => 'Export pages including linked pages up to a depth of 5',
01728
01729 # User rights log
01730 'rightslog' => 'User rights log',
01731 'rightslogtext' => 'This is a log of changes to user rights.',
01732 'rightslogentry' => 'changed group membership for $1 from $2 to $3',
01733 'rightsnone' => '(none)',
01734
01735 # Associated actions - in the sentence "You do not have permission to X"
01736 'action-read' => 'read this page',
01737 'action-edit' => 'edit this page',
01738 'action-createpage' => 'create pages',
01739 'action-createtalk' => 'create discussion pages',
01740 'action-createaccount' => 'create this user account',
01741 'action-minoredit' => 'mark this edit as minor',
01742 'action-move' => 'move this page',
01743 'action-move-subpages' => 'move this page, and its subpages',
01744 'action-move-rootuserpages' => 'move root user pages',
01745 'action-movefile' => 'move this file',
01746 'action-upload' => 'upload this file',
01747 'action-reupload' => 'overwrite this existing file',
01748 'action-reupload-shared' => 'override this file on a shared repository',
01749 'action-upload_by_url' => 'upload this file from a URL',
01750 'action-writeapi' => 'use the write API',
01751 'action-delete' => 'delete this page',
01752 'action-deleterevision' => 'delete this revision',
01753 'action-deletedhistory' => "view this page's deleted history",
01754 'action-browsearchive' => 'search deleted pages',
01755 'action-undelete' => 'undelete this page',
01756 'action-suppressrevision' => 'review and restore this hidden revision',
01757 'action-suppressionlog' => 'view this private log',
01758 'action-block' => 'block this user from editing',
01759 'action-protect' => 'change protection levels for this page',
01760 'action-import' => 'import this page from another wiki',
01761 'action-importupload' => 'import this page from a file upload',
01762 'action-patrol' => "mark others' edit as patrolled",
01763 'action-autopatrol' => 'have your edit marked as patrolled',
01764 'action-unwatchedpages' => 'view the list of unwatched pages',
01765 'action-trackback' => 'submit a trackback',
01766 'action-mergehistory' => 'merge the history of this page',
01767 'action-userrights' => 'edit all user rights',
01768 'action-userrights-interwiki' => 'edit user rights of users on other wikis',
01769 'action-siteadmin' => 'lock or unlock the database',
01770
01771 # Recent changes
01772 'nchanges' => '$1 {{PLURAL:$1|change|changes}}',
01773 'recentchanges' => 'Recent changes',
01774 'recentchanges-url' => 'Special:RecentChanges', # do not translate or duplicate this message to other languages
01775 'recentchanges-legend' => 'Recent changes options',
01776 'recentchangestext' => 'Track the most recent changes to the wiki on this page.',
01777 'recentchanges-feed-description' => 'Track the most recent changes to the wiki in this feed.',
01778 'rcnote' => "Below {{PLURAL:$1|is '''1''' change|are the last '''$1''' changes}} in the last {{PLURAL:$2|day|'''$2''' days}}, as of $5, $4.",
01779 'rcnotefrom' => "Below are the changes since '''$2''' (up to '''$1''' shown).",
01780 'rclistfrom' => 'Show new changes starting from $1',
01781 'rcshowhideminor' => '$1 minor edits',
01782 'rcshowhidebots' => '$1 bots',
01783 'rcshowhideliu' => '$1 logged-in users',
01784 'rcshowhideanons' => '$1 anonymous users',
01785 'rcshowhidepatr' => '$1 patrolled edits',
01786 'rcshowhidemine' => '$1 my edits',
01787 'rclinks' => 'Show last $1 changes in last $2 days<br />$3',
01788 'diff' => 'diff',
01789 'hist' => 'hist',
01790 'hide' => 'Hide',
01791 'show' => 'Show',
01792 'minoreditletter' => 'm',
01793 'newpageletter' => 'N',
01794 'boteditletter' => 'b',
01795 'sectionlink' => '→', # only translate this message to other languages if you have to change it
01796 'number_of_watching_users_RCview' => '[$1]', # do not translate or duplicate this message to other languages
01797 'number_of_watching_users_pageview' => '[$1 watching {{PLURAL:$1|user|users}}]',
01798 'rc_categories' => 'Limit to categories (separate with "|")',
01799 'rc_categories_any' => 'Any',
01800 'rc-change-size' => '$1', # only translate this message to other languages if you have to change it
01801 'newsectionsummary' => '/* $1 */ new section',
01802 'rc-enhanced-expand' => 'Show details (requires JavaScript)',
01803 'rc-enhanced-hide' => 'Hide details',
01804
01805 # Recent changes linked
01806 'recentchangeslinked' => 'Related changes',
01807 'recentchangeslinked-title' => 'Changes related to "$1"',
01808 'recentchangeslinked-backlink' => '← $1', # only translate this message to other languages if you have to change it
01809 'recentchangeslinked-noresult' => 'No changes on linked pages during the given period.',
01810 'recentchangeslinked-summary' => "This is a list of changes made recently to pages linked from a specified page (or to members of a specified category).
01811 Pages on [[Special:Watchlist|your watchlist]] are '''bold'''.",
01812 'recentchangeslinked-page' => 'Page name:',
01813 'recentchangeslinked-to' => 'Show changes to pages linked to the given page instead',
01814
01815 # Upload
01816 'upload' => 'Upload file',
01817 'uploadbtn' => 'Upload file',
01818 'reupload' => 'Re-upload',
01819 'reuploaddesc' => 'Cancel upload and return to the upload form',
01820 'uploadnologin' => 'Not logged in',
01821 'uploadnologintext' => 'You must be [[Special:UserLogin|logged in]] to upload files.',
01822 'upload_directory_missing' => 'The upload directory ($1) is missing and could not be created by the webserver.',
01823 'upload_directory_read_only' => 'The upload directory ($1) is not writable by the webserver.',
01824 'uploaderror' => 'Upload error',
01825 'upload-summary' => '', # do not translate or duplicate this message to other languages
01826 'uploadtext' => "Use the form below to upload files.
01827 To view or search previously uploaded files go to the [[Special:FileList|list of uploaded files]], (re)uploads are also logged in the [[Special:Log/upload|upload log]], deletions in the [[Special:Log/delete|deletion log]].
01828
01829 To include a file in a page, use a link in one of the following forms:
01830 * '''<tt><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.jpg]]</nowiki></tt>''' to use the full version of the file
01831 * '''<tt><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.png|200px|thumb|left|alt text]]</nowiki></tt>''' to use a 200 pixel wide rendition in a box in the left margin with 'alt text' as description
01832 * '''<tt><nowiki>[[</nowiki>{{ns:media}}<nowiki>:File.ogg]]</nowiki></tt>''' for directly linking to the file without displaying the file",
01833 'upload-permitted' => 'Permitted file types: $1.',
01834 'upload-preferred' => 'Preferred file types: $1.',
01835 'upload-prohibited' => 'Prohibited file types: $1.',
01836 'uploadfooter' => '-', # do not translate or duplicate this message to other languages
01837 'uploadlog' => 'upload log',
01838 'uploadlogpage' => 'Upload log',
01839 'uploadlogpagetext' => 'Below is a list of the most recent file uploads.
01840 See the [[Special:NewFiles|gallery of new files]] for a more visual overview.',
01841 'filename' => 'Filename',
01842 'filedesc' => 'Summary',
01843 'fileuploadsummary' => 'Summary:',
01844 'filereuploadsummary' => 'File changes:',
01845 'filestatus' => 'Copyright status:',
01846 'filesource' => 'Source:',
01847 'uploadedfiles' => 'Uploaded files',
01848 'ignorewarning' => 'Ignore warning and save file anyway',
01849 'ignorewarnings' => 'Ignore any warnings',
01850 'minlength1' => 'File names must be at least one letter.',
01851 'illegalfilename' => 'The filename "$1" contains characters that are not allowed in page titles.
01852 Please rename the file and try uploading it again.',
01853 'badfilename' => 'File name has been changed to "$1".',
01854 'filetype-badmime' => 'Files of the MIME type "$1" are not allowed to be uploaded.',
01855 '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.',
01856 'filetype-unwanted-type' => "'''\".\$1\"''' is an unwanted file type.
01857 Preferred {{PLURAL:\$3|file type is|file types are}} \$2.",
01858 'filetype-banned-type' => "'''\".\$1\"''' is not a permitted file type.
01859 Permitted {{PLURAL:\$3|file type is|file types are}} \$2.",
01860 'filetype-missing' => 'The file has no extension (like ".jpg").',
01861 'large-file' => 'It is recommended that files are no larger than $1;
01862 this file is $2.',
01863 'largefileserver' => 'This file is bigger than the server is configured to allow.',
01864 'emptyfile' => 'The file you uploaded seems to be empty.
01865 This might be due to a typo in the file name.
01866 Please check whether you really want to upload this file.',
01867 'fileexists' => "A file with this name exists already, please check '''<tt>$1</tt>''' if you are not sure if you want to change it.",
01868 'filepageexists' => "The description page for this file has already been created at '''<tt>$1</tt>''', but no file with this name currently exists.
01869 The summary you enter will not appear on the description page.
01870 To make your summary appear there, you will need to manually edit it",
01871 'fileexists-extension' => "A file with a similar name exists:<br />
01872 Name of the uploading file: '''<tt>$1</tt>'''<br />
01873 Name of the existing file: '''<tt>$2</tt>'''<br />
01874 Please choose a different name.",
01875 'fileexists-thumb' => "<center>'''Existing file'''</center>",
01876 'fileexists-thumbnail-yes' => "The file seems to be an image of reduced size ''(thumbnail)''.
01877 Please check the file '''<tt>$1</tt>'''.<br />
01878 If the checked file is the same image of original size it is not necessary to upload an extra thumbnail.",
01879 'file-thumbnail-no' => "The filename begins with '''<tt>$1</tt>'''.
01880 It seems to be an image of reduced size ''(thumbnail)''.
01881 If you have this image in full resolution upload this one, otherwise change the file name please.",
01882 'fileexists-forbidden' => 'A file with this name already exists, and cannot be overwritten.
01883 If you still want to upload your file, please go back and use a new name. [[File:$1|thumb|center|$1]]',
01884 'fileexists-shared-forbidden' => 'A file with this name exists already in the shared file repository.
01885 If you still want to upload your file, please go back and use a new name. [[File:$1|thumb|center|$1]]',
01886 'file-exists-duplicate' => 'This file is a duplicate of the following {{PLURAL:$1|file|files}}:',
01887 'file-deleted-duplicate' => "A file identical to this file ([[$1]]) has previously been deleted.
01888 You should check that file's deletion history before proceeding to re-upload it.",
01889 'successfulupload' => 'Successful upload',
01890 'uploadwarning' => 'Upload warning',
01891 'savefile' => 'Save file',
01892 'uploadedimage' => 'uploaded "[[$1]]"',
01893 'overwroteimage' => 'uploaded a new version of "[[$1]]"',
01894 'uploaddisabled' => 'Uploads disabled',
01895 'uploaddisabledtext' => 'File uploads are disabled.',
01896 'php-uploaddisabledtext' => 'File uploads are disabled in PHP.
01897 Please check the file_uploads setting.',
01898 'uploadscripted' => 'This file contains HTML or script code that may be erroneously interpreted by a web browser.',
01899 'uploadcorrupt' => 'The file is corrupt or has an incorrect extension.
01900 Please check the file and upload again.',
01901 'uploadvirus' => 'The file contains a virus!
01902 Details: $1',
01903 'sourcefilename' => 'Source filename:',
01904 'destfilename' => 'Destination filename:',
01905 'upload-maxfilesize' => 'Maximum file size: $1',
01906 'watchthisupload' => 'Watch this file',
01907 'filewasdeleted' => 'A file of this name has been previously uploaded and subsequently deleted.
01908 You should check the $1 before proceeding to upload it again.',
01909 'upload-wasdeleted' => "'''Warning: You are uploading a file that was previously deleted.'''
01910
01911 You should consider whether it is appropriate to continue uploading this file.
01912 The deletion log for this file is provided here for convenience:",
01913 '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.
01914 Please choose a more descriptive name for your file.",
01915 'filename-prefix-blacklist' => ' #<!-- leave this line exactly as it is --> <pre>
01916 # Syntax is as follows:
01917 # * Everything from a "#" character to the end of the line is a comment
01918 # * Every non-blank line is a prefix for typical file names assigned automatically by digital cameras
01919 CIMG # Casio
01920 DSC_ # Nikon
01921 DSCF # Fuji
01922 DSCN # Nikon
01923 DUW # some mobile phones
01924 IMG # generic
01925 JD # Jenoptik
01926 MGP # Pentax
01927 PICT # misc.
01928 #</pre> <!-- leave this line exactly as it is -->', # only translate this message to other languages if you have to change it
01929
01930 'upload-proto-error' => 'Incorrect protocol',
01931 'upload-proto-error-text' => 'Remote upload requires URLs beginning with <code>http://</code> or <code>ftp://</code>.',
01932 'upload-file-error' => 'Internal error',
01933 'upload-file-error-text' => 'An internal error occurred when attempting to create a temporary file on the server.
01934 Please contact an [[Special:ListUsers/sysop|administrator]].',
01935 'upload-misc-error' => 'Unknown upload error',
01936 'upload-misc-error-text' => 'An unknown error occurred during the upload.
01937 Please verify that the URL is valid and accessible and try again.
01938 If the problem persists, contact an [[Special:ListUsers/sysop|administrator]].',
01939
01940 # Some likely curl errors. More could be added from <http://curl.haxx.se/libcurl/c/libcurl-errors.html>
01941 'upload-curl-error6' => 'Could not reach URL',
01942 'upload-curl-error6-text' => 'The URL provided could not be reached.
01943 Please double-check that the URL is correct and the site is up.',
01944 'upload-curl-error28' => 'Upload timeout',
01945 'upload-curl-error28-text' => 'The site took too long to respond.
01946 Please check the site is up, wait a short while and try again.
01947 You may want to try at a less busy time.',
01948
01949 'license' => 'Licensing:',
01950 'nolicense' => 'None selected',
01951 'licenses' => '-', # do not translate or duplicate this message to other languages
01952 'license-nopreview' => '(Preview not available)',
01953 'upload_source_url' => ' (a valid, publicly accessible URL)',
01954 'upload_source_file' => ' (a file on your computer)',
01955
01956 # Special:ListFiles
01957 'listfiles-summary' => 'This special page shows all uploaded files.
01958 By default the last uploaded files are shown at top of the list.
01959 A click on a column header changes the sorting.',
01960 'listfiles_search_for' => 'Search for media name:',
01961 'imgfile' => 'file',
01962 'listfiles' => 'File list',
01963 'listfiles_date' => 'Date',
01964 'listfiles_name' => 'Name',
01965 'listfiles_user' => 'User',
01966 'listfiles_size' => 'Size',
01967 'listfiles_description' => 'Description',
01968 'listfiles_count' => 'Versions',
01969
01970 # File description page
01971 'filehist' => 'File history',
01972 'filehist-help' => 'Click on a date/time to view the file as it appeared at that time.',
01973 'filehist-deleteall' => 'delete all',
01974 'filehist-deleteone' => 'delete',
01975 'filehist-revert' => 'revert',
01976 'filehist-current' => 'current',
01977 'filehist-datetime' => 'Date/Time',
01978 'filehist-thumb' => 'Thumbnail',
01979 'filehist-thumbtext' => 'Thumbnail for version as of $1',
01980 'filehist-nothumb' => 'No thumbnail',
01981 'filehist-user' => 'User',
01982 'filehist-dimensions' => 'Dimensions',
01983 'filehist-filesize' => 'File size',
01984 'filehist-comment' => 'Comment',
01985 'imagelinks' => 'File links',
01986 'linkstoimage' => 'The following {{PLURAL:$1|page links|$1 pages link}} to this file:',
01987 'linkstoimage-more' => 'More than $1 {{PLURAL:$1|page links|pages link}} to this file.
01988 The following list shows the {{PLURAL:$1|first page link|first $1 page links}} to this file only.
01989 A [[Special:WhatLinksHere/$2|full list]] is available.',
01990 'nolinkstoimage' => 'There are no pages that link to this file.',
01991 'morelinkstoimage' => 'View [[Special:WhatLinksHere/$1|more links]] to this file.',
01992 'redirectstofile' => 'The following {{PLURAL:$1|file redirects|$1 files redirect}} to this file:',
01993 'duplicatesoffile' => 'The following {{PLURAL:$1|file is a duplicate|$1 files are duplicates}} of this file ([[Special:FileDuplicateSearch/$2|more details]]):',
01994 'sharedupload' => 'This file is from $1 and may be used by other projects. $2', # $1 is the repo name, $2 is shareduploadwiki(-desc)
01995 'shareduploadwiki' => 'Please see the $1 for further information.',
01996 'shareduploadwiki-desc' => 'The description on its $1 there is shown below.',
01997 'shareduploadwiki-linktext' => 'file description page',
01998 'shareddescriptionfollows' => '-', # do not translate or duplicate this message to other languages
01999 'noimage' => 'No file by this name exists, but you can $1.',
02000 'noimage-linktext' => 'upload one',
02001 'uploadnewversion-linktext' => 'Upload a new version of this file',
02002 'shared-repo-from' => 'from $1', # $1 is the repository name
02003 'shared-repo' => 'a shared repository', # used when shared-repo-NAME does not exist
02004
02005 # File reversion
02006 'filerevert' => 'Revert $1',
02007 'filerevert-backlink' => '← $1', # only translate this message to other languages if you have to change it
02008 'filerevert-legend' => 'Revert file',
02009 'filerevert-intro' => "You are about to revert the file '''[[Media:$1|$1]]''' to the [$4 version as of $3, $2].",
02010 'filerevert-comment' => 'Reason:',
02011 'filerevert-defaultcomment' => 'Reverted to version as of $2, $1',
02012 'filerevert-submit' => 'Revert',
02013 'filerevert-success' => "'''[[Media:$1|$1]]''' has been reverted to the [$4 version as of $3, $2].",
02014 'filerevert-badversion' => 'There is no previous local version of this file with the provided timestamp.',
02015
02016 # File deletion
02017 'filedelete' => 'Delete $1',
02018 'filedelete-backlink' => '← $1', # only translate this message to other languages if you have to change it
02019 'filedelete-legend' => 'Delete file',
02020 'filedelete-intro' => "You are about to delete the file '''[[Media:$1|$1]]''' along with all of its history.",
02021 'filedelete-intro-old' => "You are deleting the version of '''[[Media:$1|$1]]''' as of [$4 $3, $2].",
02022 'filedelete-comment' => 'Reason:',
02023 'filedelete-submit' => 'Delete',
02024 'filedelete-success' => "'''$1''' has been deleted.",
02025 'filedelete-success-old' => "The version of '''[[Media:$1|$1]]''' as of $3, $2 has been deleted.",
02026 'filedelete-nofile' => "'''$1''' does not exist.",
02027 'filedelete-nofile-old' => "There is no archived version of '''$1''' with the specified attributes.",
02028 'filedelete-otherreason' => 'Other/additional reason:',
02029 'filedelete-reason-otherlist' => 'Other reason',
02030 'filedelete-reason-dropdown' => '*Common delete reasons
02031 ** Copyright violation
02032 ** Duplicated file',
02033 'filedelete-edit-reasonlist' => 'Edit delete reasons',
02034
02035 # MIME search
02036 'mimesearch' => 'MIME search',
02037 'mimesearch-summary' => 'This page enables the filtering of files for its MIME-type.
02038 Input: contenttype/subtype, e.g. <tt>image/jpeg</tt>.',
02039 'mimetype' => 'MIME type:',
02040 'download' => 'download',
02041
02042 # Unwatched pages
02043 'unwatchedpages' => 'Unwatched pages',
02044 'unwatchedpages-summary' => '', # do not translate or duplicate this message to other languages
02045
02046 # List redirects
02047 'listredirects' => 'List of redirects',
02048 'listredirects-summary' => '', # do not translate or duplicate this message to other languages
02049
02050 # Unused templates
02051 'unusedtemplates' => 'Unused templates',
02052 'unusedtemplates-summary' => '', # do not translate or duplicate this message to other languages
02053 'unusedtemplatestext' => 'This page lists all pages in the {{ns:template}} namespace which are not included in another page.
02054 Remember to check for other links to the templates before deleting them.',
02055 'unusedtemplateswlh' => 'other links',
02056
02057 # Random page
02058 'randompage' => 'Random page',
02059 'randompage-nopages' => 'There are no pages in the namespace "$1".',
02060 'randompage-url' => 'Special:Random', # do not translate or duplicate this message to other languages
02061
02062 # Random redirect
02063 'randomredirect' => 'Random redirect',
02064 'randomredirect-nopages' => 'There are no redirects in the namespace "$1".',
02065
02066 # Statistics
02067 'statistics' => 'Statistics',
02068 'statistics-summary' => '', # do not translate or duplicate this message to other languages
02069 'statistics-header-pages' => 'Page statistics',
02070 'statistics-header-edits' => 'Edit statistics',
02071 'statistics-header-views' => 'View statistics',
02072 'statistics-header-users' => 'User statistics',
02073 'statistics-articles' => 'Content pages',
02074 'statistics-pages' => 'Pages',
02075 'statistics-pages-desc' => 'All pages in the wiki, including talk pages, redirects, etc.',
02076 'statistics-files' => 'Uploaded files',
02077 'statistics-edits' => 'Page edits since {{SITENAME}} was set up',
02078 'statistics-edits-average' => 'Average edits per page',
02079 'statistics-views-total' => 'Views total',
02080 'statistics-views-peredit' => 'Views per edit',
02081 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Job queue] length',
02082 'statistics-users' => 'Registered [[Special:ListUsers|users]]',
02083 'statistics-users-active' => 'Active users',
02084 'statistics-users-active-desc' => 'Users who have performed an action in the last {{PLURAL:$1|day|$1 days}}',
02085 'statistics-mostpopular' => 'Most viewed pages',
02086 'statistics-footer' => '', # do not translate or duplicate this message to other languages
02087
02088 'disambiguations' => 'Disambiguation pages',
02089 'disambiguations-summary' => '', # do not translate or duplicate this message to other languages
02090 'disambiguationspage' => 'Template:disambig',
02091 'disambiguations-text' => "The following pages link to a '''disambiguation page'''.
02092 They should link to the appropriate topic instead.<br />
02093 A page is treated as disambiguation page if it uses a template which is linked from [[MediaWiki:Disambiguationspage]]",
02094
02095 'doubleredirects' => 'Double redirects',
02096 'doubleredirects-summary' => '', # do not translate or duplicate this message to other languages
02097 'doubleredirectstext' => 'This page lists pages which redirect to other redirect pages.
02098 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, which the first redirect should point to.
02099 <s>Crossed out</s> entries have been solved.',
02100 'double-redirect-fixed-move' => '[[$1]] has been moved.
02101 It now redirects to [[$2]].',
02102 'double-redirect-fixer' => 'Redirect fixer',
02103
02104 'brokenredirects' => 'Broken redirects',
02105 'brokenredirects-summary' => '', # do not translate or duplicate this message to other languages
02106 'brokenredirectstext' => 'The following redirects link to non-existent pages:',
02107 'brokenredirects-edit' => '(edit)',
02108 'brokenredirects-delete' => '(delete)',
02109
02110 'withoutinterwiki' => 'Pages without language links',
02111 'withoutinterwiki-summary' => 'The following pages do not link to other language versions.',
02112 'withoutinterwiki-legend' => 'Prefix',
02113 'withoutinterwiki-submit' => 'Show',
02114
02115 'fewestrevisions' => 'Pages with the fewest revisions',
02116 'fewestrevisions-summary' => '', # do not translate or duplicate this message to other languages
02117
02118 # Miscellaneous special pages
02119 'nbytes' => '$1 {{PLURAL:$1|byte|bytes}}',
02120 'ncategories' => '$1 {{PLURAL:$1|category|categories}}',
02121 'nlinks' => '$1 {{PLURAL:$1|link|links}}',
02122 'nmembers' => '$1 {{PLURAL:$1|member|members}}',
02123 'nrevisions' => '$1 {{PLURAL:$1|revision|revisions}}',
02124 'nviews' => '$1 {{PLURAL:$1|view|views}}',
02125 'specialpage-empty' => 'There are no results for this report.',
02126 'lonelypages' => 'Orphaned pages',
02127 'lonelypages-summary' => '', # do not translate or duplicate this message to other languages
02128 'lonelypagestext' => 'The following pages are not linked from or transcluded into other pages in {{SITENAME}}.',
02129 'uncategorizedpages' => 'Uncategorized pages',
02130 'uncategorizedpages-summary' => '', # do not translate or duplicate this message to other languages
02131 'uncategorizedcategories' => 'Uncategorized categories',
02132 'uncategorizedcategories-summary' => '', # do not translate or duplicate this message to other languages
02133 'uncategorizedimages' => 'Uncategorized files',
02134 'uncategorizedimages-summary' => '', # do not translate or duplicate this message to other languages
02135 'uncategorizedtemplates' => 'Uncategorized templates',
02136 'uncategorizedtemplates-summary' => '', # do not translate or duplicate this message to other languages
02137 'unusedcategories' => 'Unused categories',
02138 'unusedimages' => 'Unused files',
02139 'popularpages' => 'Popular pages',
02140 'popularpages-summary' => '', # do not translate or duplicate this message to other languages
02141 'wantedcategories' => 'Wanted categories',
02142 'wantedcategories-summary' => '', # do not translate or duplicate this message to other languages
02143 'wantedpages' => 'Wanted pages',
02144 'wantedpages-summary' => '', # do not translate or duplicate this message to other languages
02145 'wantedpages-badtitle' => 'Invalid title in result set: $1',
02146 'wantedfiles' => 'Wanted files',
02147 'wantedfiles-summary' => '', # do not translate or duplicate this message to other languages
02148 'wantedtemplates' => 'Wanted templates',
02149 'wantedtemplates-summary' => '', # do not translate or duplicate this message to other languages
02150 'mostlinked' => 'Most linked-to pages',
02151 'mostlinked-summary' => '', # do not translate or duplicate this message to other languages
02152 'mostlinkedcategories' => 'Most linked-to categories',
02153 'mostlinkedcategories-summary' => '', # do not translate or duplicate this message to other languages
02154 'mostlinkedtemplates' => 'Most linked-to templates',
02155 'mostlinkedtemplates-summary' => '', # do not translate or duplicate this message to other languages
02156 'mostcategories' => 'Pages with the most categories',
02157 'mostcategories-summary' => '', # do not translate or duplicate this message to other languages
02158 'mostimages' => 'Most linked-to files',
02159 'mostimages-summary' => '', # do not translate or duplicate this message to other languages
02160 'mostrevisions' => 'Pages with the most revisions',
02161 'mostrevisions-summary' => '', # do not translate or duplicate this message to other languages
02162 'prefixindex' => 'All pages with prefix',
02163 'prefixindex-summary' => '', # do not translate or duplicate this message to other languages
02164 'shortpages' => 'Short pages',
02165 'shortpages-summary' => '', # do not translate or duplicate this message to other languages
02166 'longpages' => 'Long pages',
02167 'longpages-summary' => '', # do not translate or duplicate this message to other languages
02168 'deadendpages' => 'Dead-end pages',
02169 'deadendpages-summary' => '', # do not translate or duplicate this message to other languages
02170 'deadendpagestext' => 'The following pages do not link to other pages in {{SITENAME}}.',
02171 'protectedpages' => 'Protected pages',
02172 'protectedpages-indef' => 'Indefinite protections only',
02173 'protectedpages-summary' => '', # do not translate or duplicate this message to other languages
02174 'protectedpages-cascade' => 'Cascading protections only',
02175 'protectedpagestext' => 'The following pages are protected from moving or editing',
02176 'protectedpagesempty' => 'No pages are currently protected with these parameters.',
02177 'protectedtitles' => 'Protected titles',
02178 'protectedtitles-summary' => '', # do not translate or duplicate this message to other languages
02179 'protectedtitlestext' => 'The following titles are protected from creation',
02180 'protectedtitlesempty' => 'No titles are currently protected with these parameters.',
02181 'listusers' => 'User list',
02182 'listusers-summary' => '', # do not translate or duplicate this message to other languages
02183 'listusers-editsonly' => 'Show only users with edits',
02184 'listusers-creationsort' => 'Sort by creation date',
02185 'usereditcount' => '$1 {{PLURAL:$1|edit|edits}}',
02186 'usercreated' => 'Created on $1 at $2',
02187 'newpages' => 'New pages',
02188 'newpages-summary' => '', # do not translate or duplicate this message to other languages
02189 'newpages-username' => 'Username:',
02190 'ancientpages' => 'Oldest pages',
02191 'ancientpages-summary' => '', # do not translate or duplicate this message to other languages
02192 'move' => 'Move',
02193 'movethispage' => 'Move this page',
02194 'unusedimagestext' => 'The following files exist but are not embedded in any page.
02195 Please note that other web sites may link to a file with a direct URL, and so may still be listed here despite being in active use.',
02196 'unusedcategoriestext' => 'The following category pages exist, although no other page or category makes use of them.',
02197 'notargettitle' => 'No target',
02198 'notargettext' => 'You have not specified a target page or user to perform this function on.',
02199 'nopagetitle' => 'No such target page',
02200 'nopagetext' => 'The target page you have specified does not exist.',
02201 'pager-newer-n' => '{{PLURAL:$1|newer 1|newer $1}}',
02202 'pager-older-n' => '{{PLURAL:$1|older 1|older $1}}',
02203 'suppress' => 'Oversight',
02204
02205 # Book sources
02206 'booksources' => 'Book sources',
02207 'booksources-summary' => '', # do not translate or duplicate this message to other languages
02208 'booksources-search-legend' => 'Search for book sources',
02209 'booksources-isbn' => 'ISBN:', # only translate this message to other languages if you have to change it
02210 'booksources-go' => 'Go',
02211 'booksources-text' => 'Below is a list of links to other sites that sell new and used books, and may also have further information about books you are looking for:',
02212 'booksources-invalid-isbn' => 'The given ISBN does not appear to be valid; check for errors copying from the original source.',
02213
02214 # Magic words
02215 'rfcurl' => 'http://tools.ietf.org/html/rfc$1', # do not translate or duplicate this message to other languages
02216 'pubmedurl' => 'http://www.ncbi.nlm.nih.gov/pubmed/$1?dopt=Abstract', # do not translate or duplicate this message to other languages
02217
02218 # Special:Log
02219 'specialloguserlabel' => 'User:',
02220 'speciallogtitlelabel' => 'Title:',
02221 'log' => 'Logs',
02222 'all-logs-page' => 'All public logs',
02223 'alllogstext' => 'Combined display of all available logs of {{SITENAME}}.
02224 You can narrow down the view by selecting a log type, the user name (case-sensitive), or the affected page (also case-sensitive).',
02225 'logempty' => 'No matching items in log.',
02226 'log-title-wildcard' => 'Search titles starting with this text',
02227
02228 # Special:AllPages
02229 'allpages' => 'All pages',
02230 'allpages-summary' => '', # do not translate or duplicate this message to other languages
02231 'alphaindexline' => '$1 to $2',
02232 'nextpage' => 'Next page ($1)',
02233 'prevpage' => 'Previous page ($1)',
02234 'allpagesfrom' => 'Display pages starting at:',
02235 'allpagesto' => 'Display pages ending at:',
02236 'allarticles' => 'All pages',
02237 'allinnamespace' => 'All pages ($1 namespace)',
02238 'allnotinnamespace' => 'All pages (not in $1 namespace)',
02239 'allpagesprev' => 'Previous',
02240 'allpagesnext' => 'Next',
02241 'allpagessubmit' => 'Go',
02242 'allpagesprefix' => 'Display pages with prefix:',
02243 'allpagesbadtitle' => 'The given page title was invalid or had an inter-language or inter-wiki prefix.
02244 It may contain one or more characters which cannot be used in titles.',
02245 'allpages-bad-ns' => '{{SITENAME}} does not have namespace "$1".',
02246
02247 # Special:Categories
02248 'categories' => 'Categories',
02249 'categories-summary' => '', # do not translate or duplicate this message to other languages
02250 'categoriespagetext' => 'The following categories contain pages or media.
02251 [[Special:UnusedCategories|Unused categories]] are not shown here.
02252 Also see [[Special:WantedCategories|wanted categories]].',
02253 'categoriesfrom' => 'Display categories starting at:',
02254 'special-categories-sort-count' => 'sort by count',
02255 'special-categories-sort-abc' => 'sort alphabetically',
02256
02257 # Special:DeletedContributions
02258 'deletedcontributions' => 'Deleted user contributions',
02259 'deletedcontributions-title' => 'Deleted user contributions',
02260
02261 # Special:LinkSearch
02262 'linksearch' => 'External links',
02263 'linksearch-pat' => 'Search pattern:',
02264 'linksearch-ns' => 'Namespace:',
02265 'linksearch-ok' => 'Search',
02266 'linksearch-text' => 'Wildcards such as "*.wikipedia.org" may be used.<br />
02267 Supported protocols: <tt>$1</tt>',
02268 'linksearch-line' => '$1 is linked from $2',
02269 'linksearch-error' => 'Wildcards may appear only at the start of the hostname.',
02270
02271 # Special:ListUsers
02272 'listusersfrom' => 'Display users starting at:',
02273 'listusers-submit' => 'Show',
02274 'listusers-noresult' => 'No user found.',
02275
02276 # Special:Log/newusers
02277 'newuserlogpage' => 'User creation log',
02278 'newuserlogpagetext' => 'This is a log of user creations.',
02279 'newuserlogentry' => '', # do not translate or duplicate this message to other languages
02280 'newuserlog-byemail' => 'password sent by e-mail',
02281 'newuserlog-create-entry' => 'New user account',
02282 'newuserlog-create2-entry' => 'created new account $1',
02283 'newuserlog-autocreate-entry' => 'Account created automatically',
02284
02285 # Special:ListGroupRights
02286 'listgrouprights' => 'User group rights',
02287 'listgrouprights-summary' => 'The following is a list of user groups defined on this wiki, with their associated access rights.
02288 There may be [[{{MediaWiki:Listgrouprights-helppage}}|additional information]] about individual rights.',
02289 'listgrouprights-group' => 'Group',
02290 'listgrouprights-rights' => 'Rights',
02291 'listgrouprights-helppage' => 'Help:Group rights',
02292 'listgrouprights-members' => '(list of members)',
02293 'listgrouprights-right-display' => '$1 ($2)', # only translate this message to other languages if you have to change it
02294 'listgrouprights-addgroup' => 'Add {{PLURAL:$2|group|groups}}: $1',
02295 'listgrouprights-removegroup' => 'Remove {{PLURAL:$2|group|groups}}: $1',
02296 'listgrouprights-addgroup-all' => 'Add all groups',
02297 'listgrouprights-removegroup-all' => 'Remove all groups',
02298
02299 # E-mail user
02300 'mailnologin' => 'No send address',
02301 'mailnologintext' => 'You must be [[Special:UserLogin|logged in]] and have a valid e-mail address in your [[Special:Preferences|preferences]] to send e-mail to other users.',
02302 'emailuser' => 'E-mail this user',
02303 'emailpage' => 'E-mail user',
02304 'emailpagetext' => 'You can use the form below to send an e-mail message to this user.
02305 The e-mail address you entered in [[Special:Preferences|your user preferences]] will appear as the "From" address of the e-mail, so the recipient will be able to reply directly to you.',
02306 'usermailererror' => 'Mail object returned error:',
02307 'defemailsubject' => '{{SITENAME}} e-mail',
02308 'noemailtitle' => 'No e-mail address',
02309 'noemailtext' => 'This user has not specified a valid e-mail address.',
02310 'nowikiemailtitle' => 'No e-mail allowed',
02311 'nowikiemailtext' => 'This user has chosen not to receive e-mail from other users.',
02312 'email-legend' => 'Send an e-mail to another {{SITENAME}} user',
02313 'emailfrom' => 'From:',
02314 'emailto' => 'To:',
02315 'emailsubject' => 'Subject:',
02316 'emailmessage' => 'Message:',
02317 'emailsend' => 'Send',
02318 'emailccme' => 'E-mail me a copy of my message.',
02319 'emailccsubject' => 'Copy of your message to $1: $2',
02320 'emailsent' => 'E-mail sent',
02321 'emailsenttext' => 'Your e-mail message has been sent.',
02322 'emailuserfooter' => 'This e-mail was sent by $1 to $2 by the "E-mail user" function at {{SITENAME}}.',
02323
02324 # Watchlist
02325 'watchlist' => 'My watchlist',
02326 'mywatchlist' => 'My watchlist',
02327 'watchlistfor' => "(for '''$1''')",
02328 'nowatchlist' => 'You have no items on your watchlist.',
02329 'watchlistanontext' => 'Please $1 to view or edit items on your watchlist.',
02330 'watchnologin' => 'Not logged in',
02331 'watchnologintext' => 'You must be [[Special:UserLogin|logged in]] to modify your watchlist.',
02332 'addedwatch' => 'Added to watchlist',
02333 'addedwatchtext' => "The page \"[[:\$1]]\" has been added to your [[Special:Watchlist|watchlist]].
02334 Future changes to this page and its associated talk page will be listed there, and the page will appear '''bolded''' in the [[Special:RecentChanges|list of recent changes]] to make it easier to pick out.",
02335 'removedwatch' => 'Removed from watchlist',
02336 'removedwatchtext' => 'The page "[[:$1]]" has been removed from [[Special:Watchlist|your watchlist]].',
02337 'watch' => 'Watch',
02338 'watchthispage' => 'Watch this page',
02339 'unwatch' => 'Unwatch',
02340 'unwatchthispage' => 'Stop watching',
02341 'notanarticle' => 'Not a content page',
02342 'notvisiblerev' => 'The last revision by a different user has been deleted',
02343 'watchnochange' => 'None of your watched items were edited in the time period displayed.',
02344 'watchlist-details' => '{{PLURAL:$1|$1 page|$1 pages}} on your watchlist, not counting talk pages.',
02345 'wlheader-enotif' => '* E-mail notification is enabled.',
02346 'wlheader-showupdated' => "* Pages which have been changed since you last visited them are shown in '''bold'''",
02347 'watchmethod-recent' => 'checking recent edits for watched pages',
02348 'watchmethod-list' => 'checking watched pages for recent edits',
02349 'watchlistcontains' => 'Your watchlist contains $1 {{PLURAL:$1|page|pages}}.',
02350 'iteminvalidname' => "Problem with item '$1', invalid name...",
02351 'wlnote' => "Below {{PLURAL:$1|is the last change|are the last '''$1''' changes}} in the last {{PLURAL:$2|hour|'''$2''' hours}}.",
02352 'wlshowlast' => 'Show last $1 hours $2 days $3',
02353 'watchlist-options' => 'Watchlist options',
02354
02355 # Displayed when you click the "watch" button and it is in the process of watching
02356 'watching' => 'Watching...',
02357 'unwatching' => 'Unwatching...',
02358
02359 'enotif_mailer' => '{{SITENAME}} notification mailer',
02360 'enotif_reset' => 'Mark all pages visited',
02361 'enotif_newpagetext' => 'This is a new page.',
02362 'enotif_impersonal_salutation' => '{{SITENAME}} user',
02363 'changed' => 'changed',
02364 'created' => 'created',
02365 'enotif_subject' => '{{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED by $PAGEEDITOR',
02366 'enotif_lastvisited' => 'See $1 for all changes since your last visit.',
02367 'enotif_lastdiff' => 'See $1 to view this change.',
02368 'enotif_anon_editor' => 'anonymous user $1',
02369 'enotif_body' => 'Dear $WATCHINGUSERNAME,
02370
02371
02372 The {{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED on $PAGEEDITDATE by $PAGEEDITOR, see $PAGETITLE_URL for the current revision.
02373
02374 $NEWPAGE
02375
02376 Editor\'s summary: $PAGESUMMARY $PAGEMINOREDIT
02377
02378 Contact the editor:
02379 mail: $PAGEEDITOR_EMAIL
02380 wiki: $PAGEEDITOR_WIKI
02381
02382 There will be no other notifications in case of further changes unless you visit this page.
02383 You could also reset the notification flags for all your watched pages on your watchlist.
02384
02385 Your friendly {{SITENAME}} notification system
02386
02387 --
02388 To change your watchlist settings, visit
02389 {{fullurl:{{ns:special}}:Watchlist/edit}}
02390
02391 Feedback and further assistance:
02392 {{fullurl:{{MediaWiki:Helppage}}}}',
02393
02394 # Delete
02395 'deletepage' => 'Delete page',
02396 'confirm' => 'Confirm',
02397 'excontent' => 'content was: "$1"',
02398 'excontentauthor' => 'content was: "$1" (and the only contributor was "[[Special:Contributions/$2|$2]]")',
02399 'exbeforeblank' => 'content before blanking was: "$1"',
02400 'exblank' => 'page was empty',
02401 'delete-confirm' => 'Delete "$1"',
02402 'delete-backlink' => '← $1', # only translate this message to other languages if you have to change it
02403 'delete-legend' => 'Delete',
02404 'historywarning' => "'''Warning:''' The page you are about to delete has a history:",
02405 'confirmdeletetext' => 'You are about to delete a page along with all of its history.
02406 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]].',
02407 'actioncomplete' => 'Action complete',
02408 'deletedtext' => '"<nowiki>$1</nowiki>" has been deleted.
02409 See $2 for a record of recent deletions.',
02410 'deletedarticle' => 'deleted "[[$1]]"',
02411 'suppressedarticle' => 'suppressed "[[$1]]"',
02412 'dellogpage' => 'Deletion log',
02413 'dellogpagetext' => 'Below is a list of the most recent deletions.',
02414 'deletionlog' => 'deletion log',
02415 'reverted' => 'Reverted to earlier revision',
02416 'deletecomment' => 'Reason:',
02417 'deleteotherreason' => 'Other/additional reason:',
02418 'deletereasonotherlist' => 'Other reason',
02419 'deletereason-dropdown' => '*Common delete reasons
02420 ** Author request
02421 ** Copyright violation
02422 ** Vandalism',
02423 'delete-edit-reasonlist' => 'Edit deletion reasons',
02424 'delete-toobig' => 'This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.
02425 Deletion of such pages has been restricted to prevent accidental disruption of {{SITENAME}}.',
02426 'delete-warning-toobig' => 'This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.
02427 Deleting it may disrupt database operations of {{SITENAME}};
02428 proceed with caution.',
02429
02430 # Rollback
02431 'rollback' => 'Roll back edits',
02432 'rollback_short' => 'Rollback',
02433 'rollbacklink' => 'rollback',
02434 'rollbackfailed' => 'Rollback failed',
02435 'cantrollback' => 'Cannot revert edit;
02436 last contributor is only author of this page.',
02437 'alreadyrolled' => 'Cannot rollback last edit of [[:$1]] by [[User:$2|$2]] ([[User talk:$2|Talk]]{{int:pipe-separator}}[[Special:Contributions/$2|{{int:contribslink}}]]);
02438 someone else has edited or rolled back the page already.
02439
02440 The last edit to the page was by [[User:$3|$3]] ([[User talk:$3|Talk]]{{int:pipe-separator}}[[Special:Contributions/$3|{{int:contribslink}}]]).',
02441 'editcomment' => "The edit summary was: \"''\$1''\".", # only shown if there is an edit comment
02442 'revertpage' => 'Reverted edits by [[Special:Contributions/$2|$2]] ([[User talk:$2|Talk]]) to last revision by [[User:$1|$1]]', # Additionally available: $3: revid of the revision reverted to, $4: timestamp of the revision reverted to, $5: revid of the revision reverted from, $6: timestamp of the revision reverted from
02443 'rollback-success' => 'Reverted edits by $1;
02444 changed back to last revision by $2.',
02445 'sessionfailure' => 'There seems to be a problem with your login session;
02446 this action has been canceled as a precaution against session hijacking.
02447 Please hit "back" and reload the page you came from, then try again.',
02448
02449 # Protect
02450 'protectlogpage' => 'Protection log',
02451 'protectlogtext' => 'Below is a list of page locks and unlocks.
02452 See the [[Special:ProtectedPages|protected pages list]] for the list of currently operational page protections.',
02453 'protectedarticle' => 'protected "[[$1]]"',
02454 'modifiedarticleprotection' => 'changed protection level for "[[$1]]"',
02455 'unprotectedarticle' => 'unprotected "[[$1]]"',
02456 'movedarticleprotection' => 'moved protection settings from "[[$2]]" to "[[$1]]"',
02457 'protect-title' => 'Change protection level for "$1"',
02458 'prot_1movedto2' => '[[$1]] moved to [[$2]]',
02459 'protect-backlink' => '← $1', # only translate this message to other languages if you have to change it
02460 'protect-legend' => 'Confirm protection',
02461 'protectcomment' => 'Reason:',
02462 'protectexpiry' => 'Expires:',
02463 'protect_expiry_invalid' => 'Expiry time is invalid.',
02464 'protect_expiry_old' => 'Expiry time is in the past.',
02465 'protect-unchain' => 'Unlock move permissions',
02466 'protect-text' => "You may view and change the protection level here for the page '''<nowiki>$1</nowiki>'''.",
02467 'protect-locked-blocked' => "You cannot change protection levels while blocked.
02468 Here are the current settings for the page '''$1''':",
02469 'protect-locked-dblock' => "Protection levels cannot be changed due to an active database lock.
02470 Here are the current settings for the page '''$1''':",
02471 'protect-locked-access' => "Your account does not have permission to change page protection levels.
02472 Here are the current settings for the page '''$1''':",
02473 '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.
02474 You can change this page's protection level, but it will not affect the cascading protection.",
02475 'protect-default' => 'Allow all users',
02476 'protect-fallback' => 'Require "$1" permission',
02477 'protect-level-autoconfirmed' => 'Block new and unregistered users',
02478 'protect-level-sysop' => 'Administrators only',
02479 'protect-summary-cascade' => 'cascading',
02480 'protect-expiring' => 'expires $1 (UTC)',
02481 'protect-expiry-indefinite' => 'indefinite',
02482 'protect-cascade' => 'Protect pages included in this page (cascading protection)',
02483 'protect-cantedit' => 'You cannot change the protection levels of this page, because you do not have permission to edit it.',
02484 'protect-othertime' => 'Other time:',
02485 'protect-othertime-op' => 'other time',
02486 'protect-existing-expiry' => 'Existing expiry time: $3, $2',
02487 'protect-otherreason' => 'Other/additional reason:',
02488 'protect-otherreason-op' => 'Other reason',
02489 'protect-dropdown' => '*Common protection reasons
02490 ** Excessive vandalism
02491 ** Excessive spamming
02492 ** Counter-productive edit warring
02493 ** High traffic page',
02494 'protect-edit-reasonlist' => 'Edit protection reasons',
02495 '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', # display1:time1,display2:time2,...
02496 'restriction-type' => 'Permission:',
02497 'restriction-level' => 'Restriction level:',
02498 'minimum-size' => 'Min size',
02499 'maximum-size' => 'Max size:',
02500 'pagesize' => '(bytes)',
02501
02502 # Restrictions (nouns)
02503 'restriction-edit' => 'Edit',
02504 'restriction-move' => 'Move',
02505 'restriction-create' => 'Create',
02506 'restriction-upload' => 'Upload',
02507
02508 # Restriction levels
02509 'restriction-level-sysop' => 'fully protected',
02510 'restriction-level-autoconfirmed' => 'semi protected',
02511 'restriction-level-all' => 'any level',
02512
02513 # Undelete
02514 'undelete' => 'View deleted pages',
02515 'undeletepage' => 'View and restore deleted pages',
02516 'undeletepagetitle' => "'''The following consists of deleted revisions of [[:$1|$1]]'''.",
02517 'viewdeletedpage' => 'View deleted pages',
02518 '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.
02519 The archive may be periodically cleaned out.',
02520 'undelete-fieldset-title' => 'Restore revisions',
02521 'undeleteextrahelp' => "To restore the page's entire history, leave all checkboxes deselected and click '''''Restore'''''.
02522 To perform a selective restoration, check the boxes corresponding to the revisions to be restored, and click '''''Restore'''''.
02523 Clicking '''''Reset''''' will clear the comment field and all checkboxes.",
02524 'undeleterevisions' => '$1 {{PLURAL:$1|revision|revisions}} archived',
02525 'undeletehistory' => 'If you restore the page, all revisions will be restored to the history.
02526 If a new page with the same name has been created since the deletion, the restored revisions will appear in the prior history.',
02527 'undeleterevdel' => 'Undeletion will not be performed if it will result in the top page or file revision being partially deleted.
02528 In such cases, you must uncheck or unhide the newest deleted revision.',
02529 'undeletehistorynoadmin' => 'This page has been deleted.
02530 The reason for deletion is shown in the summary below, along with details of the users who had edited this page before deletion.
02531 The actual text of these deleted revisions is only available to administrators.',
02532 'undelete-revision' => 'Deleted revision of $1 (as of $4, at $5) by $3:',
02533 'undeleterevision-missing' => 'Invalid or missing revision.
02534 You may have a bad link, or the revision may have been restored or removed from the archive.',
02535 'undelete-nodiff' => 'No previous revision found.',
02536 'undeletebtn' => 'Restore',
02537 'undeletelink' => 'view/restore',
02538 'undeletereset' => 'Reset',
02539 'undeleteinvert' => 'Invert selection',
02540 'undeletecomment' => 'Reason:',
02541 'undeletedarticle' => 'restored "[[$1]]"',
02542 'undeletedrevisions' => '{{PLURAL:$1|1 revision|$1 revisions}} restored',
02543 'undeletedrevisions-files' => '{{PLURAL:$1|1 revision|$1 revisions}} and {{PLURAL:$2|1 file|$2 files}} restored',
02544 'undeletedfiles' => '{{PLURAL:$1|1 file|$1 files}} restored',
02545 'cannotundelete' => 'Undelete failed;
02546 someone else may have undeleted the page first.',
02547 'undeletedpage' => "'''$1 has been restored'''
02548
02549 Consult the [[Special:Log/delete|deletion log]] for a record of recent deletions and restorations.",
02550 'undelete-header' => 'See [[Special:Log/delete|the deletion log]] for recently deleted pages.',
02551 'undelete-search-box' => 'Search deleted pages',
02552 'undelete-search-prefix' => 'Show pages starting with:',
02553 'undelete-search-submit' => 'Search',
02554 'undelete-no-results' => 'No matching pages found in the deletion archive.',
02555 'undelete-filename-mismatch' => 'Cannot undelete file revision with timestamp $1: filename mismatch',
02556 'undelete-bad-store-key' => 'Cannot undelete file revision with timestamp $1: file was missing before deletion.',
02557 'undelete-cleanup-error' => 'Error deleting unused archive file "$1".',
02558 'undelete-missing-filearchive' => 'Unable to restore file archive ID $1 because it is not in the database.
02559 It may have already been undeleted.',
02560 'undelete-error-short' => 'Error undeleting file: $1',
02561 'undelete-error-long' => 'Errors were encountered while undeleting the file:
02562
02563 $1',
02564 'undelete-show-file-confirm' => 'Are you sure you want to view the deleted revision of the file "<nowiki>$1</nowiki>" from $2 at $3?',
02565 'undelete-show-file-submit' => 'Yes',
02566
02567 # Namespace form on various pages
02568 'namespace' => 'Namespace:',
02569 'invert' => 'Invert selection',
02570 'blanknamespace' => '(Main)',
02571
02572 # Contributions
02573 'contributions' => 'User contributions',
02574 'contributions-title' => 'User contributions for $1',
02575 'mycontris' => 'My contributions',
02576 'contribsub2' => 'For $1 ($2)',
02577 'nocontribs' => 'No changes were found matching these criteria.', # Optional parameter: $1 is the user name
02578 'uctop' => '(top)',
02579 'month' => 'From month (and earlier):',
02580 'year' => 'From year (and earlier):',
02581
02582 'sp-contributions-newbies' => 'Show contributions of new accounts only',
02583 'sp-contributions-newbies-sub' => 'For new accounts',
02584 'sp-contributions-newbies-title' => 'User contributions for new accounts',
02585 'sp-contributions-blocklog' => 'block log',
02586 'sp-contributions-logs' => 'logs',
02587 'sp-contributions-search' => 'Search for contributions',
02588 'sp-contributions-username' => 'IP address or username:',
02589 'sp-contributions-submit' => 'Search',
02590 'sp-contributions-explain' => '', # only translate this message to other languages if you have to change it
02591 'sp-contributions-footer' => '-', # do not translate or duplicate this message to other languages
02592 'sp-contributions-footer-anon' => '-', # do not translate or duplicate this message to other languages
02593
02594 # What links here
02595 'whatlinkshere' => 'What links here',
02596 'whatlinkshere-title' => 'Pages that link to "$1"',
02597 'whatlinkshere-summary' => '', # do not translate or duplicate this message to other languages
02598 'whatlinkshere-page' => 'Page:',
02599 'whatlinkshere-backlink' => '← $1', # only translate this message to other languages if you have to change it
02600 'linkshere' => "The following pages link to '''[[:$1]]''':",
02601 'nolinkshere' => "No pages link to '''[[:$1]]'''.",
02602 'nolinkshere-ns' => "No pages link to '''[[:$1]]''' in the chosen namespace.",
02603 'isredirect' => 'redirect page',
02604 'istemplate' => 'transclusion',
02605 'isimage' => 'image link',
02606 'whatlinkshere-prev' => '{{PLURAL:$1|previous|previous $1}}',
02607 'whatlinkshere-next' => '{{PLURAL:$1|next|next $1}}',
02608 'whatlinkshere-links' => '← links',
02609 'whatlinkshere-hideredirs' => '$1 redirects',
02610 'whatlinkshere-hidetrans' => '$1 transclusions',
02611 'whatlinkshere-hidelinks' => '$1 links',
02612 'whatlinkshere-hideimages' => '$1 image links',
02613 'whatlinkshere-filters' => 'Filters',
02614
02615 # Block/unblock
02616 'blockip' => 'Block user',
02617 'blockip-legend' => 'Block user',
02618 'blockiptext' => 'Use the form below to block write access from a specific IP address or username.
02619 This should be done only to prevent vandalism, and in accordance with [[{{MediaWiki:Policy-url}}|policy]].
02620 Fill in a specific reason below (for example, citing particular pages that were vandalized).',
02621 'ipaddress' => 'IP address:',
02622 'ipadressorusername' => 'IP address or username:',
02623 'ipbexpiry' => 'Expiry:',
02624 'ipbreason' => 'Reason:',
02625 'ipbreasonotherlist' => 'Other reason',
02626 'ipbreason-dropdown' => '*Common block reasons
02627 ** Inserting false information
02628 ** Removing content from pages
02629 ** Spamming links to external sites
02630 ** Inserting nonsense/gibberish into pages
02631 ** Intimidating behaviour/harassment
02632 ** Abusing multiple accounts
02633 ** Unacceptable username',
02634 'ipbanononly' => 'Block anonymous users only',
02635 'ipbcreateaccount' => 'Prevent account creation',
02636 'ipbemailban' => 'Prevent user from sending e-mail',
02637 'ipbenableautoblock' => 'Automatically block the last IP address used by this user, and any subsequent IP addresses they try to edit from',
02638 'ipbsubmit' => 'Block this user',
02639 'ipbother' => 'Other time:',
02640 'ipboptions' => '2 hours:2 hours,1 day:1 day,3 days:3 days,1 week:1 week,2 weeks:2 weeks,1 month:1 month,3 months:3 months,6 months:6 months,1 year:1 year,infinite:infinite', # display1:time1,display2:time2,...
02641 'ipbotheroption' => 'other',
02642 'ipbotherreason' => 'Other/additional reason:',
02643 'ipbhidename' => 'Hide username from edits and lists',
02644 'ipbwatchuser' => "Watch this user's user and talk pages",
02645 'ipballowusertalk' => 'Allow this user to edit own talk page while blocked',
02646 'ipb-change-block' => 'Re-block the user with these settings',
02647 'badipaddress' => 'Invalid IP address',
02648 'blockipsuccesssub' => 'Block succeeded',
02649 'blockipsuccesstext' => '[[Special:Contributions/$1|$1]] has been blocked.<br />
02650 See [[Special:IPBlockList|IP block list]] to review blocks.',
02651 'ipb-edit-dropdown' => 'Edit block reasons',
02652 'ipb-unblock-addr' => 'Unblock $1',
02653 'ipb-unblock' => 'Unblock a username or IP address',
02654 'ipb-blocklist-addr' => 'Existing blocks for $1',
02655 'ipb-blocklist' => 'View existing blocks',
02656 'ipb-blocklist-contribs' => 'Contributions for $1',
02657 'unblockip' => 'Unblock user',
02658 'unblockiptext' => 'Use the form below to restore write access to a previously blocked IP address or username.',
02659 'ipusubmit' => 'Remove this block',
02660 'unblocked' => '[[User:$1|$1]] has been unblocked',
02661 'unblocked-id' => 'Block $1 has been removed',
02662 'ipblocklist' => 'Blocked IP addresses and usernames',
02663 'ipblocklist-legend' => 'Find a blocked user',
02664 'ipblocklist-username' => 'Username or IP address:',
02665 'ipblocklist-sh-userblocks' => '$1 account blocks',
02666 'ipblocklist-sh-tempblocks' => '$1 temporary blocks',
02667 'ipblocklist-sh-addressblocks' => '$1 single IP blocks',
02668 'ipblocklist-summary' => '', # do not translate or duplicate this message to other languages
02669 'ipblocklist-submit' => 'Search',
02670 'blocklistline' => '$1, $2 blocked $3 ($4)',
02671 'infiniteblock' => 'infinite',
02672 'expiringblock' => 'expires $1',
02673 'anononlyblock' => 'anon. only',
02674 'noautoblockblock' => 'autoblock disabled',
02675 'createaccountblock' => 'account creation blocked',
02676 'emailblock' => 'e-mail blocked',
02677 'blocklist-nousertalk' => 'cannot edit own talk page',
02678 'ipblocklist-empty' => 'The blocklist is empty.',
02679 'ipblocklist-no-results' => 'The requested IP address or username is not blocked.',
02680 'blocklink' => 'block',
02681 'unblocklink' => 'unblock',
02682 'change-blocklink' => 'change block',
02683 'contribslink' => 'contribs',
02684 'autoblocker' => 'Autoblocked because your IP address has been recently used by "[[User:$1|$1]]".
02685 The reason given for $1\'s block is: "$2"',
02686 'blocklogpage' => 'Block log',
02687 'blocklog-fulllog' => 'Full block log',
02688 'blocklogentry' => 'blocked [[$1]] with an expiry time of $2 $3',
02689 'reblock-logentry' => 'changed block settings for [[$1]] with an expiry time of $2 $3',
02690 'blocklogtext' => 'This is a log of user blocking and unblocking actions.
02691 Automatically blocked IP addresses are not listed.
02692 See the [[Special:IPBlockList|IP block list]] for the list of currently operational bans and blocks.',
02693 'unblocklogentry' => 'unblocked $1',
02694 'block-log-flags-anononly' => 'anonymous users only',
02695 'block-log-flags-nocreate' => 'account creation disabled',
02696 'block-log-flags-noautoblock' => 'autoblock disabled',
02697 'block-log-flags-noemail' => 'e-mail blocked',
02698 'block-log-flags-nousertalk' => 'cannot edit own talk page',
02699 'block-log-flags-angry-autoblock' => 'enhanced autoblock enabled',
02700 'block-log-flags-hiddenname' => 'username hidden',
02701 'range_block_disabled' => 'The administrator ability to create range blocks is disabled.',
02702 'ipb_expiry_invalid' => 'Expiry time invalid.',
02703 'ipb_expiry_temp' => 'Hidden username blocks must be permanent.',
02704 'ipb_hide_invalid' => 'Unable to suppress this account; it may have too many edits.',
02705 'ipb_already_blocked' => '"$1" is already blocked',
02706 'ipb-needreblock' => '== Already blocked ==
02707 $1 is already blocked.
02708 Do you want to change the settings?',
02709 'ipb_cant_unblock' => 'Error: Block ID $1 not found.
02710 It may have been unblocked already.',
02711 'ipb_blocked_as_range' => 'Error: The IP address $1 is not blocked directly and cannot be unblocked.
02712 It is, however, blocked as part of the range $2, which can be unblocked.',
02713 'ip_range_invalid' => 'Invalid IP range.',
02714 'blockme' => 'Block me',
02715 'proxyblocker' => 'Proxy blocker',
02716 'proxyblocker-disabled' => 'This function is disabled.',
02717 'proxyblockreason' => 'Your IP address has been blocked because it is an open proxy.
02718 Please contact your Internet service provider or tech support and inform them of this serious security problem.',
02719 'proxyblocksuccess' => 'Done.',
02720 'sorbs' => 'DNSBL', # only translate this message to other languages if you have to change it
02721 'sorbsreason' => 'Your IP address is listed as an open proxy in the DNSBL used by {{SITENAME}}.',
02722 'sorbs_create_account_reason' => 'Your IP address is listed as an open proxy in the DNSBL used by {{SITENAME}}.
02723 You cannot create an account',
02724 'cant-block-while-blocked' => 'You cannot block other users while you are blocked.',
02725
02726 # Developer tools
02727 'lockdb' => 'Lock database',
02728 'unlockdb' => 'Unlock database',
02729 'lockdbtext' => 'Locking the database will suspend the ability of all users to edit pages, change their preferences, edit their watchlists, and other things requiring changes in the database.
02730 Please confirm that this is what you intend to do, and that you will unlock the database when your maintenance is done.',
02731 'unlockdbtext' => 'Unlocking the database will restore the ability of all users to edit pages, change their preferences, edit their watchlists, and other things requiring changes in the database.
02732 Please confirm that this is what you intend to do.',
02733 'lockconfirm' => 'Yes, I really want to lock the database.',
02734 'unlockconfirm' => 'Yes, I really want to unlock the database.',
02735 'lockbtn' => 'Lock database',
02736 'unlockbtn' => 'Unlock database',
02737 'locknoconfirm' => 'You did not check the confirmation box.',
02738 'lockdbsuccesssub' => 'Database lock succeeded',
02739 'unlockdbsuccesssub' => 'Database lock removed',
02740 'lockdbsuccesstext' => 'The database has been locked.<br />
02741 Remember to [[Special:UnlockDB|remove the lock]] after your maintenance is complete.',
02742 'unlockdbsuccesstext' => 'The database has been unlocked.',
02743 'lockfilenotwritable' => 'The database lock file is not writable.
02744 To lock or unlock the database, this needs to be writable by the web server.',
02745 'databasenotlocked' => 'The database is not locked.',
02746
02747 # Move page
02748 'move-page' => 'Move $1',
02749 'move-page-backlink' => '← $1', # only translate this message to other languages if you have to change it
02750 'move-page-legend' => 'Move page',
02751 'movepagetext' => "Using the form below will rename a page, moving all of its history to the new name.
02752 The old title will become a redirect page to the new title.
02753 You can update redirects that point to the original title automatically.
02754 If you choose not to, be sure to check for [[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken redirects]].
02755 You are responsible for making sure that links continue to point where they are supposed to go.
02756
02757 Note that the page will '''not''' be moved if there is already a page at the new title, unless it is empty or a redirect and has no past edit history.
02758 This means that you can rename a page back to where it was renamed from if you make a mistake, and you cannot overwrite an existing page.
02759
02760 '''Warning!'''
02761 This can be a drastic and unexpected change for a popular page;
02762 please be sure you understand the consequences of this before proceeding.",
02763 'movepagetalktext' => "The associated talk page will be automatically moved along with it '''unless:'''
02764 *A non-empty talk page already exists under the new name, or
02765 *You uncheck the box below.
02766
02767 In those cases, you will have to move or merge the page manually if desired.",
02768 'movearticle' => 'Move page:',
02769 'movenologin' => 'Not logged in',
02770 'movenologintext' => 'You must be a registered user and [[Special:UserLogin|logged in]] to move a page.',
02771 'movenotallowed' => 'You do not have permission to move pages.',
02772 'movenotallowedfile' => 'You do not have permission to move files.',
02773 'cant-move-user-page' => 'You do not have permission to move user pages (apart from subpages).',
02774 'cant-move-to-user-page' => 'You do not have permission to move a page to a user page (except to a user subpage).',
02775 'newtitle' => 'To new title:',
02776 'move-watch' => 'Watch this page',
02777 'movepagebtn' => 'Move page',
02778 'pagemovedsub' => 'Move succeeded',
02779 'movepage-moved' => '<big>\'\'\'"$1" has been moved to "$2"\'\'\'</big>', # The two titles are passed in plain text as $3 and $4 to allow additional goodies in the message.
02780 'movepage-moved-redirect' => 'A redirect has been created.',
02781 'movepage-moved-noredirect' => 'The creation of a redirect has been suppressed.',
02782 'articleexists' => 'A page of that name already exists, or the name you have chosen is not valid.
02783 Please choose another name.',
02784 'cantmove-titleprotected' => 'You cannot move a page to this location, because the new title has been protected from creation',
02785 'talkexists' => "'''The page itself was moved successfully, but the talk page could not be moved because one already exists at the new title.
02786 Please merge them manually.'''",
02787 'movedto' => 'moved to',
02788 'movetalk' => 'Move associated talk page',
02789 'move-subpages' => 'Move subpages (up to $1)',
02790 'move-talk-subpages' => 'Move subpages of talk page (up to $1)',
02791 'movepage-page-exists' => 'The page $1 already exists and cannot be automatically overwritten.',
02792 'movepage-page-moved' => 'The page $1 has been moved to $2.',
02793 'movepage-page-unmoved' => 'The page $1 could not be moved to $2.',
02794 'movepage-max-pages' => 'The maximum of $1 {{PLURAL:$1|page|pages}} has been moved and no more will be moved automatically.',
02795 '1movedto2' => 'moved [[$1]] to [[$2]]',
02796 '1movedto2_redir' => 'moved [[$1]] to [[$2]] over redirect',
02797 'move-redirect-suppressed' => 'redirect suppressed',
02798 'movelogpage' => 'Move log',
02799 'movelogpagetext' => 'Below is a list of all page moves.',
02800 'movesubpage' => '{{PLURAL:$1|Subpage|Subpages}}',
02801 'movesubpagetext' => 'This page has $1 {{PLURAL:$1|subpage|subpages}} shown below.',
02802 'movenosubpage' => 'This page has no subpages.',
02803 'movereason' => 'Reason:',
02804 'revertmove' => 'revert',
02805 'delete_and_move' => 'Delete and move',
02806 'delete_and_move_text' => '== Deletion required ==
02807 The destination page "[[:$1]]" already exists.
02808 Do you want to delete it to make way for the move?',
02809 'delete_and_move_confirm' => 'Yes, delete the page',
02810 'delete_and_move_reason' => 'Deleted to make way for move',
02811 'selfmove' => 'Source and destination titles are the same;
02812 cannot move a page over itself.',
02813 'immobile-source-namespace' => 'Cannot move pages in namespace "$1"',
02814 'immobile-target-namespace' => 'Cannot move pages into namespace "$1"',
02815 'immobile-target-namespace-iw' => 'Interwiki link is not a valid target for page move.',
02816 'immobile-source-page' => 'This page is not movable.',
02817 'immobile-target-page' => 'Cannot move to that destination title.',
02818 'imagenocrossnamespace' => 'Cannot move file to non-file namespace',
02819 'imagetypemismatch' => 'The new file extension does not match its type',
02820 'imageinvalidfilename' => 'The target file name is invalid',
02821 'fix-double-redirects' => 'Update any redirects that point to the original title',
02822 'move-leave-redirect' => 'Leave a redirect behind',
02823
02824 # Export
02825 'export' => 'Export pages',
02826 'exporttext' => 'You can export the text and editing history of a particular page or set of pages wrapped in some XML.
02827 This can be imported into another wiki using MediaWiki via the [[Special:Import|import page]].
02828
02829 To export pages, enter the titles in the text box below, one title per line, and select whether you want the current revision as well as all old revisions, with the page history lines, or the current revision with the info about the last edit.
02830
02831 In the latter case you can also use a link, for example [[{{#Special:Export}}/{{MediaWiki:Mainpage}}]] for the page "[[{{MediaWiki:Mainpage}}]]".',
02832 'exportcuronly' => 'Include only the current revision, not the full history',
02833 'exportnohistory' => "----
02834 '''Note:''' Exporting the full history of pages through this form has been disabled due to performance reasons.",
02835 'export-submit' => 'Export',
02836 'export-addcattext' => 'Add pages from category:',
02837 'export-addcat' => 'Add',
02838 'export-addnstext' => 'Add pages from namespace:',
02839 'export-addns' => 'Add',
02840 'export-download' => 'Save as file',
02841 'export-templates' => 'Include templates',
02842 'export-pagelinks' => 'Include linked pages to a depth of:',
02843
02844 # Namespace 8 related
02845 'allmessages' => 'System messages',
02846 'allmessagesname' => 'Name',
02847 'allmessagesdefault' => 'Default message text',
02848 'allmessagescurrent' => 'Current message text',
02849 'allmessagestext' => 'This is a list of system messages available in the MediaWiki namespace.
02850 Please visit [http://www.mediawiki.org/wiki/Localisation MediaWiki Localisation] and [http://translatewiki.net translatewiki.net] if you wish to contribute to the generic MediaWiki localisation.',
02851 'allmessagesnotsupportedDB' => "This page cannot be used because '''\$wgUseDatabaseMessages''' has been disabled.",
02852 'allmessagesfilter' => 'Message name filter:',
02853 'allmessagesmodified' => 'Show only modified',
02854
02855 # Thumbnails
02856 'thumbnail-more' => 'Enlarge',
02857 'filemissing' => 'File missing',
02858 'thumbnail_error' => 'Error creating thumbnail: $1',
02859 'djvu_page_error' => 'DjVu page out of range',
02860 'djvu_no_xml' => 'Unable to fetch XML for DjVu file',
02861 'thumbnail_invalid_params' => 'Invalid thumbnail parameters',
02862 'thumbnail_dest_directory' => 'Unable to create destination directory',
02863
02864 # Special:Import
02865 'import' => 'Import pages',
02866 'importinterwiki' => 'Transwiki import',
02867 'import-interwiki-text' => "Select a wiki and page title to import.
02868 Revision dates and editors' names will be preserved.
02869 All transwiki import actions are logged at the [[Special:Log/import|import log]].",
02870 'import-interwiki-source' => 'Source wiki/page:',
02871 'import-interwiki-history' => 'Copy all history revisions for this page',
02872 'import-interwiki-templates' => 'Include all templates',
02873 'import-interwiki-submit' => 'Import',
02874 'import-interwiki-namespace' => 'Destination namespace:',
02875 'import-upload-filename' => 'Filename:',
02876 'import-comment' => 'Comment:',
02877 'importtext' => 'Please export the file from the source wiki using the [[Special:Export|export utility]].
02878 Save it to your computer and upload it here.',
02879 'importstart' => 'Importing pages...',
02880 'import-revision-count' => '$1 {{PLURAL:$1|revision|revisions}}',
02881 'importnopages' => 'No pages to import.',
02882 'importfailed' => 'Import failed: <nowiki>$1</nowiki>',
02883 'importunknownsource' => 'Unknown import source type',
02884 'importcantopen' => 'Could not open import file',
02885 'importbadinterwiki' => 'Bad interwiki link',
02886 'importnotext' => 'Empty or no text',
02887 'importsuccess' => 'Import finished!',
02888 'importhistoryconflict' => 'Conflicting history revision exists (may have imported this page before)',
02889 'importnosources' => 'No transwiki import sources have been defined and direct history uploads are disabled.',
02890 'importnofile' => 'No import file was uploaded.',
02891 'importuploaderrorsize' => 'Upload of import file failed.
02892 The file is bigger than the allowed upload size.',
02893 'importuploaderrorpartial' => 'Upload of import file failed.
02894 The file was only partially uploaded.',
02895 'importuploaderrortemp' => 'Upload of import file failed.
02896 A temporary folder is missing.',
02897 'import-parse-failure' => 'XML import parse failure',
02898 'import-noarticle' => 'No page to import!',
02899 'import-nonewrevisions' => 'All revisions were previously imported.',
02900 'xml-error-string' => '$1 at line $2, col $3 (byte $4): $5',
02901 'import-upload' => 'Upload XML data',
02902 'import-token-mismatch' => 'Loss of session data.
02903 Please try again.',
02904 'import-invalid-interwiki' => 'Cannot import from the specified wiki.',
02905
02906 # Import log
02907 'importlogpage' => 'Import log',
02908 'importlogpagetext' => 'Administrative imports of pages with edit history from other wikis.',
02909 'import-logentry-upload' => 'imported [[$1]] by file upload',
02910 'import-logentry-upload-detail' => '$1 {{PLURAL:$1|revision|revisions}}',
02911 'import-logentry-interwiki' => 'transwikied $1',
02912 'import-logentry-interwiki-detail' => '$1 {{PLURAL:$1|revision|revisions}} from $2',
02913
02914 # Keyboard access keys for power users
02915 'accesskey-pt-userpage' => '.', # do not translate or duplicate this message to other languages
02916 'accesskey-pt-anonuserpage' => '.', # do not translate or duplicate this message to other languages
02917 'accesskey-pt-mytalk' => 'n', # do not translate or duplicate this message to other languages
02918 'accesskey-pt-anontalk' => 'n', # do not translate or duplicate this message to other languages
02919 'accesskey-pt-preferences' => '', # do not translate or duplicate this message to other languages
02920 'accesskey-pt-watchlist' => 'l', # do not translate or duplicate this message to other languages
02921 'accesskey-pt-mycontris' => 'y', # do not translate or duplicate this message to other languages
02922 'accesskey-pt-login' => 'o', # do not translate or duplicate this message to other languages
02923 'accesskey-pt-anonlogin' => 'o', # do not translate or duplicate this message to other languages
02924 'accesskey-pt-logout' => '', # do not translate or duplicate this message to other languages
02925 'accesskey-ca-talk' => 't', # do not translate or duplicate this message to other languages
02926 'accesskey-ca-edit' => 'e', # do not translate or duplicate this message to other languages
02927 'accesskey-ca-addsection' => '+', # do not translate or duplicate this message to other languages
02928 'accesskey-ca-viewsource' => 'e', # do not translate or duplicate this message to other languages
02929 'accesskey-ca-history' => 'h', # do not translate or duplicate this message to other languages
02930 'accesskey-ca-protect' => '=', # do not translate or duplicate this message to other languages
02931 'accesskey-ca-delete' => 'd', # do not translate or duplicate this message to other languages
02932 'accesskey-ca-undelete' => 'd', # do not translate or duplicate this message to other languages
02933 'accesskey-ca-move' => 'm', # do not translate or duplicate this message to other languages
02934 'accesskey-ca-watch' => 'w', # do not translate or duplicate this message to other languages
02935 'accesskey-ca-unwatch' => 'w', # do not translate or duplicate this message to other languages
02936 'accesskey-search' => 'f', # do not translate or duplicate this message to other languages
02937 'accesskey-search-go' => '', # do not translate or duplicate this message to other languages
02938 'accesskey-search-fulltext' => '', # do not translate or duplicate this message to other languages
02939 'accesskey-p-logo' => 'z', # do not translate or duplicate this message to other languages
02940 'accesskey-n-mainpage' => '', # do not translate or duplicate this message to other languages
02941 'accesskey-n-portal' => '', # do not translate or duplicate this message to other languages
02942 'accesskey-n-currentevents' => '', # do not translate or duplicate this message to other languages
02943 'accesskey-n-recentchanges' => 'r', # do not translate or duplicate this message to other languages
02944 'accesskey-n-randompage' => 'x', # do not translate or duplicate this message to other languages
02945 'accesskey-n-help' => '', # do not translate or duplicate this message to other languages
02946 'accesskey-t-whatlinkshere' => 'j', # do not translate or duplicate this message to other languages
02947 'accesskey-t-recentchangeslinked' => 'k', # do not translate or duplicate this message to other languages
02948 'accesskey-feed-rss' => '', # do not translate or duplicate this message to other languages
02949 'accesskey-feed-atom' => '', # do not translate or duplicate this message to other languages
02950 'accesskey-t-contributions' => '', # do not translate or duplicate this message to other languages
02951 'accesskey-t-emailuser' => '', # do not translate or duplicate this message to other languages
02952 'accesskey-t-permalink' => '', # do not translate or duplicate this message to other languages
02953 'accesskey-t-print' => 'p', # do not translate or duplicate this message to other languages
02954 'accesskey-t-upload' => 'u', # do not translate or duplicate this message to other languages
02955 'accesskey-t-specialpages' => 'q', # do not translate or duplicate this message to other languages
02956 'accesskey-ca-nstab-main' => 'c', # do not translate or duplicate this message to other languages
02957 'accesskey-ca-nstab-user' => 'c', # do not translate or duplicate this message to other languages
02958 'accesskey-ca-nstab-media' => 'c', # do not translate or duplicate this message to other languages
02959 'accesskey-ca-nstab-special' => '', # do not translate or duplicate this message to other languages
02960 'accesskey-ca-nstab-project' => 'a', # do not translate or duplicate this message to other languages
02961 'accesskey-ca-nstab-image' => 'c', # do not translate or duplicate this message to other languages
02962 'accesskey-ca-nstab-mediawiki' => 'c', # do not translate or duplicate this message to other languages
02963 'accesskey-ca-nstab-template' => 'c', # do not translate or duplicate this message to other languages
02964 'accesskey-ca-nstab-help' => 'c', # do not translate or duplicate this message to other languages
02965 'accesskey-ca-nstab-category' => 'c', # do not translate or duplicate this message to other languages
02966 'accesskey-minoredit' => 'i', # do not translate or duplicate this message to other languages
02967 'accesskey-save' => 's', # do not translate or duplicate this message to other languages
02968 'accesskey-preview' => 'p', # do not translate or duplicate this message to other languages
02969 'accesskey-diff' => 'v', # do not translate or duplicate this message to other languages
02970 'accesskey-compareselectedversions' => 'v', # do not translate or duplicate this message to other languages
02971 'accesskey-visualcomparison' => 'b', # do not translate or duplicate this message to other languages
02972 'accesskey-watch' => 'w', # do not translate or duplicate this message to other languages
02973 'accesskey-upload' => 's', # do not translate or duplicate this message to other languages
02974
02975 # Tooltip help for the actions
02976 'tooltip-pt-userpage' => 'Your user page',
02977 'tooltip-pt-anonuserpage' => 'The user page for the IP address you are editing as',
02978 'tooltip-pt-mytalk' => 'Your talk page',
02979 'tooltip-pt-anontalk' => 'Discussion about edits from this IP address',
02980 'tooltip-pt-preferences' => 'Your preferences',
02981 'tooltip-pt-watchlist' => 'The list of pages you are monitoring for changes',
02982 'tooltip-pt-mycontris' => 'List of your contributions',
02983 'tooltip-pt-login' => 'You are encouraged to log in; however, it is not mandatory',
02984 'tooltip-pt-anonlogin' => 'You are encouraged to log in; however, it is not mandatory',
02985 'tooltip-pt-logout' => 'Log out',
02986 'tooltip-ca-talk' => 'Discussion about the content page',
02987 'tooltip-ca-edit' => 'You can edit this page. Please use the preview button before saving',
02988 'tooltip-ca-addsection' => 'Start a new section',
02989 'tooltip-ca-viewsource' => 'This page is protected.
02990 You can view its source',
02991 'tooltip-ca-history' => 'Past revisions of this page',
02992 'tooltip-ca-protect' => 'Protect this page',
02993 'tooltip-ca-delete' => 'Delete this page',
02994 'tooltip-ca-undelete' => 'Restore the edits done to this page before it was deleted',
02995 'tooltip-ca-move' => 'Move this page',
02996 'tooltip-ca-watch' => 'Add this page to your watchlist',
02997 'tooltip-ca-unwatch' => 'Remove this page from your watchlist',
02998 'tooltip-search' => 'Search {{SITENAME}}',
02999 'tooltip-search-go' => 'Go to a page with this exact name if exists',
03000 'tooltip-search-fulltext' => 'Search the pages for this text',
03001 'tooltip-p-logo' => 'Visit the main page',
03002 'tooltip-n-mainpage' => 'Visit the main page',
03003 'tooltip-n-portal' => 'About the project, what you can do, where to find things',
03004 'tooltip-n-currentevents' => 'Find background information on current events',
03005 'tooltip-n-recentchanges' => 'The list of recent changes in the wiki',
03006 'tooltip-n-randompage' => 'Load a random page',
03007 'tooltip-n-help' => 'The place to find out',
03008 'tooltip-t-whatlinkshere' => 'List of all wiki pages that link here',
03009 'tooltip-t-recentchangeslinked' => 'Recent changes in pages linked from this page',
03010 'tooltip-feed-rss' => 'RSS feed for this page',
03011 'tooltip-feed-atom' => 'Atom feed for this page',
03012 'tooltip-t-contributions' => 'View the list of contributions of this user',
03013 'tooltip-t-emailuser' => 'Send an e-mail to this user',
03014 'tooltip-t-upload' => 'Upload files',
03015 'tooltip-t-specialpages' => 'List of all special pages',
03016 'tooltip-t-print' => 'Printable version of this page',
03017 'tooltip-t-permalink' => 'Permanent link to this revision of the page',
03018 'tooltip-ca-nstab-main' => 'View the content page',
03019 'tooltip-ca-nstab-user' => 'View the user page',
03020 'tooltip-ca-nstab-media' => 'View the media page',
03021 'tooltip-ca-nstab-special' => 'This is a special page, you cannot edit the page itself',
03022 'tooltip-ca-nstab-project' => 'View the project page',
03023 'tooltip-ca-nstab-image' => 'View the file page',
03024 'tooltip-ca-nstab-mediawiki' => 'View the system message',
03025 'tooltip-ca-nstab-template' => 'View the template',
03026 'tooltip-ca-nstab-help' => 'View the help page',
03027 'tooltip-ca-nstab-category' => 'View the category page',
03028 'tooltip-minoredit' => 'Mark this as a minor edit',
03029 'tooltip-save' => 'Save your changes',
03030 'tooltip-preview' => 'Preview your changes, please use this before saving!',
03031 'tooltip-diff' => 'Show which changes you made to the text',
03032 'tooltip-compareselectedversions' => 'See the differences between the two selected revisions of this page',
03033 'tooltip-watch' => 'Add this page to your watchlist',
03034 'tooltip-recreate' => 'Recreate the page even though it has been deleted',
03035 'tooltip-upload' => 'Start upload',
03036 'tooltip-rollback' => '"Rollback" reverts edit(s) to this page of the last contributor in one click',
03037 'tooltip-undo' => '"Undo" reverts this edit and opens the edit form in preview mode. It allows adding a reason in the summary.',
03038
03039 # Stylesheets
03040 'common.css' => '/* CSS placed here will be applied to all skins */', # only translate this message to other languages if you have to change it
03041 'standard.css' => '/* CSS placed here will affect users of the Standard skin */', # only translate this message to other languages if you have to change it
03042 'nostalgia.css' => '/* CSS placed here will affect users of the Nostalgia skin */', # only translate this message to other languages if you have to change it
03043 'cologneblue.css' => '/* CSS placed here will affect users of the Cologne Blue skin */', # only translate this message to other languages if you have to change it
03044 'monobook.css' => '/* CSS placed here will affect users of the Monobook skin */', # only translate this message to other languages if you have to change it
03045 'myskin.css' => '/* CSS placed here will affect users of the Myskin skin */', # only translate this message to other languages if you have to change it
03046 'chick.css' => '/* CSS placed here will affect users of the Chick skin */', # only translate this message to other languages if you have to change it
03047 'simple.css' => '/* CSS placed here will affect users of the Simple skin */', # only translate this message to other languages if you have to change it
03048 'modern.css' => '/* CSS placed here will affect users of the Modern skin */', # only translate this message to other languages if you have to change it
03049 'print.css' => '/* CSS placed here will affect the print output */', # only translate this message to other languages if you have to change it
03050 'handheld.css' => '/* CSS placed here will affect handheld devices based on the skin configured in $wgHandheldStyle */', # only translate this message to other languages if you have to change it
03051
03052 # Scripts
03053 'common.js' => '/* Any JavaScript here will be loaded for all users on every page load. */', # only translate this message to other languages if you have to change it
03054 'standard.js' => '/* Any JavaScript here will be loaded for users using the Standard skin */', # only translate this message to other languages if you have to change it
03055 'nostalgia.js' => '/* Any JavaScript here will be loaded for users using the Nostalgia skin */', # only translate this message to other languages if you have to change it
03056 'cologneblue.js' => '/* Any JavaScript here will be loaded for users using the Cologne Blue skin */', # only translate this message to other languages if you have to change it
03057 'monobook.js' => '/* Any JavaScript here will be loaded for users using the MonoBook skin */', # only translate this message to other languages if you have to change it
03058 'myskin.js' => '/* Any JavaScript here will be loaded for users using the Myskin skin */', # only translate this message to other languages if you have to change it
03059 'chick.js' => '/* Any JavaScript here will be loaded for users using the Chick skin */', # only translate this message to other languages if you have to change it
03060 'simple.js' => '/* Any JavaScript here will be loaded for users using the Simple skin */', # only translate this message to other languages if you have to change it
03061 'modern.js' => '/* Any JavaScript here will be loaded for users using the Modern skin */', # only translate this message to other languages if you have to change it
03062
03063 # Metadata
03064 'nodublincore' => 'Dublin Core RDF metadata disabled for this server.',
03065 'nocreativecommons' => 'Creative Commons RDF metadata disabled for this server.',
03066 'notacceptable' => 'The wiki server cannot provide data in a format your client can read.',
03067
03068 # Attribution
03069 'anonymous' => 'Anonymous {{PLURAL:$1|user|users}} of {{SITENAME}}',
03070 'siteuser' => '{{SITENAME}} user $1',
03071 'lastmodifiedatby' => 'This page was last modified $2, $1 by $3.', # $1 date, $2 time, $3 user
03072 'othercontribs' => 'Based on work by $1.',
03073 'others' => 'others',
03074 'siteusers' => '{{SITENAME}} {{PLURAL:$2|user|users}} $1',
03075 'creditspage' => 'Page credits',
03076 'nocredits' => 'There is no credits info available for this page.',
03077
03078 # Spam protection
03079 'spamprotectiontitle' => 'Spam protection filter',
03080 'spamprotectiontext' => 'The page you wanted to save was blocked by the spam filter.
03081 This is probably caused by a link to a blacklisted external site.',
03082 'spamprotectionmatch' => 'The following text is what triggered our spam filter: $1',
03083 'spambot_username' => 'MediaWiki spam cleanup',
03084 'spam_reverting' => 'Reverting to last revision not containing links to $1',
03085 'spam_blanking' => 'All revisions contained links to $1, blanking',
03086
03087 # Info page
03088 'infosubtitle' => 'Information for page',
03089 'numedits' => 'Number of edits (page): $1',
03090 'numtalkedits' => 'Number of edits (discussion page): $1',
03091 'numwatchers' => 'Number of watchers: $1',
03092 'numauthors' => 'Number of distinct authors (page): $1',
03093 'numtalkauthors' => 'Number of distinct authors (discussion page): $1',
03094
03095 # Skin names
03096 'skinname-standard' => 'Classic', # only translate this message to other languages if you have to change it
03097 'skinname-nostalgia' => 'Nostalgia', # only translate this message to other languages if you have to change it
03098 'skinname-cologneblue' => 'Cologne Blue', # only translate this message to other languages if you have to change it
03099 'skinname-monobook' => 'MonoBook', # only translate this message to other languages if you have to change it
03100 'skinname-myskin' => 'MySkin', # only translate this message to other languages if you have to change it
03101 'skinname-chick' => 'Chick', # only translate this message to other languages if you have to change it
03102 'skinname-simple' => 'Simple', # only translate this message to other languages if you have to change it
03103 'skinname-modern' => 'Modern', # only translate this message to other languages if you have to change it
03104
03105 # Math options
03106 'mw_math_png' => 'Always render PNG',
03107 'mw_math_simple' => 'HTML if very simple or else PNG',
03108 'mw_math_html' => 'HTML if possible or else PNG',
03109 'mw_math_source' => 'Leave it as TeX (for text browsers)',
03110 'mw_math_modern' => 'Recommended for modern browsers',
03111 'mw_math_mathml' => 'MathML if possible (experimental)',
03112
03113 # Patrolling
03114 'markaspatrolleddiff' => 'Mark as patrolled',
03115 'markaspatrolledlink' => '[$1]', # do not translate or duplicate this message to other languages
03116 'markaspatrolledtext' => 'Mark this page as patrolled',
03117 'markedaspatrolled' => 'Marked as patrolled',
03118 'markedaspatrolledtext' => 'The selected revision has been marked as patrolled.',
03119 'rcpatroldisabled' => 'Recent changes patrol disabled',
03120 'rcpatroldisabledtext' => 'The recent changes patrol feature is currently disabled.',
03121 'markedaspatrollederror' => 'Cannot mark as patrolled',
03122 'markedaspatrollederrortext' => 'You need to specify a revision to mark as patrolled.',
03123 'markedaspatrollederror-noautopatrol' => 'You are not allowed to mark your own changes as patrolled.',
03124
03125 # Patrol log
03126 'patrol-log-page' => 'Patrol log',
03127 'patrol-log-header' => 'This is a log of patrolled revisions.',
03128 'patrol-log-line' => 'marked $1 of $2 patrolled $3',
03129 'patrol-log-auto' => '(automatic)',
03130 'patrol-log-diff' => 'revision $1',
03131 'log-show-hide-patrol' => '$1 patrol log',
03132
03133 # Image deletion
03134 'deletedrevision' => 'Deleted old revision $1',
03135 'filedeleteerror-short' => 'Error deleting file: $1',
03136 'filedeleteerror-long' => 'Errors were encountered while deleting the file:
03137
03138 $1',
03139 'filedelete-missing' => 'The file "$1" cannot be deleted, because it does not exist.',
03140 'filedelete-old-unregistered' => 'The specified file revision "$1" is not in the database.',
03141 'filedelete-current-unregistered' => 'The specified file "$1" is not in the database.',
03142 'filedelete-archive-read-only' => 'The archive directory "$1" is not writable by the webserver.',
03143
03144 # Browsing diffs
03145 'previousdiff' => '← Older edit',
03146 'nextdiff' => 'Newer edit →',
03147
03148 # Visual comparison
03149 'visual-comparison' => 'Visual comparison',
03150
03151 # Media information
03152 'mediawarning' => "'''Warning''': This file may contain malicious code, by executing it your system may be compromised.<hr />",
03153 'imagemaxsize' => 'Limit images on file description pages to:',
03154 'thumbsize' => 'Thumbnail size:',
03155 'widthheight' => '$1×$2', # only translate this message to other languages if you have to change it
03156 'widthheightpage' => '$1×$2, $3 {{PLURAL:$3|page|pages}}',
03157 'file-info' => '(file size: $1, MIME type: $2)',
03158 'file-info-size' => '($1 × $2 pixels, file size: $3, MIME type: $4)',
03159 'file-nohires' => '<small>No higher resolution available.</small>',
03160 'svg-long-desc' => '(SVG file, nominally $1 × $2 pixels, file size: $3)',
03161 'show-big-image' => 'Full resolution',
03162 'show-big-image-thumb' => '<small>Size of this preview: $1 × $2 pixels</small>',
03163
03164 # Special:NewFiles
03165 'newimages' => 'Gallery of new files',
03166 'imagelisttext' => "Below is a list of '''$1''' {{PLURAL:$1|file|files}} sorted $2.",
03167 'newimages-summary' => 'This special page shows the last uploaded files.',
03168 'newimages-legend' => 'Filter',
03169 'newimages-label' => 'Filename (or a part of it):',
03170 'showhidebots' => '($1 bots)',
03171 'noimages' => 'Nothing to see.',
03172 'ilsubmit' => 'Search',
03173 'bydate' => 'by date',
03174 'sp-newimages-showfrom' => 'Show new files starting from $2, $1',
03175
03176 # Video information, used by Language::formatTimePeriod() to format lengths in the above messages
03177 'video-dims' => '$1, $2×$3', # only translate this message to other languages if you have to change it
03178 'seconds-abbrev' => 's', # only translate this message to other languages if you have to change it
03179 'minutes-abbrev' => 'm', # only translate this message to other languages if you have to change it
03180 'hours-abbrev' => 'h', # only translate this message to other languages if you have to change it
03181
03182 # Bad image list
03183 'bad_image_list' => 'The format is as follows:
03184
03185 Only list items (lines starting with *) are considered.
03186 The first link on a line must be a link to a bad file.
03187 Any subsequent links on the same line are considered to be exceptions, i.e. pages where the file may occur inline.',
03188
03189
03190
03191
03192
03193
03194
03195 'variantname-zh-hans' => 'hans', # only translate this message to other languages if you have to change it
03196 'variantname-zh-hant' => 'hant', # only translate this message to other languages if you have to change it
03197 'variantname-zh-cn' => 'cn', # only translate this message to other languages if you have to change it
03198 'variantname-zh-tw' => 'tw', # only translate this message to other languages if you have to change it
03199 'variantname-zh-hk' => 'hk', # only translate this message to other languages if you have to change it
03200 'variantname-zh-mo' => 'mo', # only translate this message to other languages if you have to change it
03201 'variantname-zh-sg' => 'sg', # only translate this message to other languages if you have to change it
03202 'variantname-zh-my' => 'my', # only translate this message to other languages if you have to change it
03203 'variantname-zh' => 'zh', # only translate this message to other languages if you have to change it
03204
03205 # Variants for Gan language
03206 'variantname-gan-hans' => 'hans', # only translate this message to other languages if you have to change it
03207 'variantname-gan-hant' => 'hant', # only translate this message to other languages if you have to change it
03208 'variantname-gan' => 'gan', # only translate this message to other languages if you have to change it
03209
03210 # Variants for Serbian language
03211 'variantname-sr-ec' => 'sr-ec', # only translate this message to other languages if you have to change it
03212 'variantname-sr-el' => 'sr-el', # only translate this message to other languages if you have to change it
03213 'variantname-sr' => 'sr', # only translate this message to other languages if you have to change it
03214
03215 # Variants for Kazakh language
03216 'variantname-kk-kz' => 'kk-kz', # only translate this message to other languages if you have to change it
03217 'variantname-kk-tr' => 'kk-tr', # only translate this message to other languages if you have to change it
03218 'variantname-kk-cn' => 'kk-cn', # only translate this message to other languages if you have to change it
03219 'variantname-kk-cyrl' => 'kk-cyrl', # only translate this message to other languages if you have to change it
03220 'variantname-kk-latn' => 'kk-latn', # only translate this message to other languages if you have to change it
03221 'variantname-kk-arab' => 'kk-arab', # only translate this message to other languages if you have to change it
03222 'variantname-kk' => 'kk', # only translate this message to other languages if you have to change it
03223
03224 # Variants for Kurdish language
03225 'variantname-ku-arab' => 'ku-Arab', # only translate this message to other languages if you have to change it
03226 'variantname-ku-latn' => 'ku-Latn', # only translate this message to other languages if you have to change it
03227 'variantname-ku' => 'ku', # only translate this message to other languages if you have to change it
03228
03229 # Variants for Tajiki language
03230 'variantname-tg-cyrl' => 'tg-Cyrl', # only translate this message to other languages if you have to change it
03231 'variantname-tg-latn' => 'tg-Latn', # only translate this message to other languages if you have to change it
03232 'variantname-tg' => 'tg', # only translate this message to other languages if you have to change it
03233
03234 # Metadata
03235 'metadata' => 'Metadata',
03236 'metadata-help' => 'This file contains additional information, probably added from the digital camera or scanner used to create or digitize it.
03237 If the file has been modified from its original state, some details may not fully reflect the modified file.',
03238 'metadata-expand' => 'Show extended details',
03239 'metadata-collapse' => 'Hide extended details',
03240 'metadata-fields' => 'EXIF metadata fields listed in this message will be included on image page display when the metadata table is collapsed.
03241 Others will be hidden by default.
03242 * make
03243 * model
03244 * datetimeoriginal
03245 * exposuretime
03246 * fnumber
03247 * isospeedratings
03248 * focallength', # Do not translate list items
03249
03250 # EXIF tags
03251 'exif-imagewidth' => 'Width',
03252 'exif-imagelength' => 'Height',
03253 'exif-bitspersample' => 'Bits per component',
03254 'exif-compression' => 'Compression scheme',
03255 'exif-photometricinterpretation' => 'Pixel composition',
03256 'exif-orientation' => 'Orientation',
03257 'exif-samplesperpixel' => 'Number of components',
03258 'exif-planarconfiguration' => 'Data arrangement',
03259 'exif-ycbcrsubsampling' => 'Subsampling ratio of Y to C',
03260 'exif-ycbcrpositioning' => 'Y and C positioning',
03261 'exif-xresolution' => 'Horizontal resolution',
03262 'exif-yresolution' => 'Vertical resolution',
03263 'exif-resolutionunit' => 'Unit of X and Y resolution',
03264 'exif-stripoffsets' => 'Image data location',
03265 'exif-rowsperstrip' => 'Number of rows per strip',
03266 'exif-stripbytecounts' => 'Bytes per compressed strip',
03267 'exif-jpeginterchangeformat' => 'Offset to JPEG SOI',
03268 'exif-jpeginterchangeformatlength' => 'Bytes of JPEG data',
03269 'exif-transferfunction' => 'Transfer function',
03270 'exif-whitepoint' => 'White point chromaticity',
03271 'exif-primarychromaticities' => 'Chromaticities of primarities',
03272 'exif-ycbcrcoefficients' => 'Color space transformation matrix coefficients',
03273 'exif-referenceblackwhite' => 'Pair of black and white reference values',
03274 'exif-datetime' => 'File change date and time',
03275 'exif-imagedescription' => 'Image title',
03276 'exif-make' => 'Camera manufacturer',
03277 'exif-model' => 'Camera model',
03278 'exif-software' => 'Software used',
03279 'exif-artist' => 'Author',
03280 'exif-copyright' => 'Copyright holder',
03281 'exif-exifversion' => 'Exif version',
03282 'exif-flashpixversion' => 'Supported Flashpix version',
03283 'exif-colorspace' => 'Color space',
03284 'exif-componentsconfiguration' => 'Meaning of each component',
03285 'exif-compressedbitsperpixel' => 'Image compression mode',
03286 'exif-pixelydimension' => 'Valid image width',
03287 'exif-pixelxdimension' => 'Valid image height',
03288 'exif-makernote' => 'Manufacturer notes',
03289 'exif-usercomment' => 'User comments',
03290 'exif-relatedsoundfile' => 'Related audio file',
03291 'exif-datetimeoriginal' => 'Date and time of data generation',
03292 'exif-datetimedigitized' => 'Date and time of digitizing',
03293 'exif-subsectime' => 'DateTime subseconds',
03294 'exif-subsectimeoriginal' => 'DateTimeOriginal subseconds',
03295 'exif-subsectimedigitized' => 'DateTimeDigitized subseconds',
03296 'exif-exposuretime' => 'Exposure time',
03297 'exif-exposuretime-format' => '$1 sec ($2)',
03298 'exif-fnumber' => 'F Number',
03299 'exif-fnumber-format' => 'f/$1', # only translate this message to other languages if you have to change it
03300 'exif-exposureprogram' => 'Exposure Program',
03301 'exif-spectralsensitivity' => 'Spectral sensitivity',
03302 'exif-isospeedratings' => 'ISO speed rating',
03303 'exif-oecf' => 'Optoelectronic conversion factor',
03304 'exif-shutterspeedvalue' => 'Shutter speed',
03305 'exif-aperturevalue' => 'Aperture',
03306 'exif-brightnessvalue' => 'Brightness',
03307 'exif-exposurebiasvalue' => 'Exposure bias',
03308 'exif-maxaperturevalue' => 'Maximum land aperture',
03309 'exif-subjectdistance' => 'Subject distance',
03310 'exif-meteringmode' => 'Metering mode',
03311 'exif-lightsource' => 'Light source',
03312 'exif-flash' => 'Flash',
03313 'exif-focallength' => 'Lens focal length',
03314 'exif-focallength-format' => '$1 mm', # only translate this message to other languages if you have to change it
03315 'exif-subjectarea' => 'Subject area',
03316 'exif-flashenergy' => 'Flash energy',
03317 'exif-spatialfrequencyresponse' => 'Spatial frequency response',
03318 'exif-focalplanexresolution' => 'Focal plane X resolution',
03319 'exif-focalplaneyresolution' => 'Focal plane Y resolution',
03320 'exif-focalplaneresolutionunit' => 'Focal plane resolution unit',
03321 'exif-subjectlocation' => 'Subject location',
03322 'exif-exposureindex' => 'Exposure index',
03323 'exif-sensingmethod' => 'Sensing method',
03324 'exif-filesource' => 'File source',
03325 'exif-scenetype' => 'Scene type',
03326 'exif-cfapattern' => 'CFA pattern',
03327 'exif-customrendered' => 'Custom image processing',
03328 'exif-exposuremode' => 'Exposure mode',
03329 'exif-whitebalance' => 'White balance',
03330 'exif-digitalzoomratio' => 'Digital zoom ratio',
03331 'exif-focallengthin35mmfilm' => 'Focal length in 35 mm film',
03332 'exif-scenecapturetype' => 'Scene capture type',
03333 'exif-gaincontrol' => 'Scene control',
03334 'exif-contrast' => 'Contrast',
03335 'exif-saturation' => 'Saturation',
03336 'exif-sharpness' => 'Sharpness',
03337 'exif-devicesettingdescription' => 'Device settings description',
03338 'exif-subjectdistancerange' => 'Subject distance range',
03339 'exif-imageuniqueid' => 'Unique image ID',
03340 'exif-gpsversionid' => 'GPS tag version',
03341 'exif-gpslatituderef' => 'North or south latitude',
03342 'exif-gpslatitude' => 'Latitude',
03343 'exif-gpslongituderef' => 'East or west longitude',
03344 'exif-gpslongitude' => 'Longitude',
03345 'exif-gpsaltituderef' => 'Altitude reference',
03346 'exif-gpsaltitude' => 'Altitude',
03347 'exif-gpstimestamp' => 'GPS time (atomic clock)',
03348 'exif-gpssatellites' => 'Satellites used for measurement',
03349 'exif-gpsstatus' => 'Receiver status',
03350 'exif-gpsmeasuremode' => 'Measurement mode',
03351 'exif-gpsdop' => 'Measurement precision',
03352 'exif-gpsspeedref' => 'Speed unit',
03353 'exif-gpsspeed' => 'Speed of GPS receiver',
03354 'exif-gpstrackref' => 'Reference for direction of movement',
03355 'exif-gpstrack' => 'Direction of movement',
03356 'exif-gpsimgdirectionref' => 'Reference for direction of image',
03357 'exif-gpsimgdirection' => 'Direction of image',
03358 'exif-gpsmapdatum' => 'Geodetic survey data used',
03359 'exif-gpsdestlatituderef' => 'Reference for latitude of destination',
03360 'exif-gpsdestlatitude' => 'Latitude destination',
03361 'exif-gpsdestlongituderef' => 'Reference for longitude of destination',
03362 'exif-gpsdestlongitude' => 'Longitude of destination',
03363 'exif-gpsdestbearingref' => 'Reference for bearing of destination',
03364 'exif-gpsdestbearing' => 'Bearing of destination',
03365 'exif-gpsdestdistanceref' => 'Reference for distance to destination',
03366 'exif-gpsdestdistance' => 'Distance to destination',
03367 'exif-gpsprocessingmethod' => 'Name of GPS processing method',
03368 'exif-gpsareainformation' => 'Name of GPS area',
03369 'exif-gpsdatestamp' => 'GPS date',
03370 'exif-gpsdifferential' => 'GPS differential correction',
03371
03372 # Make & model, can be wikified in order to link to the camera and model name
03373 'exif-make-value' => '$1', # do not translate or duplicate this message to other languages
03374 'exif-model-value' => '$1', # do not translate or duplicate this message to other languages
03375 'exif-software-value' => '$1', # do not translate or duplicate this message to other languages
03376
03377 # EXIF attributes
03378 'exif-compression-1' => 'Uncompressed',
03379 'exif-compression-6' => 'JPEG', # only translate this message to other languages if you have to change it
03380
03381 'exif-photometricinterpretation-2' => 'RGB', # only translate this message to other languages if you have to change it
03382 'exif-photometricinterpretation-6' => 'YCbCr', # only translate this message to other languages if you have to change it
03383
03384 'exif-unknowndate' => 'Unknown date',
03385
03386 'exif-orientation-1' => 'Normal', # 0th row: top; 0th column: left
03387 'exif-orientation-2' => 'Flipped horizontally', # 0th row: top; 0th column: right
03388 'exif-orientation-3' => 'Rotated 180°', # 0th row: bottom; 0th column: right
03389 'exif-orientation-4' => 'Flipped vertically', # 0th row: bottom; 0th column: left
03390 'exif-orientation-5' => 'Rotated 90° CCW and flipped vertically', # 0th row: left; 0th column: top
03391 'exif-orientation-6' => 'Rotated 90° CW', # 0th row: right; 0th column: top
03392 'exif-orientation-7' => 'Rotated 90° CW and flipped vertically', # 0th row: right; 0th column: bottom
03393 'exif-orientation-8' => 'Rotated 90° CCW', # 0th row: left; 0th column: bottom
03394
03395 'exif-planarconfiguration-1' => 'chunky format',
03396 'exif-planarconfiguration-2' => 'planar format',
03397
03398 'exif-xyresolution-i' => '$1 dpi', # only translate this message to other languages if you have to change it
03399 'exif-xyresolution-c' => '$1 dpc', # only translate this message to other languages if you have to change it
03400
03401 'exif-colorspace-1' => 'sRGB', # only translate this message to other languages if you have to change it
03402 'exif-colorspace-ffff.h' => 'FFFF.H', # only translate this message to other languages if you have to change it
03403
03404 'exif-componentsconfiguration-0' => 'does not exist',
03405 'exif-componentsconfiguration-1' => 'Y', # only translate this message to other languages if you have to change it
03406 'exif-componentsconfiguration-2' => 'Cb', # only translate this message to other languages if you have to change it
03407 'exif-componentsconfiguration-3' => 'Cr', # only translate this message to other languages if you have to change it
03408 'exif-componentsconfiguration-4' => 'R', # only translate this message to other languages if you have to change it
03409 'exif-componentsconfiguration-5' => 'G', # only translate this message to other languages if you have to change it
03410 'exif-componentsconfiguration-6' => 'B', # only translate this message to other languages if you have to change it
03411
03412 'exif-exposureprogram-0' => 'Not defined',
03413 'exif-exposureprogram-1' => 'Manual',
03414 'exif-exposureprogram-2' => 'Normal program',
03415 'exif-exposureprogram-3' => 'Aperture priority',
03416 'exif-exposureprogram-4' => 'Shutter priority',
03417 'exif-exposureprogram-5' => 'Creative program (biased toward depth of field)',
03418 'exif-exposureprogram-6' => 'Action program (biased toward fast shutter speed)',
03419 'exif-exposureprogram-7' => 'Portrait mode (for closeup photos with the background out of focus)',
03420 'exif-exposureprogram-8' => 'Landscape mode (for landscape photos with the background in focus)',
03421
03422 'exif-subjectdistance-value' => '$1 meters',
03423
03424 'exif-meteringmode-0' => 'Unknown',
03425 'exif-meteringmode-1' => 'Average',
03426 'exif-meteringmode-2' => 'CenterWeightedAverage',
03427 'exif-meteringmode-3' => 'Spot',
03428 'exif-meteringmode-4' => 'MultiSpot',
03429 'exif-meteringmode-5' => 'Pattern',
03430 'exif-meteringmode-6' => 'Partial',
03431 'exif-meteringmode-255' => 'Other',
03432
03433 'exif-lightsource-0' => 'Unknown',
03434 'exif-lightsource-1' => 'Daylight',
03435 'exif-lightsource-2' => 'Fluorescent',
03436 'exif-lightsource-3' => 'Tungsten (incandescent light)',
03437 'exif-lightsource-4' => 'Flash',
03438 'exif-lightsource-9' => 'Fine weather',
03439 'exif-lightsource-10' => 'Cloudy weather',
03440 'exif-lightsource-11' => 'Shade',
03441 'exif-lightsource-12' => 'Daylight fluorescent (D 5700 – 7100K)',
03442 'exif-lightsource-13' => 'Day white fluorescent (N 4600 – 5400K)',
03443 'exif-lightsource-14' => 'Cool white fluorescent (W 3900 – 4500K)',
03444 'exif-lightsource-15' => 'White fluorescent (WW 3200 – 3700K)',
03445 'exif-lightsource-17' => 'Standard light A',
03446 'exif-lightsource-18' => 'Standard light B',
03447 'exif-lightsource-19' => 'Standard light C',
03448 'exif-lightsource-20' => 'D55', # only translate this message to other languages if you have to change it
03449 'exif-lightsource-21' => 'D65', # only translate this message to other languages if you have to change it
03450 'exif-lightsource-22' => 'D75', # only translate this message to other languages if you have to change it
03451 'exif-lightsource-23' => 'D50', # only translate this message to other languages if you have to change it
03452 'exif-lightsource-24' => 'ISO studio tungsten',
03453 'exif-lightsource-255' => 'Other light source',
03454
03455 # Flash modes
03456 'exif-flash-fired-0' => 'Flash did not fire',
03457 'exif-flash-fired-1' => 'Flash fired',
03458 'exif-flash-return-0' => 'no strobe return detection function',
03459 'exif-flash-return-2' => 'strobe return light not detected',
03460 'exif-flash-return-3' => 'strobe return light detected',
03461 'exif-flash-mode-1' => 'compulsory flash firing',
03462 'exif-flash-mode-2' => 'compulsory flash suppression',
03463 'exif-flash-mode-3' => 'auto mode',
03464 'exif-flash-function-1' => 'No flash function',
03465 'exif-flash-redeye-1' => 'red-eye reduction mode',
03466
03467 'exif-focalplaneresolutionunit-2' => 'inches',
03468
03469 'exif-sensingmethod-1' => 'Undefined',
03470 'exif-sensingmethod-2' => 'One-chip color area sensor',
03471 'exif-sensingmethod-3' => 'Two-chip color area sensor',
03472 'exif-sensingmethod-4' => 'Three-chip color area sensor',
03473 'exif-sensingmethod-5' => 'Color sequential area sensor',
03474 'exif-sensingmethod-7' => 'Trilinear sensor',
03475 'exif-sensingmethod-8' => 'Color sequential linear sensor',
03476
03477 'exif-filesource-3' => 'DSC', # only translate this message to other languages if you have to change it
03478
03479 'exif-scenetype-1' => 'A directly photographed image',
03480
03481 'exif-customrendered-0' => 'Normal process',
03482 'exif-customrendered-1' => 'Custom process',
03483
03484 'exif-exposuremode-0' => 'Auto exposure',
03485 'exif-exposuremode-1' => 'Manual exposure',
03486 'exif-exposuremode-2' => 'Auto bracket',
03487
03488 'exif-whitebalance-0' => 'Auto white balance',
03489 'exif-whitebalance-1' => 'Manual white balance',
03490
03491 'exif-scenecapturetype-0' => 'Standard',
03492 'exif-scenecapturetype-1' => 'Landscape',
03493 'exif-scenecapturetype-2' => 'Portrait',
03494 'exif-scenecapturetype-3' => 'Night scene',
03495
03496 'exif-gaincontrol-0' => 'None',
03497 'exif-gaincontrol-1' => 'Low gain up',
03498 'exif-gaincontrol-2' => 'High gain up',
03499 'exif-gaincontrol-3' => 'Low gain down',
03500 'exif-gaincontrol-4' => 'High gain down',
03501
03502 'exif-contrast-0' => 'Normal',
03503 'exif-contrast-1' => 'Soft',
03504 'exif-contrast-2' => 'Hard',
03505
03506 'exif-saturation-0' => 'Normal',
03507 'exif-saturation-1' => 'Low saturation',
03508 'exif-saturation-2' => 'High saturation',
03509
03510 'exif-sharpness-0' => 'Normal',
03511 'exif-sharpness-1' => 'Soft',
03512 'exif-sharpness-2' => 'Hard',
03513
03514 'exif-subjectdistancerange-0' => 'Unknown',
03515 'exif-subjectdistancerange-1' => 'Macro',
03516 'exif-subjectdistancerange-2' => 'Close view',
03517 'exif-subjectdistancerange-3' => 'Distant view',
03518
03519 # Pseudotags used for GPSLatitudeRef and GPSDestLatitudeRef
03520 'exif-gpslatitude-n' => 'North latitude',
03521 'exif-gpslatitude-s' => 'South latitude',
03522
03523 # Pseudotags used for GPSLongitudeRef and GPSDestLongitudeRef
03524 'exif-gpslongitude-e' => 'East longitude',
03525 'exif-gpslongitude-w' => 'West longitude',
03526
03527 'exif-gpsstatus-a' => 'Measurement in progress',
03528 'exif-gpsstatus-v' => 'Measurement interoperability',
03529
03530 'exif-gpsmeasuremode-2' => '2-dimensional measurement',
03531 'exif-gpsmeasuremode-3' => '3-dimensional measurement',
03532
03533 # Pseudotags used for GPSSpeedRef and GPSDestDistanceRef
03534 'exif-gpsspeed-k' => 'Kilometers per hour',
03535 'exif-gpsspeed-m' => 'Miles per hour',
03536 'exif-gpsspeed-n' => 'Knots',
03537
03538 # Pseudotags used for GPSTrackRef, GPSImgDirectionRef and GPSDestBearingRef
03539 'exif-gpsdirection-t' => 'True direction',
03540 'exif-gpsdirection-m' => 'Magnetic direction',
03541
03542 # External editor support
03543 'edit-externally' => 'Edit this file using an external application',
03544 'edit-externally-help' => '(See the [http://www.mediawiki.org/wiki/Manual:External_editors setup instructions] for more information)',
03545
03546 # 'all' in various places, this might be different for inflected languages
03547 'recentchangesall' => 'all',
03548 'imagelistall' => 'all',
03549 'watchlistall2' => 'all',
03550 'namespacesall' => 'all',
03551 'monthsall' => 'all',
03552
03553 # E-mail address confirmation
03554 'confirmemail' => 'Confirm e-mail address',
03555 'confirmemail_noemail' => 'You do not have a valid e-mail address set in your [[Special:Preferences|user preferences]].',
03556 'confirmemail_text' => '{{SITENAME}} requires that you validate your e-mail address before using e-mail features.
03557 Activate the button below to send a confirmation mail to your address.
03558 The mail will include a link containing a code;
03559 load the link in your browser to confirm that your e-mail address is valid.',
03560 'confirmemail_pending' => 'A confirmation code has already been e-mailed to you;
03561 if you recently created your account, you may wish to wait a few minutes for it to arrive before trying to request a new code.',
03562 'confirmemail_send' => 'Mail a confirmation code',
03563 'confirmemail_sent' => 'Confirmation e-mail sent.',
03564 'confirmemail_oncreate' => 'A confirmation code was sent to your e-mail address.
03565 This code is not required to log in, but you will need to provide it before enabling any e-mail-based features in the wiki.',
03566 'confirmemail_sendfailed' => '{{SITENAME}} could not send your confirmation mail.
03567 Please check your e-mail address for invalid characters.
03568
03569 Mailer returned: $1',
03570 'confirmemail_invalid' => 'Invalid confirmation code.
03571 The code may have expired.',
03572 'confirmemail_needlogin' => 'You need to $1 to confirm your e-mail address.',
03573 'confirmemail_success' => 'Your e-mail address has been confirmed.
03574 You may now [[Special:UserLogin|log in]] and enjoy the wiki.',
03575 'confirmemail_loggedin' => 'Your e-mail address has now been confirmed.',
03576 'confirmemail_error' => 'Something went wrong saving your confirmation.',
03577 'confirmemail_subject' => '{{SITENAME}} e-mail address confirmation',
03578 'confirmemail_body' => 'Someone, probably you, from IP address $1,
03579 has registered an account "$2" with this e-mail address on {{SITENAME}}.
03580
03581 To confirm that this account really does belong to you and activate
03582 e-mail features on {{SITENAME}}, open this link in your browser:
03583
03584 $3
03585
03586 If you did *not* register the account, follow this link
03587 to cancel the e-mail address confirmation:
03588
03589 $5
03590
03591 This confirmation code will expire at $4.',
03592 'confirmemail_invalidated' => 'E-mail address confirmation canceled',
03593 'invalidateemail' => 'Cancel e-mail confirmation',
03594
03595 # Scary transclusion
03596 'scarytranscludedisabled' => '[Interwiki transcluding is disabled]',
03597 'scarytranscludefailed' => '[Template fetch failed for $1]',
03598 'scarytranscludetoolong' => '[URL is too long]',
03599
03600 # Trackbacks
03601 'trackbackbox' => 'Trackbacks for this page:<br />
03602 $1',
03603 'trackback' => '; $4 $5: [$2 $1]', # only translate this message to other languages if you have to change it
03604 'trackbackexcerpt' => '; $4 $5: [$2 $1]: <nowiki>$3</nowiki>', # only translate this message to other languages if you have to change it
03605 'trackbackremove' => '([$1 Delete])',
03606 'trackbacklink' => 'Trackback',
03607 'trackbackdeleteok' => 'The trackback was successfully deleted.',
03608
03609 # Delete conflict
03610 'deletedwhileediting' => "'''Warning''': This page was deleted after you started editing!",
03611 'confirmrecreate' => "User [[User:$1|$1]] ([[User talk:$1|talk]]) deleted this page after you started editing with reason:
03612 : ''$2''
03613 Please confirm that you really want to recreate this page.",
03614 'recreate' => 'Recreate',
03615
03616 'unit-pixel' => 'px', # only translate this message to other languages if you have to change it
03617
03618 # action=purge
03619 'confirm_purge_button' => 'OK',
03620 'confirm-purge-top' => 'Clear the cache of this page?',
03621 'confirm-purge-bottom' => 'Purging a page clears the cache and forces the most current revision to appear.',
03622
03623 # Separators for various lists, etc.
03624 'catseparator' => '|', # only translate this message to other languages if you have to change it
03625 'semicolon-separator' => '; ', # only translate this message to other languages if you have to change it
03626 'comma-separator' => ', ', # only translate this message to other languages if you have to change it
03627 'colon-separator' => ': ', # only translate this message to other languages if you have to change it
03628 'autocomment-prefix' => '- ', # only translate this message to other languages if you have to change it
03629 'pipe-separator' => ' | ', # only translate this message to other languages if you have to change it
03630 'word-separator' => ' ', # only translate this message to other languages if you have to change it
03631 'ellipsis' => '…', # only translate this message to other languages if you have to change it
03632 'percent' => '$1%', # only translate this message to other languages if you have to change it
03633
03634 # Multipage image navigation
03635 'imgmultipageprev' => '← previous page',
03636 'imgmultipagenext' => 'next page →',
03637 'imgmultigo' => 'Go!',
03638 'imgmultigoto' => 'Go to page $1',
03639
03640 # Table pager
03641 'ascending_abbrev' => 'asc',
03642 'descending_abbrev' => 'desc',
03643 'table_pager_next' => 'Next page',
03644 'table_pager_prev' => 'Previous page',
03645 'table_pager_first' => 'First page',
03646 'table_pager_last' => 'Last page',
03647 'table_pager_limit' => 'Show $1 items per page',
03648 'table_pager_limit_submit' => 'Go',
03649 'table_pager_empty' => 'No results',
03650
03651 # Auto-summaries
03652 'autosumm-blank' => 'Blanked the page',
03653 'autosumm-replace' => 'Replaced content with "$1"',
03654 'autoredircomment' => 'Redirected page to [[$1]]',
03655 'autosumm-new' => 'Created page with "$1"',
03656
03657 # Autoblock whitelist
03658 'autoblock_whitelist' => 'AOL http://webmaster.info.aol.com/proxyinfo.html
03659 *64.12.96.0/19
03660 *149.174.160.0/20
03661 *152.163.240.0/21
03662 *152.163.248.0/22
03663 *152.163.252.0/23
03664 *152.163.96.0/22
03665 *152.163.100.0/23
03666 *195.93.32.0/22
03667 *195.93.48.0/22
03668 *195.93.64.0/19
03669 *195.93.96.0/19
03670 *195.93.16.0/20
03671 *198.81.0.0/22
03672 *198.81.16.0/20
03673 *198.81.8.0/23
03674 *202.67.64.128/25
03675 *205.188.192.0/20
03676 *205.188.208.0/23
03677 *205.188.112.0/20
03678 *205.188.146.144/30
03679 *207.200.112.0/21', # do not translate or duplicate this message to other languages
03680
03681 # Size units
03682 'size-bytes' => '$1 B', # only translate this message to other languages if you have to change it
03683 'size-kilobytes' => '$1 KB', # only translate this message to other languages if you have to change it
03684 'size-megabytes' => '$1 MB', # only translate this message to other languages if you have to change it
03685 'size-gigabytes' => '$1 GB', # only translate this message to other languages if you have to change it
03686
03687 # Live preview
03688 'livepreview-loading' => 'Loading...',
03689 'livepreview-ready' => 'Loading... Ready!',
03690 'livepreview-failed' => 'Live preview failed!
03691 Try normal preview.',
03692 'livepreview-error' => 'Failed to connect: $1 "$2".
03693 Try normal preview.',
03694
03695 # Friendlier slave lag warnings
03696 'lag-warn-normal' => 'Changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.',
03697 'lag-warn-high' => 'Due to high database server lag, changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.',
03698
03699 # Watchlist editor
03700 'watchlistedit-numitems' => 'Your watchlist contains {{PLURAL:$1|1 title|$1 titles}}, excluding talk pages.',
03701 'watchlistedit-noitems' => 'Your watchlist contains no titles.',
03702 'watchlistedit-normal-title' => 'Edit watchlist',
03703 'watchlistedit-normal-legend' => 'Remove titles from watchlist',
03704 'watchlistedit-normal-explain' => 'Titles on your watchlist are shown below.
03705 To remove a title, check the box next to it, and click "{{int:Watchlistedit-normal-submit}}".
03706 You can also [[Special:Watchlist/raw|edit the raw list]].',
03707 'watchlistedit-normal-submit' => 'Remove titles',
03708 'watchlistedit-normal-done' => '{{PLURAL:$1|1 title was|$1 titles were}} removed from your watchlist:',
03709 'watchlistedit-raw-title' => 'Edit raw watchlist',
03710 'watchlistedit-raw-legend' => 'Edit raw watchlist',
03711 'watchlistedit-raw-explain' => 'Titles on your watchlist are shown below, and can be edited by adding to and removing from the list;
03712 one title per line.
03713 When finished, click "{{int:Watchlistedit-raw-submit}}".
03714 You can also [[Special:Watchlist/edit|use the standard editor]].',
03715 'watchlistedit-raw-titles' => 'Titles:',
03716 'watchlistedit-raw-submit' => 'Update watchlist',
03717 'watchlistedit-raw-done' => 'Your watchlist has been updated.',
03718 'watchlistedit-raw-added' => '{{PLURAL:$1|1 title was|$1 titles were}} added:',
03719 'watchlistedit-raw-removed' => '{{PLURAL:$1|1 title was|$1 titles were}} removed:',
03720
03721 # Watchlist editing tools
03722 'watchlisttools-view' => 'View relevant changes',
03723 'watchlisttools-edit' => 'View and edit watchlist',
03724 'watchlisttools-raw' => 'Edit raw watchlist',
03725
03726 # Iranian month names
03727 'iranian-calendar-m1' => 'Farvardin', # only translate this message to other languages if you have to change it
03728 'iranian-calendar-m2' => 'Ordibehesht', # only translate this message to other languages if you have to change it
03729 'iranian-calendar-m3' => 'Khordad', # only translate this message to other languages if you have to change it
03730 'iranian-calendar-m4' => 'Tir', # only translate this message to other languages if you have to change it
03731 'iranian-calendar-m5' => 'Mordad', # only translate this message to other languages if you have to change it
03732 'iranian-calendar-m6' => 'Shahrivar', # only translate this message to other languages if you have to change it
03733 'iranian-calendar-m7' => 'Mehr', # only translate this message to other languages if you have to change it
03734 'iranian-calendar-m8' => 'Aban', # only translate this message to other languages if you have to change it
03735 'iranian-calendar-m9' => 'Azar', # only translate this message to other languages if you have to change it
03736 'iranian-calendar-m10' => 'Dey', # only translate this message to other languages if you have to change it
03737 'iranian-calendar-m11' => 'Bahman', # only translate this message to other languages if you have to change it
03738 'iranian-calendar-m12' => 'Esfand', # only translate this message to other languages if you have to change it
03739
03740 # Hijri month names
03741 'hijri-calendar-m1' => 'Muharram', # only translate this message to other languages if you have to change it
03742 'hijri-calendar-m2' => 'Safar', # only translate this message to other languages if you have to change it
03743 'hijri-calendar-m3' => "Rabi' al-awwal", # only translate this message to other languages if you have to change it
03744 'hijri-calendar-m4' => "Rabi' al-thani", # only translate this message to other languages if you have to change it
03745 'hijri-calendar-m5' => 'Jumada al-awwal', # only translate this message to other languages if you have to change it
03746 'hijri-calendar-m6' => 'Jumada al-thani', # only translate this message to other languages if you have to change it
03747 'hijri-calendar-m7' => 'Rajab', # only translate this message to other languages if you have to change it
03748 'hijri-calendar-m8' => "Sha'aban", # only translate this message to other languages if you have to change it
03749 'hijri-calendar-m9' => 'Ramadan', # only translate this message to other languages if you have to change it
03750 'hijri-calendar-m10' => 'Shawwal', # only translate this message to other languages if you have to change it
03751 'hijri-calendar-m11' => "Dhu al-Qi'dah", # only translate this message to other languages if you have to change it
03752 'hijri-calendar-m12' => 'Dhu al-Hijjah', # only translate this message to other languages if you have to change it
03753
03754 # Hebrew month names
03755 'hebrew-calendar-m1' => 'Tishrei', # only translate this message to other languages if you have to change it
03756 'hebrew-calendar-m2' => 'Cheshvan', # only translate this message to other languages if you have to change it
03757 'hebrew-calendar-m3' => 'Kislev', # only translate this message to other languages if you have to change it
03758 'hebrew-calendar-m4' => 'Tevet', # only translate this message to other languages if you have to change it
03759 'hebrew-calendar-m5' => 'Shevat', # only translate this message to other languages if you have to change it
03760 'hebrew-calendar-m6' => 'Adar', # only translate this message to other languages if you have to change it
03761 'hebrew-calendar-m6a' => 'Adar I', # only translate this message to other languages if you have to change it
03762 'hebrew-calendar-m6b' => 'Adar II', # only translate this message to other languages if you have to change it
03763 'hebrew-calendar-m7' => 'Nisan', # only translate this message to other languages if you have to change it
03764 'hebrew-calendar-m8' => 'Iyar', # only translate this message to other languages if you have to change it
03765 'hebrew-calendar-m9' => 'Sivan', # only translate this message to other languages if you have to change it
03766 'hebrew-calendar-m10' => 'Tamuz', # only translate this message to other languages if you have to change it
03767 'hebrew-calendar-m11' => 'Av', # only translate this message to other languages if you have to change it
03768 'hebrew-calendar-m12' => 'Elul', # only translate this message to other languages if you have to change it
03769 'hebrew-calendar-m1-gen' => 'Tishrei', # only translate this message to other languages if you have to change it
03770 'hebrew-calendar-m2-gen' => 'Cheshvan', # only translate this message to other languages if you have to change it
03771 'hebrew-calendar-m3-gen' => 'Kislev', # only translate this message to other languages if you have to change it
03772 'hebrew-calendar-m4-gen' => 'Tevet', # only translate this message to other languages if you have to change it
03773 'hebrew-calendar-m5-gen' => 'Shevat', # only translate this message to other languages if you have to change it
03774 'hebrew-calendar-m6-gen' => 'Adar', # only translate this message to other languages if you have to change it
03775 'hebrew-calendar-m6a-gen' => 'Adar I', # only translate this message to other languages if you have to change it
03776 'hebrew-calendar-m6b-gen' => 'Adar II', # only translate this message to other languages if you have to change it
03777 'hebrew-calendar-m7-gen' => 'Nisan', # only translate this message to other languages if you have to change it
03778 'hebrew-calendar-m8-gen' => 'Iyar', # only translate this message to other languages if you have to change it
03779 'hebrew-calendar-m9-gen' => 'Sivan', # only translate this message to other languages if you have to change it
03780 'hebrew-calendar-m10-gen' => 'Tamuz', # only translate this message to other languages if you have to change it
03781 'hebrew-calendar-m11-gen' => 'Av', # only translate this message to other languages if you have to change it
03782 'hebrew-calendar-m12-gen' => 'Elul', # only translate this message to other languages if you have to change it
03783
03784 # Signatures
03785 'signature' => '[[{{ns:user}}:$1|$2]]', # do not translate or duplicate this message to other languages
03786 'signature-anon' => '[[{{#special:Contributions}}/$1|$2]]', # do not translate or duplicate this message to other languages
03787 'timezone-utc' => 'UTC', # only translate this message to other languages if you have to change it
03788
03789 # Core parser functions
03790 'unknown_extension_tag' => 'Unknown extension tag "$1"',
03791 'duplicate-defaultsort' => '\'\'\'Warning:\'\'\' Default sort key "$2" overrides earlier default sort key "$1".',
03792
03793 # Special:Version
03794 'version' => 'Version', # Not used as normal message but as header for the special page itself
03795 'version-extensions' => 'Installed extensions',
03796 'version-specialpages' => 'Special pages',
03797 'version-parserhooks' => 'Parser hooks',
03798 'version-variables' => 'Variables',
03799 'version-other' => 'Other',
03800 'version-mediahandlers' => 'Media handlers',
03801 'version-hooks' => 'Hooks',
03802 'version-extension-functions' => 'Extension functions',
03803 'version-parser-extensiontags' => 'Parser extension tags',
03804 'version-parser-function-hooks' => 'Parser function hooks',
03805 'version-skin-extension-functions' => 'Skin extension functions',
03806 'version-hook-name' => 'Hook name',
03807 'version-hook-subscribedby' => 'Subscribed by',
03808 'version-version' => 'Version',
03809 'version-license' => 'License',
03810 'version-software' => 'Installed software',
03811 'version-software-product' => 'Product',
03812 'version-software-version' => 'Version',
03813
03814 # Special:FilePath
03815 'filepath' => 'File path',
03816 'filepath-page' => 'File:',
03817 'filepath-submit' => 'Go',
03818 'filepath-summary' => 'This special page returns the complete path for a file.
03819 Images are shown in full resolution, other file types are started with their associated program directly.
03820
03821 Enter the file name without the "{{ns:file}}:" prefix.',
03822
03823 # Special:FileDuplicateSearch
03824 'fileduplicatesearch' => 'Search for duplicate files',
03825 'fileduplicatesearch-summary' => 'Search for duplicate files based on hash values.
03826
03827 Enter the filename without the "{{ns:file}}:" prefix.',
03828 'fileduplicatesearch-legend' => 'Search for a duplicate',
03829 'fileduplicatesearch-filename' => 'Filename:',
03830 'fileduplicatesearch-submit' => 'Search',
03831 'fileduplicatesearch-info' => '$1 × $2 pixel<br />File size: $3<br />MIME type: $4',
03832 'fileduplicatesearch-result-1' => 'The file "$1" has no identical duplication.',
03833 'fileduplicatesearch-result-n' => 'The file "$1" has {{PLURAL:$2|1 identical duplication|$2 identical duplications}}.',
03834
03835 # Special:SpecialPages
03836 'specialpages' => 'Special pages',
03837 'specialpages-summary' => '', # do not translate or duplicate this message to other languages
03838 'specialpages-note' => '----
03839 * Normal special pages.
03840 * <strong class="mw-specialpagerestricted">Restricted special pages.</strong>',
03841 'specialpages-group-maintenance' => 'Maintenance reports',
03842 'specialpages-group-other' => 'Other special pages',
03843 'specialpages-group-login' => 'Login / sign up',
03844 'specialpages-group-changes' => 'Recent changes and logs',
03845 'specialpages-group-media' => 'Media reports and uploads',
03846 'specialpages-group-users' => 'Users and rights',
03847 'specialpages-group-highuse' => 'High use pages',
03848 'specialpages-group-pages' => 'Lists of pages',
03849 'specialpages-group-pagetools' => 'Page tools',
03850 'specialpages-group-wiki' => 'Wiki data and tools',
03851 'specialpages-group-redirects' => 'Redirecting special pages',
03852 'specialpages-group-spam' => 'Spam tools',
03853
03854 # Special:BlankPage
03855 'blankpage' => 'Blank page',
03856 'intentionallyblankpage' => 'This page is intentionally left blank.',
03857
03858 # External image whitelist
03859 'external_image_whitelist' => ' #Leave this line exactly as it is<pre>
03860 #Put regular expression fragments (just the part that goes between the //) below
03861 #These will be matched with the URLs of external (hotlinked) images
03862 #Those that match will be displayed as images, otherwise only a link to the image will be shown
03863 #Lines beginning with # are treated as comments
03864 #This is case-insensitive
03865
03866 #Put all regex fragments above this line. Leave this line exactly as it is</pre>',
03867
03868 # Special:Tags
03869 'tags' => 'Valid change tags',
03870 'tag-filter' => '[[Special:Tags|Tag]] filter:',
03871 'tag-filter-submit' => 'Filter',
03872 'tags-title' => 'Tags',
03873 'tags-intro' => 'This page lists the tags that the software may mark an edit with, and their meaning.',
03874 'tags-tag' => 'Tag name',
03875 'tags-display-header' => 'Appearance on change lists',
03876 'tags-description-header' => 'Full description of meaning',
03877 'tags-hitcount-header' => 'Tagged changes',
03878 'tags-edit' => 'edit',
03879 'tags-hitcount' => '$1 {{PLURAL:$1|change|changes}}',
03880
03881 # Database error messages
03882 'dberr-header' => 'This wiki has a problem',
03883 'dberr-problems' => 'Sorry!
03884 This site is experiencing technical difficulties.',
03885 'dberr-again' => 'Try waiting a few minutes and reloading.',
03886 'dberr-info' => '(Cannot contact the database server: $1)',
03887 'dberr-usegoogle' => 'You can try searching via Google in the meantime.',
03888 'dberr-outofdate' => 'Note that their indexes of our content may be out of date.',
03889 'dberr-cachederror' => 'This is a cached copy of the requested page, and may not be up to date.',
03890
03891 );