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' => "<big>'''MediaWiki has been successfully installed.'''</big>",
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' => "<big>'''You have requested an invalid special page.'''</big>
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 MySQL 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 MySQL 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 attempts on this account's password.
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! Now logging you in…',
01014 'resetpass_bad_temporary' => 'Invalid temporary password.
01015 You may have already successfully changed your password or requested a new temporary password.',
01016 'resetpass_forbidden' => 'Passwords cannot be changed',
01017 'resetpass-no-info' => 'You must be logged in to access this page directly.',
01018 'resetpass-submit-loggedin' => 'Change password',
01019 'resetpass-wrong-oldpass' => 'Invalid temporary or current password.
01020 You may have already successfully changed your password or requested a new temporary password.',
01021 'resetpass-temp-password' => 'Temporary password:',
01022 'resetpass-log' => 'Password resets log',
01023 'resetpass-logtext' => 'Below is a log of users who have had their password reset by an administrator.',
01024 'resetpass-logentry' => 'changed the password for $1',
01025 'resetpass-comment' => 'Reason for password reset:',
01026
01027 # Edit page toolbar
01028 'bold_sample' => 'Bold text',
01029 'bold_tip' => 'Bold text',
01030 'italic_sample' => 'Italic text',
01031 'italic_tip' => 'Italic text',
01032 'link_sample' => 'Link title',
01033 'link_tip' => 'Internal link',
01034 'extlink_sample' => 'http://www.example.com link title',
01035 'extlink_tip' => 'External link (remember http:// prefix)',
01036 'headline_sample' => 'Headline text',
01037 'headline_tip' => 'Level 2 headline',
01038 'math_sample' => 'Insert formula here',
01039 'math_tip' => 'Mathematical formula (LaTeX)',
01040 'nowiki_sample' => 'Insert non-formatted text here',
01041 'nowiki_tip' => 'Ignore wiki formatting',
01042 'image_sample' => 'Example.jpg', # only translate this message to other languages if you have to change it
01043 'image_tip' => 'Embedded file',
01044 'media_sample' => 'Example.ogg', # only translate this message to other languages if you have to change it
01045 'media_tip' => 'File link',
01046 'sig_tip' => 'Your signature with timestamp',
01047 'hr_tip' => 'Horizontal line (use sparingly)',
01048
01049 # Edit pages
01050 'summary' => 'Summary:',
01051 'subject' => 'Subject/headline:',
01052 'minoredit' => 'This is a minor edit',
01053 'watchthis' => 'Watch this page',
01054 'savearticle' => 'Save page',
01055 'preview' => 'Preview',
01056 'showpreview' => 'Show preview',
01057 'showlivepreview' => 'Live preview',
01058 'showdiff' => 'Show changes',
01059 'anoneditwarning' => "'''Warning:''' You are not logged in.
01060 Your IP address will be recorded in this page's edit history.",
01061 'missingsummary' => "'''Reminder:''' You have not provided an edit summary.
01062 If you click Save again, your edit will be saved without one.",
01063 'missingcommenttext' => 'Please enter a comment below.',
01064 'missingcommentheader' => "'''Reminder:''' You have not provided a subject/headline for this comment.
01065 If you click Save again, your edit will be saved without one.",
01066 'summary-preview' => 'Summary preview:',
01067 'subject-preview' => 'Subject/headline preview:',
01068 'blockedtitle' => 'User is blocked',
01069 'blockedtext' => "<big>'''Your user name or IP address has been blocked.'''</big>
01070
01071 The block was made by $1.
01072 The reason given is ''$2''.
01073
01074 * Start of block: $8
01075 * Expiry of block: $6
01076 * Intended blockee: $7
01077
01078 You can contact $1 or another [[{{MediaWiki:Grouppage-sysop}}|administrator]] to discuss the block.
01079 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.
01080 Your current IP address is $3, and the block ID is #$5.
01081 Please include all above details in any queries you make.",
01082 'autoblockedtext' => 'Your IP address has been automatically blocked because it was used by another user, who was blocked by $1.
01083 The reason given is this:
01084
01085 :\'\'$2\'\'
01086
01087 * Start of block: $8
01088 * Expiry of block: $6
01089 * Intended blockee: $7
01090
01091 You may contact $1 or one of the other [[{{MediaWiki:Grouppage-sysop}}|administrators]] to discuss the block.
01092
01093 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.
01094
01095 Your current IP address is $3, and the block ID is #$5.
01096 Please include all above details in any queries you make.',
01097 'blockednoreason' => 'no reason given',
01098 'blockedoriginalsource' => "The source of '''$1''' is shown below:",
01099 'blockededitsource' => "The text of '''your edits''' to '''$1''' is shown below:",
01100 'whitelistedittitle' => 'Login required to edit',
01101 'whitelistedittext' => 'You have to $1 to edit pages.',
01102 'confirmedittitle' => 'E-mail confirmation required to edit',
01103 'confirmedittext' => 'You must confirm your e-mail address before editing pages.
01104 Please set and validate your e-mail address through your [[Special:Preferences|user preferences]].',
01105 'nosuchsectiontitle' => 'No such section',
01106 'nosuchsectiontext' => 'You tried to edit a section that does not exist.
01107 Since there is no section $1, there is no place to save your edit.',
01108 'loginreqtitle' => 'Login required',
01109 'loginreqlink' => 'log in',
01110 'loginreqpagetext' => 'You must $1 to view other pages.',
01111 'accmailtitle' => 'Password sent.',
01112 'accmailtext' => "A randomly generated password for [[User talk:$1|$1]] has been sent to $2.
01113
01114 The password for this new account can be changed on the ''[[Special:ChangePassword|change password]]'' page upon logging in.",
01115 'newarticle' => '(New)',
01116 'newarticletext' => "You have followed a link to a page that does not exist yet.
01117 To create the page, start typing in the box below (see the [[{{MediaWiki:Helppage}}|help page]] for more info).
01118 If you are here by mistake, click your browser's '''back''' button.",
01119 'newarticletextanon' => '{{int:newarticletext}}', # do not translate or duplicate this message to other languages
01120 'talkpagetext' => '<!-- MediaWiki:talkpagetext -->', # do not translate or duplicate this message to other languages
01121 'anontalkpagetext' => "----''This is the discussion page for an anonymous user who has not created an account yet, or who does not use it.
01122 We therefore have to use the numerical IP address to identify him/her.
01123 Such an IP address can be shared by several users.
01124 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.''",
01125 'noarticletext' => 'There is currently no text in this page.
01126 You can [[Special:Search/{{PAGENAME}}|search for this page title]] in other pages,
01127 <span class="plainlinks">[{{fullurl:Special:Log|page={{urlencode:{{FULLPAGENAME}}}}}} search the related logs],
01128 or [{{fullurl:{{FULLPAGENAME}}|action=edit}} edit this page]</span>.',
01129 'noarticletextanon' => '{{int:noarticletext}}', # do not translate or duplicate this message to other languages
01130 'userpage-userdoesnotexist' => 'User account "$1" is not registered.
01131 Please check if you want to create/edit this page.',
01132 'clearyourcache' => "'''Note - After saving, you may have to bypass your browser's cache to see the changes.'''
01133 '''Mozilla / Firefox / Safari:''' hold ''Shift'' while clicking ''Reload'', or press either ''Ctrl-F5'' or ''Ctrl-R'' (''Command-R'' on a Macintosh);
01134 '''Konqueror: '''click ''Reload'' or press ''F5'';
01135 '''Opera:''' clear the cache in ''Tools → Preferences'';
01136 '''Internet Explorer:''' hold ''Ctrl'' while clicking ''Refresh,'' or press ''Ctrl-F5''.",
01137 'usercssjsyoucanpreview' => "'''Tip:''' Use the 'Show preview' button to test your new CSS/JS before saving.",
01138 'usercsspreview' => "'''Remember that you are only previewing your user CSS.'''
01139 '''It has not yet been saved!'''",
01140 'userjspreview' => "'''Remember that you are only testing/previewing your user JavaScript.'''
01141 '''It has not yet been saved!'''",
01142 'userinvalidcssjstitle' => "'''Warning:''' There is no skin \"\$1\".
01143 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.",
01144 'updated' => '(Updated)',
01145 'note' => "'''Note:'''",
01146 'previewnote' => "'''Remember that this is only a preview.'''
01147 Your changes have not yet been saved!",
01148 'previewconflict' => 'This preview reflects the text in the upper text editing area as it will appear if you choose to save.',
01149 'session_fail_preview' => "'''Sorry! We could not process your edit due to a loss of session data.'''
01150 Please try again.
01151 If it still does not work, try [[Special:UserLogout|logging out]] and logging back in.",
01152 'session_fail_preview_html' => "'''Sorry! We could not process your edit due to a loss of session data.'''
01153
01154 ''Because {{SITENAME}} has raw HTML enabled, the preview is hidden as a precaution against JavaScript attacks.''
01155
01156 '''If this is a legitimate edit attempt, please try again.'''
01157 If it still does not work, try [[Special:UserLogout|logging out]] and logging back in.",
01158 'token_suffix_mismatch' => "'''Your edit has been rejected because your client mangled the punctuation characters in the edit token.'''
01159 The edit has been rejected to prevent corruption of the page text.
01160 This sometimes happens when you are using a buggy web-based anonymous proxy service.",
01161 'editing' => 'Editing $1',
01162 'editingsection' => 'Editing $1 (section)',
01163 'editingcomment' => 'Editing $1 (new section)',
01164 'editconflict' => 'Edit conflict: $1',
01165 'explainconflict' => "Someone else has changed this page since you started editing it.
01166 The upper text area contains the page text as it currently exists.
01167 Your changes are shown in the lower text area.
01168 You will have to merge your changes into the existing text.
01169 '''Only''' the text in the upper text area will be saved when you press \"Save page\".",
01170 'yourtext' => 'Your text',
01171 'storedversion' => 'Stored revision',
01172 'nonunicodebrowser' => "'''Warning: Your browser is not unicode compliant.'''
01173 A workaround is in place to allow you to safely edit pages: non-ASCII characters will appear in the edit box as hexadecimal codes.",
01174 'editingold' => "'''Warning: You are editing an out-of-date revision of this page.'''
01175 If you save it, any changes made since this revision will be lost.",
01176 'yourdiff' => 'Differences',
01177 'copyrightwarning' => "Please note that all contributions to {{SITENAME}} are considered to be released under the $2 (see $1 for details).
01178 If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.<br />
01179 You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
01180 '''Do not submit copyrighted work without permission!'''",
01181 'copyrightwarning2' => "Please note that all contributions to {{SITENAME}} may be edited, altered, or removed by other contributors.
01182 If you do not want your writing to be edited mercilessly, then do not submit it here.<br />
01183 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).
01184 '''Do not submit copyrighted work without permission!'''",
01185 'longpagewarning' => "'''Warning:''' This page is $1 kilobytes long;
01186 some browsers may have problems editing pages approaching or longer than 32kb.
01187 Please consider breaking the page into smaller sections.",
01188 'longpageerror' => "'''Error: The text you have submitted is $1 kilobytes long, which is longer than the maximum of $2 kilobytes.'''
01189 It cannot be saved.",
01190 'readonlywarning' => "'''Warning: The database has been locked for maintenance, so you will not be able to save your edits right now.'''
01191 You may wish to cut-n-paste the text into a text file and save it for later.
01192
01193 The administrator who locked it offered this explanation: $1",
01194 'protectedpagewarning' => "'''Warning: This page has been locked so that only users with administrator privileges can edit it.'''",
01195 'semiprotectedpagewarning' => "'''Note:''' This page has been locked so that only registered users can edit it.",
01196 '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}}:",
01197 'titleprotectedwarning' => "'''Warning: This page has been locked so that [[Special:ListGroupRights|specific rights]] are needed to create it.'''",
01198 'templatesused' => 'Templates used on this page:',
01199 'templatesusedpreview' => 'Templates used in this preview:',
01200 'templatesusedsection' => 'Templates used in this section:',
01201 'template-protected' => '(protected)',
01202 'template-semiprotected' => '(semi-protected)',
01203 'hiddencategories' => 'This page is a member of {{PLURAL:$1|1 hidden category|$1 hidden categories}}:',
01204 'edittools' => '<!-- Text here will be shown below edit and upload forms. -->', # only translate this message to other languages if you have to change it
01205 'nocreatetitle' => 'Page creation limited',
01206 'nocreatetext' => '{{SITENAME}} has restricted the ability to create new pages.
01207 You can go back and edit an existing page, or [[Special:UserLogin|log in or create an account]].',
01208 'nocreate-loggedin' => 'You do not have permission to create new pages.',
01209 'permissionserrors' => 'Permissions Errors',
01210 'permissionserrorstext' => 'You do not have permission to do that, for the following {{PLURAL:$1|reason|reasons}}:',
01211 'permissionserrorstext-withaction' => 'You do not have permission to $2, for the following {{PLURAL:$1|reason|reasons}}:',
01212 'recreate-deleted-warn' => "'''Warning: You are recreating a page that was previously deleted.'''
01213
01214 You should consider whether it is appropriate to continue editing this page.
01215 The deletion log for this page is provided here for convenience:",
01216 'deleted-notice' => 'This page has been deleted.
01217 The deletion log for the page is provided below for reference.',
01218 'deletelog-fulllog' => 'View full log',
01219 'edit-hook-aborted' => 'Edit aborted by hook.
01220 It gave no explanation.',
01221 'edit-gone-missing' => 'Could not update the page.
01222 It appears to have been deleted.',
01223 'edit-conflict' => 'Edit conflict.',
01224 'edit-no-change' => 'Your edit was ignored, because no change was made to the text.',
01225 'edit-already-exists' => 'Could not create a new page.
01226 It already exists.',
01227
01228 # Parser/template warnings
01229 'expensive-parserfunction-warning' => "'''Warning:''' This page contains too many expensive parser function calls.
01230
01231 It should have less than $2 {{PLURAL:$2|call|calls}}, there {{PLURAL:$1|is now $1 call|are now $1 calls}}.",
01232 'expensive-parserfunction-category' => 'Pages with too many expensive parser function calls',
01233 'post-expand-template-inclusion-warning' => "'''Warning:''' Template include size is too large.
01234 Some templates will not be included.",
01235 'post-expand-template-inclusion-category' => 'Pages where template include size is exceeded',
01236 'post-expand-template-argument-warning' => "'''Warning:''' This page contains at least one template argument which has a too large expansion size.
01237 These arguments have been omitted.",
01238 'post-expand-template-argument-category' => 'Pages containing omitted template arguments',
01239 'parser-template-loop-warning' => 'Template loop detected: [[$1]]',
01240 'parser-template-recursion-depth-warning' => 'Template recursion depth limit exceeded ($1)',
01241
01242 # "Undo" feature
01243 'undo-success' => 'The edit can be undone.
01244 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.',
01245 'undo-failure' => 'The edit could not be undone due to conflicting intermediate edits.',
01246 'undo-norev' => 'The edit could not be undone because it does not exist or was deleted.',
01247 'undo-summary' => 'Undo revision $1 by [[Special:Contributions/$2|$2]] ([[User talk:$2|Talk]])',
01248
01249 # Account creation failure
01250 'cantcreateaccounttitle' => 'Cannot create account',
01251 'cantcreateaccount-text' => "Account creation from this IP address ('''$1''') has been blocked by [[User:$3|$3]].
01252
01253 The reason given by $3 is ''$2''",
01254 'cantcreateaccount-nonblock-text' => '', # do not translate or duplicate this message to other languages
01255
01256 # History pages
01257 'viewpagelogs' => 'View logs for this page',
01258 'nohistory' => 'There is no edit history for this page.',
01259 'currentrev' => 'Current revision',
01260 'currentrev-asof' => 'Current revision as of $1',
01261 'revisionasof' => 'Revision as of $1',
01262 'revision-info' => 'Revision as of $1 by $2', # Additionally available: $3: revision id
01263 'revision-info-current' => '-', # Available parameters: $1: timestamp; $2: userlinks; $3: revision id; do not translate or duplicate this message to other languages
01264 'revision-nav' => '($1) $2{{int:pipe-separator}}$3 ($4){{int:pipe-separator}}$5 ($6)', # do not translate or duplicate this message to other languages
01265 'previousrevision' => '← Older revision',
01266 'nextrevision' => 'Newer revision →',
01267 'currentrevisionlink' => 'Current revision',
01268 'cur' => 'cur',
01269 'next' => 'next',
01270 'last' => 'prev',
01271 'page_first' => 'first',
01272 'page_last' => 'last',
01273 'histlegend' => "Diff selection: mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.<br />
01274 Legend: '''({{int:cur}})''' = difference with current revision,
01275 '''({{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 * Inappropriate personal information
01324 *: ''home addresses and telephone numbers, social security numbers, etc.''",
01325 'revdelete-legend' => 'Set visibility restrictions',
01326 'revdelete-hide-text' => 'Hide revision text',
01327 'revdelete-hide-name' => 'Hide action and target',
01328 'revdelete-hide-comment' => 'Hide edit comment',
01329 'revdelete-hide-user' => "Hide editor's username/IP",
01330 'revdelete-hide-restricted' => 'Suppress data from administrators as well as others',
01331 'revdelete-suppress' => 'Suppress data from administrators as well as others',
01332 'revdelete-hide-image' => 'Hide file content',
01333 'revdelete-unsuppress' => 'Remove restrictions on restored revisions',
01334 'revdelete-log' => 'Log comment:',
01335 'revdelete-submit' => 'Apply to selected revision',
01336 'revdelete-logentry' => 'changed revision visibility of [[$1]]',
01337 'logdelete-logentry' => 'changed event visibility of [[$1]]',
01338 'revdelete-success' => "'''Revision visibility successfully set.'''",
01339 'logdelete-success' => "'''Log visibility successfully set.'''",
01340 'revdel-restore' => 'change visibility',
01341 'pagehist' => 'Page history',
01342 'deletedhist' => 'Deleted history',
01343 'revdelete-content' => 'content',
01344 'revdelete-summary' => 'edit summary',
01345 'revdelete-uname' => 'username',
01346 'revdelete-restricted' => 'applied restrictions to administrators',
01347 'revdelete-unrestricted' => 'removed restrictions for administrators',
01348 'revdelete-hid' => 'hid $1',
01349 'revdelete-unhid' => 'unhid $1',
01350 'revdelete-log-message' => '$1 for $2 {{PLURAL:$2|revision|revisions}}',
01351 'logdelete-log-message' => '$1 for $2 {{PLURAL:$2|event|events}}',
01352
01353 # Suppression log
01354 'suppressionlog' => 'Suppression log',
01355 'suppressionlogtext' => 'Below is a list of deletions and blocks involving content hidden from administrators.
01356 See the [[Special:IPBlockList|IP block list]] for the list of currently operational bans and blocks.',
01357
01358 # History merging
01359 'mergehistory' => 'Merge page histories',
01360 'mergehistory-header' => 'This page lets you merge revisions of the history of one source page into a newer page.
01361 Make sure that this change will maintain historical page continuity.',
01362 'mergehistory-box' => 'Merge revisions of two pages:',
01363 'mergehistory-from' => 'Source page:',
01364 'mergehistory-into' => 'Destination page:',
01365 'mergehistory-list' => 'Mergeable edit history',
01366 'mergehistory-merge' => 'The following revisions of [[:$1]] can be merged into [[:$2]].
01367 Use the radio button column to merge in only the revisions created at and before the specified time.
01368 Note that using the navigation links will reset this column.',
01369 'mergehistory-go' => 'Show mergeable edits',
01370 'mergehistory-submit' => 'Merge revisions',
01371 'mergehistory-empty' => 'No revisions can be merged.',
01372 'mergehistory-success' => '$3 {{PLURAL:$3|revision|revisions}} of [[:$1]] successfully merged into [[:$2]].',
01373 'mergehistory-fail' => 'Unable to perform history merge, please recheck the page and time parameters.',
01374 'mergehistory-no-source' => 'Source page $1 does not exist.',
01375 'mergehistory-no-destination' => 'Destination page $1 does not exist.',
01376 'mergehistory-invalid-source' => 'Source page must be a valid title.',
01377 'mergehistory-invalid-destination' => 'Destination page must be a valid title.',
01378 'mergehistory-autocomment' => 'Merged [[:$1]] into [[:$2]]',
01379 'mergehistory-comment' => 'Merged [[:$1]] into [[:$2]]: $3',
01380 'mergehistory-same-destination' => 'Source and destination pages cannot be the same',
01381 'mergehistory-reason' => 'Reason:',
01382
01383 # Merge log
01384 'mergelog' => 'Merge log',
01385 'pagemerge-logentry' => 'merged [[$1]] into [[$2]] (revisions up to $3)',
01386 'revertmerge' => 'Unmerge',
01387 'mergelogpagetext' => 'Below is a list of the most recent merges of one page history into another.',
01388
01389 # Diffs
01390 'history-title' => 'Revision history of "$1"',
01391 'difference' => '(Difference between revisions)',
01392 'lineno' => 'Line $1:',
01393 'compareselectedversions' => 'Compare selected revisions',
01394 'visualcomparison' => 'Visual comparison',
01395 'wikicodecomparison' => 'Wikitext comparison',
01396 'editundo' => 'undo',
01397 'diff-multi' => '({{PLURAL:$1|One intermediate revision|$1 intermediate revisions}} not shown)',
01398 'diff-movedto' => 'moved to $1',
01399 'diff-styleadded' => '$1 style added',
01400 'diff-added' => '$1 added',
01401 'diff-changedto' => 'changed to $1',
01402 'diff-movedoutof' => 'moved out of $1',
01403 'diff-styleremoved' => '$1 style removed',
01404 'diff-removed' => '$1 removed',
01405 'diff-changedfrom' => 'changed from $1',
01406 'diff-src' => 'source',
01407 'diff-withdestination' => 'with destination $1',
01408 'diff-with' => ' with $1 $2',
01409 'diff-with-additional' => '$1 $2', # only translate this message to other languages if you have to change it
01410 'diff-with-final' => ' and $1 $2',
01411 'diff-width' => 'width',
01412 'diff-height' => 'height',
01413 'diff-p' => "a '''paragraph'''",
01414 'diff-blockquote' => "a '''quote'''",
01415 'diff-h1' => "a '''heading (level 1)'''",
01416 'diff-h2' => "a '''heading (level 2)'''",
01417 'diff-h3' => "a '''heading (level 3)'''",
01418 'diff-h4' => "a '''heading (level 4)'''",
01419 'diff-h5' => "a '''heading (level 5)'''",
01420 'diff-pre' => "a '''preformatted block'''",
01421 'diff-div' => "a '''division'''",
01422 'diff-ul' => "an '''unordered list'''",
01423 'diff-ol' => "an '''ordered list'''",
01424 'diff-li' => "a '''list item'''",
01425 'diff-table' => "a '''table'''",
01426 'diff-tbody' => "a '''table's content'''",
01427 'diff-tr' => "a '''row'''",
01428 'diff-td' => "a '''cell'''",
01429 'diff-th' => "a '''header'''",
01430 'diff-br' => "a '''break'''",
01431 'diff-hr' => "a '''horizontal rule'''",
01432 'diff-code' => "a '''computer code block'''",
01433 'diff-dl' => "a '''definition list'''",
01434 'diff-dt' => "a '''definition term'''",
01435 'diff-dd' => "a '''definition'''",
01436 'diff-input' => "an '''input'''",
01437 'diff-form' => "a '''form'''",
01438 'diff-img' => "an '''image'''",
01439 'diff-span' => "a '''span'''",
01440 'diff-a' => "a '''link'''",
01441 'diff-i' => "'''italics'''",
01442 'diff-b' => "'''bold'''",
01443 'diff-strong' => "'''strong'''",
01444 'diff-em' => "'''emphasis'''",
01445 'diff-font' => "'''font'''",
01446 'diff-big' => "'''big'''",
01447 'diff-del' => "'''deleted'''",
01448 'diff-tt' => "'''fixed width'''",
01449 'diff-sub' => "'''subscript'''",
01450 'diff-sup' => "'''superscript'''",
01451 'diff-strike' => "'''strikethrough'''",
01452
01453 # Search results
01454 'searchresults' => 'Search results',
01455 'searchresults-title' => 'Search results for "$1"',
01456 'searchresulttext' => 'For more information about searching {{SITENAME}}, see [[{{MediaWiki:Helppage}}|{{int:help}}]].',
01457 '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"]])',
01458 'searchsubtitleinvalid' => "You searched for '''$1'''",
01459 'noexactmatch' => "'''There is no page titled \"\$1\".'''
01460 You can [[:\$1|create this page]].",
01461 'noexactmatch-nocreate' => "'''There is no page titled \"\$1\".'''",
01462 'toomanymatches' => 'Too many matches were returned, please try a different query',
01463 'titlematches' => 'Page title matches',
01464 'notitlematches' => 'No page title matches',
01465 'textmatches' => 'Page text matches',
01466 'notextmatches' => 'No page text matches',
01467 'prevn' => 'previous $1',
01468 'nextn' => 'next $1',
01469 'prevn-title' => 'Previous $1 {{PLURAL:$1|result|results}}',
01470 'nextn-title' => 'Next $1 {{PLURAL:$1|result|results}}',
01471 'shown-title' => 'Show $1 {{PLURAL:$1|result|results}} per page',
01472 'viewprevnext' => 'View ($1) ($2) ($3)',
01473 'searchmenu-legend' => 'Search options',
01474 'searchmenu-exists' => "'''There is a page named \"[[:\$1]]\" on this wiki'''",
01475 'searchmenu-new' => "'''Create the page \"[[:\$1]]\" on this wiki!'''",
01476 'searchhelp-url' => 'Help:Contents',
01477 'searchmenu-prefix' => '[[Special:PrefixIndex/$1|Browse pages with this prefix]]',
01478 'searchmenu-help' => '[[{{MediaWiki:Searchhelp-url}}|{{int:help}}]]?', # do not translate or duplicate this message to other languages
01479 'searchprofile-articles' => 'Content pages',
01480 'searchprofile-articles-and-proj' => 'Content & project pages',
01481 'searchprofile-project' => 'Project pages',
01482 'searchprofile-images' => 'Files',
01483 'searchprofile-everything' => 'Everything',
01484 'searchprofile-advanced' => 'Advanced',
01485 'searchprofile-articles-tooltip' => 'Search in $1',
01486 'searchprofile-project-tooltip' => 'Search in $1',
01487 'searchprofile-images-tooltip' => 'Search for files',
01488 'searchprofile-everything-tooltip' => 'Search all of content (including talk pages)',
01489 'searchprofile-advanced-tooltip' => 'Search in custom namespaces',
01490 'prefs-search-nsdefault' => 'Search using defaults:',
01491 'prefs-search-nscustom' => 'Search custom namespaces:',
01492 'search-result-size' => '$1 ({{PLURAL:$2|1 word|$2 words}})',
01493 'search-result-score' => 'Relevance: $1%',
01494 'search-redirect' => '(redirect $1)',
01495 'search-section' => '(section $1)',
01496 'search-suggest' => 'Did you mean: $1',
01497 'search-interwiki-caption' => 'Sister projects',
01498 'search-interwiki-default' => '$1 results:',
01499 'search-interwiki-custom' => '', # do not translate or duplicate this message to other languages
01500 'search-interwiki-more' => '(more)',
01501 'search-mwsuggest-enabled' => 'with suggestions',
01502 'search-mwsuggest-disabled' => 'no suggestions',
01503 'search-relatedarticle' => 'Related',
01504 'mwsuggest-disable' => 'Disable AJAX suggestions',
01505 'searchrelated' => 'related',
01506 'searchall' => 'all',
01507 'showingresults' => "Showing below up to {{PLURAL:$1|'''1''' result|'''$1''' results}} starting with #'''$2'''.",
01508 'showingresultsnum' => "Showing below {{PLURAL:$3|'''1''' result|'''$3''' results}} starting with #'''$2'''.",
01509 'showingresultstotal' => "Showing below {{PLURAL:$4|result '''$1''' of '''$3'''|results '''$1 - $2''' of '''$3'''}}",
01510 'nonefound' => "'''Note''': Only some namespaces are searched by default.
01511 Try prefixing your query with ''all:'' to search all content (including talk pages, templates, etc), or use the desired namespace as prefix.",
01512 'search-nonefound' => 'There were no results matching the query.',
01513 'powersearch' => 'Advanced search',
01514 'powersearch-legend' => 'Advanced search',
01515 'powersearch-ns' => 'Search in namespaces:',
01516 'powersearch-redir' => 'List redirects',
01517 'powersearch-field' => 'Search for',
01518 'search-external' => 'External search',
01519 'searchdisabled' => '{{SITENAME}} search is disabled.
01520 You can search via Google in the meantime.
01521 Note that their indexes of {{SITENAME}} content may be out of date.',
01522 'googlesearch' => '<form method="get" action="http://www.google.com/search" id="googlesearch">
01523 <input type="hidden" name="domains" value="{{SERVER}}" />
01524 <input type="hidden" name="num" value="50" />
01525 <input type="hidden" name="ie" value="$2" />
01526 <input type="hidden" name="oe" value="$2" />
01527
01528 <input type="text" name="q" size="31" maxlength="255" value="$1" />
01529 <input type="submit" name="btnG" value="$3" />
01530 <div>
01531 <input type="radio" name="sitesearch" id="gwiki" value="{{SERVER}}" checked="checked" /><label for="gwiki">{{SITENAME}}</label>
01532 <input type="radio" name="sitesearch" id="gWWW" value="" /><label for="gWWW">WWW</label>
01533 </div>
01534 </form>', # do not translate or duplicate this message to other languages
01535
01536 # OpenSearch description
01537 'opensearch-desc' => '{{SITENAME}} ({{CONTENTLANGUAGE}})', # do not translate or duplicate this message to other languages
01538
01539 # Preferences page
01540 'preferences' => 'Preferences',
01541 'preferences-summary' => '', # do not translate or duplicate this message to other languages
01542 'mypreferences' => 'My preferences',
01543 'prefs-edits' => 'Number of edits:',
01544 'prefsnologin' => 'Not logged in',
01545 'prefsnologintext' => 'You must be <span class="plainlinks">[{{fullurl:Special:UserLogin|returnto=$1}} logged in]</span> to set user preferences.',
01546 'prefsreset' => 'Preferences have been reset from storage.',
01547 'qbsettings' => 'Quickbar',
01548 'qbsettings-none' => 'None',
01549 'qbsettings-fixedleft' => 'Fixed left',
01550 'qbsettings-fixedright' => 'Fixed right',
01551 'qbsettings-floatingleft' => 'Floating left',
01552 'qbsettings-floatingright' => 'Floating right',
01553 'changepassword' => 'Change password',
01554 'skin' => 'Skin',
01555 'skin-preview' => 'Preview',
01556 'math' => 'Math',
01557 'dateformat' => 'Date format',
01558 'datedefault' => 'No preference',
01559 'datetime' => 'Date and time',
01560 'math_failure' => 'Failed to parse',
01561 'math_unknown_error' => 'unknown error',
01562 'math_unknown_function' => 'unknown function',
01563 'math_lexing_error' => 'lexing error',
01564 'math_syntax_error' => 'syntax error',
01565 'math_image_error' => 'PNG conversion failed;
01566 check for correct installation of latex, dvips, gs, and convert',
01567 'math_bad_tmpdir' => 'Cannot write to or create math temp directory',
01568 'math_bad_output' => 'Cannot write to or create math output directory',
01569 'math_notexvc' => 'Missing texvc executable;
01570 please see math/README to configure.',
01571 'prefs-personal' => 'User profile',
01572 'prefs-rc' => 'Recent changes',
01573 'prefs-watchlist' => 'Watchlist',
01574 'prefs-watchlist-days' => 'Days to show in watchlist:',
01575 'prefs-watchlist-days-max' => '(maximum 7 days)',
01576 'prefs-watchlist-edits' => 'Maximum number of changes to show in expanded watchlist:',
01577 'prefs-watchlist-edits-max' => '(maximum number: 1000)',
01578 'prefs-misc' => 'Misc',
01579 'prefs-resetpass' => 'Change password',
01580 'saveprefs' => 'Save',
01581 'resetprefs' => 'Clear unsaved changes',
01582 'restoreprefs' => 'Restore all default settings',
01583 'textboxsize' => 'Editing',
01584 'prefs-edit-boxsize' => 'Size of the edit window.',
01585 'rows' => 'Rows:',
01586 'columns' => 'Columns:',
01587 'searchresultshead' => 'Search',
01588 'resultsperpage' => 'Hits per page:',
01589 'contextlines' => 'Lines per hit:',
01590 'contextchars' => 'Context per line:',
01591 'stub-threshold' => 'Threshold for <a href="#" class="stub">stub link</a> formatting (bytes):',
01592 'recentchangesdays' => 'Days to show in recent changes:',
01593 'recentchangesdays-max' => '(maximum $1 {{PLURAL:$1|day|days}})',
01594 'recentchangescount' => 'Number of edits to show in recent changes, page histories, and in logs, by default:',
01595 'savedprefs' => 'Your preferences have been saved.',
01596 'timezonelegend' => 'Time zone:',
01597 'timezonetext' => '¹The number of hours your local time differs from server time (UTC).',
01598 'localtime' => 'Local time:',
01599 'timezoneselect' => 'Time zone:',
01600 'timezoneuseserverdefault' => 'Use server default',
01601 'timezoneuseoffset' => 'Other (specify offset)',
01602 'timezoneoffset' => 'Offset¹:',
01603 'servertime' => 'Server time:',
01604 'guesstimezone' => 'Fill in from browser',
01605 'timezoneregion-africa' => 'Africa',
01606 'timezoneregion-america' => 'America',
01607 'timezoneregion-antarctica' => 'Antarctica',
01608 'timezoneregion-arctic' => 'Arctic',
01609 'timezoneregion-asia' => 'Asia',
01610 'timezoneregion-atlantic' => 'Atlantic Ocean',
01611 'timezoneregion-australia' => 'Australia',
01612 'timezoneregion-europe' => 'Europe',
01613 'timezoneregion-indian' => 'Indian Ocean',
01614 'timezoneregion-pacific' => 'Pacific Ocean',
01615 'allowemail' => 'Enable e-mail from other users',
01616 'prefs-searchoptions' => 'Search options',
01617 'prefs-namespaces' => 'Namespaces',
01618 'defaultns' => 'Search in these namespaces by default:',
01619 'default' => 'default',
01620 'files' => 'Files',
01621 'prefs-custom-css' => 'Custom CSS',
01622 'prefs-custom-js' => 'Custom JS',
01623
01624 # User rights
01625 'userrights' => 'User rights management', # Not used as normal message but as header for the special page itself
01626 'userrights-summary' => '', # do not translate or duplicate this message to other languages
01627 'userrights-lookup-user' => 'Manage user groups',
01628 'userrights-user-editname' => 'Enter a username:',
01629 'editusergroup' => 'Edit user groups',
01630 'editinguser' => "Changing user rights of user '''[[User:$1|$1]]''' ([[User talk:$1|{{int:talkpagelinktext}}]]{{int:pipe-separator}}[[Special:Contributions/$1|{{int:contribslink}}]])",
01631 'userrights-editusergroup' => 'Edit user groups',
01632 'saveusergroups' => 'Save user groups',
01633 'userrights-groupsmember' => 'Member of:',
01634 'userrights-groups-help' => 'You may alter the groups this user is in:
01635 * A checked box means the user is in that group.
01636 * An unchecked box means the user is not in that group.
01637 * A * indicates that you cannot remove the group once you have added it, or vice versa.',
01638 'userrights-reason' => 'Reason for change:',
01639 'userrights-no-interwiki' => 'You do not have permission to edit user rights on other wikis.',
01640 'userrights-nodatabase' => 'Database $1 does not exist or is not local.',
01641 'userrights-nologin' => 'You must [[Special:UserLogin|log in]] with an administrator account to assign user rights.',
01642 'userrights-notallowed' => 'Your account does not have permission to assign user rights.',
01643 'userrights-changeable-col' => 'Groups you can change',
01644 'userrights-unchangeable-col' => 'Groups you cannot change',
01645 'userrights-irreversible-marker' => '$1*', # only translate this message to other languages if you have to change it
01646
01647 # Groups
01648 'group' => 'Group:',
01649 'group-user' => 'Users',
01650 'group-autoconfirmed' => 'Autoconfirmed users',
01651 'group-bot' => 'Bots',
01652 'group-sysop' => 'Administrators',
01653 'group-bureaucrat' => 'Bureaucrats',
01654 'group-suppress' => 'Oversights',
01655 'group-all' => '(all)',
01656
01657 'group-user-member' => 'User',
01658 'group-autoconfirmed-member' => 'Autoconfirmed user',
01659 'group-bot-member' => 'Bot',
01660 'group-sysop-member' => 'Administrator',
01661 'group-bureaucrat-member' => 'Bureaucrat',
01662 'group-suppress-member' => 'Oversight',
01663
01664 'grouppage-user' => '{{ns:project}}:Users',
01665 'grouppage-autoconfirmed' => '{{ns:project}}:Autoconfirmed users',
01666 'grouppage-bot' => '{{ns:project}}:Bots',
01667 'grouppage-sysop' => '{{ns:project}}:Administrators',
01668 'grouppage-bureaucrat' => '{{ns:project}}:Bureaucrats',
01669 'grouppage-suppress' => '{{ns:project}}:Oversight',
01670
01671 # Rights
01672 'right-read' => 'Read pages',
01673 'right-edit' => 'Edit pages',
01674 'right-createpage' => 'Create pages (which are not discussion pages)',
01675 'right-createtalk' => 'Create discussion pages',
01676 'right-createaccount' => 'Create new user accounts',
01677 'right-minoredit' => 'Mark edits as minor',
01678 'right-move' => 'Move pages',
01679 'right-move-subpages' => 'Move pages with their subpages',
01680 'right-move-rootuserpages' => 'Move root user pages',
01681 'right-movefile' => 'Move files',
01682 'right-suppressredirect' => 'Not create a redirect from the old name when moving a page',
01683 'right-upload' => 'Upload files',
01684 'right-reupload' => 'Overwrite existing files',
01685 'right-reupload-own' => 'Overwrite existing files uploaded by oneself',
01686 'right-reupload-shared' => 'Override files on the shared media repository locally',
01687 'right-upload_by_url' => 'Upload files from a URL',
01688 'right-purge' => 'Purge the site cache for a page without confirmation',
01689 'right-autoconfirmed' => 'Edit semi-protected pages',
01690 'right-bot' => 'Be treated as an automated process',
01691 'right-nominornewtalk' => 'Not have minor edits to discussion pages trigger the new messages prompt',
01692 'right-apihighlimits' => 'Use higher limits in API queries',
01693 'right-writeapi' => 'Use of the write API',
01694 'right-delete' => 'Delete pages',
01695 'right-bigdelete' => 'Delete pages with large histories',
01696 'right-deleterevision' => 'Delete and undelete specific revisions of pages',
01697 'right-deletedhistory' => 'View deleted history entries, without their associated text',
01698 'right-browsearchive' => 'Search deleted pages',
01699 'right-undelete' => 'Undelete a page',
01700 'right-suppressrevision' => 'Review and restore revisions hidden from administrators',
01701 'right-suppressionlog' => 'View private logs',
01702 'right-block' => 'Block other users from editing',
01703 'right-blockemail' => 'Block a user from sending e-mail',
01704 'right-hideuser' => 'Block a username, hiding it from the public',
01705 'right-ipblock-exempt' => 'Bypass IP blocks, auto-blocks and range blocks',
01706 'right-proxyunbannable' => 'Bypass automatic blocks of proxies',
01707 'right-protect' => 'Change protection levels and edit protected pages',
01708 'right-editprotected' => 'Edit protected pages (without cascading protection)',
01709 'right-editinterface' => 'Edit the user interface',
01710 'right-editusercssjs' => "Edit other users' CSS and JS files",
01711 'right-rollback' => 'Quickly rollback the edits of the last user who edited a particular page',
01712 'right-markbotedits' => 'Mark rolled-back edits as bot edits',
01713 'right-noratelimit' => 'Not be affected by rate limits',
01714 'right-import' => 'Import pages from other wikis',
01715 'right-importupload' => 'Import pages from a file upload',
01716 'right-patrol' => "Mark others' edits as patrolled",
01717 'right-autopatrol' => "Have one's own edits automatically marked as patrolled",
01718 'right-patrolmarks' => 'View recent changes patrol marks',
01719 'right-unwatchedpages' => 'View a list of unwatched pages',
01720 'right-trackback' => 'Submit a trackback',
01721 'right-mergehistory' => 'Merge the history of pages',
01722 'right-userrights' => 'Edit all user rights',
01723 'right-userrights-interwiki' => 'Edit user rights of users on other wikis',
01724 'right-siteadmin' => 'Lock and unlock the database',
01725 'right-reset-passwords' => "Reset other users' passwords",
01726 'right-override-export-depth' => 'Export pages including linked pages up to a depth of 5',
01727
01728 # User rights log
01729 'rightslog' => 'User rights log',
01730 'rightslogtext' => 'This is a log of changes to user rights.',
01731 'rightslogentry' => 'changed group membership for $1 from $2 to $3',
01732 'rightsnone' => '(none)',
01733
01734 # Associated actions - in the sentence "You do not have permission to X"
01735 'action-read' => 'read this page',
01736 'action-edit' => 'edit this page',
01737 'action-createpage' => 'create pages',
01738 'action-createtalk' => 'create discussion pages',
01739 'action-createaccount' => 'create this user account',
01740 'action-minoredit' => 'mark this edit as minor',
01741 'action-move' => 'move this page',
01742 'action-move-subpages' => 'move this page, and its subpages',
01743 'action-move-rootuserpages' => 'move root user pages',
01744 'action-movefile' => 'move this file',
01745 'action-upload' => 'upload this file',
01746 'action-reupload' => 'overwrite this existing file',
01747 'action-reupload-shared' => 'override this file on a shared repository',
01748 'action-upload_by_url' => 'upload this file from a URL',
01749 'action-writeapi' => 'use the write API',
01750 'action-delete' => 'delete this page',
01751 'action-deleterevision' => 'delete this revision',
01752 'action-deletedhistory' => "view this page's deleted history",
01753 'action-browsearchive' => 'search deleted pages',
01754 'action-undelete' => 'undelete this page',
01755 'action-suppressrevision' => 'review and restore this hidden revision',
01756 'action-suppressionlog' => 'view this private log',
01757 'action-block' => 'block this user from editing',
01758 'action-protect' => 'change protection levels for this page',
01759 'action-import' => 'import this page from another wiki',
01760 'action-importupload' => 'import this page from a file upload',
01761 'action-patrol' => "mark others' edit as patrolled",
01762 'action-autopatrol' => 'have your edit marked as patrolled',
01763 'action-unwatchedpages' => 'view the list of unwatched pages',
01764 'action-trackback' => 'submit a trackback',
01765 'action-mergehistory' => 'merge the history of this page',
01766 'action-userrights' => 'edit all user rights',
01767 'action-userrights-interwiki' => 'edit user rights of users on other wikis',
01768 'action-siteadmin' => 'lock or unlock the database',
01769
01770 # Recent changes
01771 'nchanges' => '$1 {{PLURAL:$1|change|changes}}',
01772 'recentchanges' => 'Recent changes',
01773 'recentchanges-url' => 'Special:RecentChanges', # do not translate or duplicate this message to other languages
01774 'recentchanges-legend' => 'Recent changes options',
01775 'recentchangestext' => 'Track the most recent changes to the wiki on this page.',
01776 'recentchanges-feed-description' => 'Track the most recent changes to the wiki in this feed.',
01777 'rcnote' => "Below {{PLURAL:$1|is '''1''' change|are the last '''$1''' changes}} in the last {{PLURAL:$2|day|'''$2''' days}}, as of $5, $4.",
01778 'rcnotefrom' => "Below are the changes since '''$2''' (up to '''$1''' shown).",
01779 'rclistfrom' => 'Show new changes starting from $1',
01780 'rcshowhideminor' => '$1 minor edits',
01781 'rcshowhidebots' => '$1 bots',
01782 'rcshowhideliu' => '$1 logged-in users',
01783 'rcshowhideanons' => '$1 anonymous users',
01784 'rcshowhidepatr' => '$1 patrolled edits',
01785 'rcshowhidemine' => '$1 my edits',
01786 'rclinks' => 'Show last $1 changes in last $2 days<br />$3',
01787 'diff' => 'diff',
01788 'hist' => 'hist',
01789 'hide' => 'Hide',
01790 'show' => 'Show',
01791 'minoreditletter' => 'm',
01792 'newpageletter' => 'N',
01793 'boteditletter' => 'b',
01794 'sectionlink' => '→', # only translate this message to other languages if you have to change it
01795 'number_of_watching_users_RCview' => '[$1]', # do not translate or duplicate this message to other languages
01796 'number_of_watching_users_pageview' => '[$1 watching {{PLURAL:$1|user|users}}]',
01797 'rc_categories' => 'Limit to categories (separate with "|")',
01798 'rc_categories_any' => 'Any',
01799 'rc-change-size' => '$1', # only translate this message to other languages if you have to change it
01800 'newsectionsummary' => '/* $1 */ new section',
01801 'rc-enhanced-expand' => 'Show details (requires JavaScript)',
01802 'rc-enhanced-hide' => 'Hide details',
01803
01804 # Recent changes linked
01805 'recentchangeslinked' => 'Related changes',
01806 'recentchangeslinked-title' => 'Changes related to "$1"',
01807 'recentchangeslinked-backlink' => '← $1', # only translate this message to other languages if you have to change it
01808 'recentchangeslinked-noresult' => 'No changes on linked pages during the given period.',
01809 'recentchangeslinked-summary' => "This is a list of changes made recently to pages linked from a specified page (or to members of a specified category).
01810 Pages on [[Special:Watchlist|your watchlist]] are '''bold'''.",
01811 'recentchangeslinked-page' => 'Page name:',
01812 'recentchangeslinked-to' => 'Show changes to pages linked to the given page instead',
01813
01814 # Upload
01815 'upload' => 'Upload file',
01816 'uploadbtn' => 'Upload file',
01817 'reupload' => 'Re-upload',
01818 'reuploaddesc' => 'Cancel upload and return to the upload form',
01819 'uploadnologin' => 'Not logged in',
01820 'uploadnologintext' => 'You must be [[Special:UserLogin|logged in]] to upload files.',
01821 'upload_directory_missing' => 'The upload directory ($1) is missing and could not be created by the webserver.',
01822 'upload_directory_read_only' => 'The upload directory ($1) is not writable by the webserver.',
01823 'uploaderror' => 'Upload error',
01824 'upload-summary' => '', # do not translate or duplicate this message to other languages
01825 'uploadtext' => "Use the form below to upload files.
01826 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]].
01827
01828 To include a file in a page, use a link in one of the following forms:
01829 * '''<tt><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.jpg]]</nowiki></tt>''' to use the full version of the file
01830 * '''<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
01831 * '''<tt><nowiki>[[</nowiki>{{ns:media}}<nowiki>:File.ogg]]</nowiki></tt>''' for directly linking to the file without displaying the file",
01832 'upload-permitted' => 'Permitted file types: $1.',
01833 'upload-preferred' => 'Preferred file types: $1.',
01834 'upload-prohibited' => 'Prohibited file types: $1.',
01835 'uploadfooter' => '-', # do not translate or duplicate this message to other languages
01836 'uploadlog' => 'upload log',
01837 'uploadlogpage' => 'Upload log',
01838 'uploadlogpagetext' => 'Below is a list of the most recent file uploads.
01839 See the [[Special:NewFiles|gallery of new files]] for a more visual overview.',
01840 'filename' => 'Filename',
01841 'filedesc' => 'Summary',
01842 'fileuploadsummary' => 'Summary:',
01843 'filereuploadsummary' => 'File changes:',
01844 'filestatus' => 'Copyright status:',
01845 'filesource' => 'Source:',
01846 'uploadedfiles' => 'Uploaded files',
01847 'ignorewarning' => 'Ignore warning and save file anyway',
01848 'ignorewarnings' => 'Ignore any warnings',
01849 'minlength1' => 'File names must be at least one letter.',
01850 'illegalfilename' => 'The filename "$1" contains characters that are not allowed in page titles.
01851 Please rename the file and try uploading it again.',
01852 'badfilename' => 'File name has been changed to "$1".',
01853 'filetype-badmime' => 'Files of the MIME type "$1" are not allowed to be uploaded.',
01854 '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.',
01855 'filetype-unwanted-type' => "'''\".\$1\"''' is an unwanted file type.
01856 Preferred {{PLURAL:\$3|file type is|file types are}} \$2.",
01857 'filetype-banned-type' => "'''\".\$1\"''' is not a permitted file type.
01858 Permitted {{PLURAL:\$3|file type is|file types are}} \$2.",
01859 'filetype-missing' => 'The file has no extension (like ".jpg").',
01860 'large-file' => 'It is recommended that files are no larger than $1;
01861 this file is $2.',
01862 'largefileserver' => 'This file is bigger than the server is configured to allow.',
01863 'emptyfile' => 'The file you uploaded seems to be empty.
01864 This might be due to a typo in the file name.
01865 Please check whether you really want to upload this file.',
01866 'fileexists' => "A file with this name exists already, please check '''<tt>$1</tt>''' if you are not sure if you want to change it.",
01867 'filepageexists' => "The description page for this file has already been created at '''<tt>$1</tt>''', but no file with this name currently exists.
01868 The summary you enter will not appear on the description page.
01869 To make your summary appear there, you will need to manually edit it",
01870 'fileexists-extension' => "A file with a similar name exists:<br />
01871 Name of the uploading file: '''<tt>$1</tt>'''<br />
01872 Name of the existing file: '''<tt>$2</tt>'''<br />
01873 Please choose a different name.",
01874 'fileexists-thumb' => "<center>'''Existing file'''</center>",
01875 'fileexists-thumbnail-yes' => "The file seems to be an image of reduced size ''(thumbnail)''.
01876 Please check the file '''<tt>$1</tt>'''.<br />
01877 If the checked file is the same image of original size it is not necessary to upload an extra thumbnail.",
01878 'file-thumbnail-no' => "The filename begins with '''<tt>$1</tt>'''.
01879 It seems to be an image of reduced size ''(thumbnail)''.
01880 If you have this image in full resolution upload this one, otherwise change the file name please.",
01881 'fileexists-forbidden' => 'A file with this name already exists, and cannot be overwritten.
01882 If you still want to upload your file, please go back and use a new name. [[File:$1|thumb|center|$1]]',
01883 'fileexists-shared-forbidden' => 'A file with this name exists already in the shared file repository.
01884 If you still want to upload your file, please go back and use a new name. [[File:$1|thumb|center|$1]]',
01885 'file-exists-duplicate' => 'This file is a duplicate of the following {{PLURAL:$1|file|files}}:',
01886 'file-deleted-duplicate' => "A file identical to this file ([[$1]]) has previously been deleted.
01887 You should check that file's deletion history before proceeding to re-upload it.",
01888 'successfulupload' => 'Successful upload',
01889 'uploadwarning' => 'Upload warning',
01890 'savefile' => 'Save file',
01891 'uploadedimage' => 'uploaded "[[$1]]"',
01892 'overwroteimage' => 'uploaded a new version of "[[$1]]"',
01893 'uploaddisabled' => 'Uploads disabled',
01894 'uploaddisabledtext' => 'File uploads are disabled.',
01895 'php-uploaddisabledtext' => 'File uploads are disabled in PHP.
01896 Please check the file_uploads setting.',
01897 'uploadscripted' => 'This file contains HTML or script code that may be erroneously interpreted by a web browser.',
01898 'uploadcorrupt' => 'The file is corrupt or has an incorrect extension.
01899 Please check the file and upload again.',
01900 'uploadvirus' => 'The file contains a virus! Details: $1',
01901 'sourcefilename' => 'Source filename:',
01902 'destfilename' => 'Destination filename:',
01903 'upload-maxfilesize' => 'Maximum file size: $1',
01904 'watchthisupload' => 'Watch this file',
01905 'filewasdeleted' => 'A file of this name has been previously uploaded and subsequently deleted.
01906 You should check the $1 before proceeding to upload it again.',
01907 'upload-wasdeleted' => "'''Warning: You are uploading a file that was previously deleted.'''
01908
01909 You should consider whether it is appropriate to continue uploading this file.
01910 The deletion log for this file is provided here for convenience:",
01911 '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.
01912 Please choose a more descriptive name for your file.",
01913 'filename-prefix-blacklist' => ' #<!-- leave this line exactly as it is --> <pre>
01914 # Syntax is as follows:
01915 # * Everything from a "#" character to the end of the line is a comment
01916 # * Every non-blank line is a prefix for typical file names assigned automatically by digital cameras
01917 CIMG # Casio
01918 DSC_ # Nikon
01919 DSCF # Fuji
01920 DSCN # Nikon
01921 DUW # some mobile phones
01922 IMG # generic
01923 JD # Jenoptik
01924 MGP # Pentax
01925 PICT # misc.
01926 #</pre> <!-- leave this line exactly as it is -->', # only translate this message to other languages if you have to change it
01927
01928 'upload-proto-error' => 'Incorrect protocol',
01929 'upload-proto-error-text' => 'Remote upload requires URLs beginning with <code>http://</code> or <code>ftp://</code>.',
01930 'upload-file-error' => 'Internal error',
01931 'upload-file-error-text' => 'An internal error occurred when attempting to create a temporary file on the server.
01932 Please contact an [[Special:ListUsers/sysop|administrator]].',
01933 'upload-misc-error' => 'Unknown upload error',
01934 'upload-misc-error-text' => 'An unknown error occurred during the upload.
01935 Please verify that the URL is valid and accessible and try again.
01936 If the problem persists, contact an [[Special:ListUsers/sysop|administrator]].',
01937
01938 # Some likely curl errors. More could be added from <http://curl.haxx.se/libcurl/c/libcurl-errors.html>
01939 'upload-curl-error6' => 'Could not reach URL',
01940 'upload-curl-error6-text' => 'The URL provided could not be reached.
01941 Please double-check that the URL is correct and the site is up.',
01942 'upload-curl-error28' => 'Upload timeout',
01943 'upload-curl-error28-text' => 'The site took too long to respond.
01944 Please check the site is up, wait a short while and try again.
01945 You may want to try at a less busy time.',
01946
01947 'license' => 'Licensing:',
01948 'nolicense' => 'None selected',
01949 'licenses' => '-', # do not translate or duplicate this message to other languages
01950 'license-nopreview' => '(Preview not available)',
01951 'upload_source_url' => ' (a valid, publicly accessible URL)',
01952 'upload_source_file' => ' (a file on your computer)',
01953
01954 # Special:ListFiles
01955 'listfiles-summary' => 'This special page shows all uploaded files.
01956 By default the last uploaded files are shown at top of the list.
01957 A click on a column header changes the sorting.',
01958 'listfiles_search_for' => 'Search for media name:',
01959 'imgfile' => 'file',
01960 'listfiles' => 'File list',
01961 'listfiles_date' => 'Date',
01962 'listfiles_name' => 'Name',
01963 'listfiles_user' => 'User',
01964 'listfiles_size' => 'Size',
01965 'listfiles_description' => 'Description',
01966 'listfiles_count' => 'Versions',
01967
01968 # File description page
01969 'filehist' => 'File history',
01970 'filehist-help' => 'Click on a date/time to view the file as it appeared at that time.',
01971 'filehist-deleteall' => 'delete all',
01972 'filehist-deleteone' => 'delete',
01973 'filehist-revert' => 'revert',
01974 'filehist-current' => 'current',
01975 'filehist-datetime' => 'Date/Time',
01976 'filehist-thumb' => 'Thumbnail',
01977 'filehist-thumbtext' => 'Thumbnail for version as of $1',
01978 'filehist-nothumb' => 'No thumbnail',
01979 'filehist-user' => 'User',
01980 'filehist-dimensions' => 'Dimensions',
01981 'filehist-filesize' => 'File size',
01982 'filehist-comment' => 'Comment',
01983 'imagelinks' => 'File links',
01984 'linkstoimage' => 'The following {{PLURAL:$1|page links|$1 pages link}} to this file:',
01985 'linkstoimage-more' => 'More than $1 {{PLURAL:$1|page links|pages link}} to this file.
01986 The following list shows the {{PLURAL:$1|first page link|first $1 page links}} to this file only.
01987 A [[Special:WhatLinksHere/$2|full list]] is available.',
01988 'nolinkstoimage' => 'There are no pages that link to this file.',
01989 'morelinkstoimage' => 'View [[Special:WhatLinksHere/$1|more links]] to this file.',
01990 'redirectstofile' => 'The following {{PLURAL:$1|file redirects|$1 files redirect}} to this file:',
01991 'duplicatesoffile' => 'The following {{PLURAL:$1|file is a duplicate|$1 files are duplicates}} of this file ([[Special:FileDuplicateSearch/$2|more details]]):',
01992 'sharedupload' => 'This file is from $1 and may be used by other projects. $2', # $1 is the repo name, $2 is shareduploadwiki(-desc)
01993 'shareduploadwiki' => 'Please see the $1 for further information.',
01994 'shareduploadwiki-desc' => 'The description on its $1 there is shown below.',
01995 'shareduploadwiki-linktext' => 'file description page',
01996 'shareddescriptionfollows' => '-', # do not translate or duplicate this message to other languages
01997 'noimage' => 'No file by this name exists, but you can $1.',
01998 'noimage-linktext' => 'upload one',
01999 'uploadnewversion-linktext' => 'Upload a new version of this file',
02000 'shared-repo-from' => 'from $1', # $1 is the repository name
02001 'shared-repo' => 'a shared repository', # used when shared-repo-NAME does not exist
02002
02003 # File reversion
02004 'filerevert' => 'Revert $1',
02005 'filerevert-backlink' => '← $1', # only translate this message to other languages if you have to change it
02006 'filerevert-legend' => 'Revert file',
02007 'filerevert-intro' => "You are about to revert the file '''[[Media:$1|$1]]''' to the [$4 version as of $3, $2].",
02008 'filerevert-comment' => 'Comment:',
02009 'filerevert-defaultcomment' => 'Reverted to version as of $2, $1',
02010 'filerevert-submit' => 'Revert',
02011 'filerevert-success' => "'''[[Media:$1|$1]]''' has been reverted to the [$4 version as of $3, $2].",
02012 'filerevert-badversion' => 'There is no previous local version of this file with the provided timestamp.',
02013
02014 # File deletion
02015 'filedelete' => 'Delete $1',
02016 'filedelete-backlink' => '← $1', # only translate this message to other languages if you have to change it
02017 'filedelete-legend' => 'Delete file',
02018 'filedelete-intro' => "You are about to delete the file '''[[Media:$1|$1]]''' along with all of its history.",
02019 'filedelete-intro-old' => "You are deleting the version of '''[[Media:$1|$1]]''' as of [$4 $3, $2].",
02020 'filedelete-comment' => 'Reason for deletion:',
02021 'filedelete-submit' => 'Delete',
02022 'filedelete-success' => "'''$1''' has been deleted.",
02023 'filedelete-success-old' => "The version of '''[[Media:$1|$1]]''' as of $3, $2 has been deleted.",
02024 'filedelete-nofile' => "'''$1''' does not exist.",
02025 'filedelete-nofile-old' => "There is no archived version of '''$1''' with the specified attributes.",
02026 'filedelete-otherreason' => 'Other/additional reason:',
02027 'filedelete-reason-otherlist' => 'Other reason',
02028 'filedelete-reason-dropdown' => '*Common delete reasons
02029 ** Copyright violation
02030 ** Duplicated file',
02031 'filedelete-edit-reasonlist' => 'Edit delete reasons',
02032
02033 # MIME search
02034 'mimesearch' => 'MIME search',
02035 'mimesearch-summary' => 'This page enables the filtering of files for its MIME-type.
02036 Input: contenttype/subtype, e.g. <tt>image/jpeg</tt>.',
02037 'mimetype' => 'MIME type:',
02038 'download' => 'download',
02039
02040 # Unwatched pages
02041 'unwatchedpages' => 'Unwatched pages',
02042 'unwatchedpages-summary' => '', # do not translate or duplicate this message to other languages
02043
02044 # List redirects
02045 'listredirects' => 'List of redirects',
02046 'listredirects-summary' => '', # do not translate or duplicate this message to other languages
02047
02048 # Unused templates
02049 'unusedtemplates' => 'Unused templates',
02050 'unusedtemplates-summary' => '', # do not translate or duplicate this message to other languages
02051 'unusedtemplatestext' => 'This page lists all pages in the {{ns:template}} namespace which are not included in another page.
02052 Remember to check for other links to the templates before deleting them.',
02053 'unusedtemplateswlh' => 'other links',
02054
02055 # Random page
02056 'randompage' => 'Random page',
02057 'randompage-nopages' => 'There are no pages in the namespace "$1".',
02058 'randompage-url' => 'Special:Random', # do not translate or duplicate this message to other languages
02059
02060 # Random redirect
02061 'randomredirect' => 'Random redirect',
02062 'randomredirect-nopages' => 'There are no redirects in the namespace "$1".',
02063
02064 # Statistics
02065 'statistics' => 'Statistics',
02066 'statistics-summary' => '', # do not translate or duplicate this message to other languages
02067 'statistics-header-pages' => 'Page statistics',
02068 'statistics-header-edits' => 'Edit statistics',
02069 'statistics-header-views' => 'View statistics',
02070 'statistics-header-users' => 'User statistics',
02071 'statistics-articles' => 'Content pages',
02072 'statistics-pages' => 'Pages',
02073 'statistics-pages-desc' => 'All pages in the wiki, including talk pages, redirects, etc.',
02074 'statistics-files' => 'Uploaded files',
02075 'statistics-edits' => 'Page edits since {{SITENAME}} was set up',
02076 'statistics-edits-average' => 'Average edits per page',
02077 'statistics-views-total' => 'Views total',
02078 'statistics-views-peredit' => 'Views per edit',
02079 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Job queue] length',
02080 'statistics-users' => 'Registered [[Special:ListUsers|users]]',
02081 'statistics-users-active' => 'Active users',
02082 'statistics-users-active-desc' => 'Users who have performed an action in the last {{PLURAL:$1|day|$1 days}}',
02083 'statistics-mostpopular' => 'Most viewed pages',
02084 'statistics-footer' => '', # do not translate or duplicate this message to other languages
02085
02086 'disambiguations' => 'Disambiguation pages',
02087 'disambiguations-summary' => '', # do not translate or duplicate this message to other languages
02088 'disambiguationspage' => 'Template:disambig',
02089 'disambiguations-text' => "The following pages link to a '''disambiguation page'''.
02090 They should link to the appropriate topic instead.<br />
02091 A page is treated as disambiguation page if it uses a template which is linked from [[MediaWiki:Disambiguationspage]]",
02092
02093 'doubleredirects' => 'Double redirects',
02094 'doubleredirects-summary' => '', # do not translate or duplicate this message to other languages
02095 'doubleredirectstext' => 'This page lists pages which redirect to other redirect pages.
02096 Each row contains links to the first and second redirect, as well as the target of the second redirect, which is usually "real" target page, which the first redirect should point to.',
02097 'double-redirect-fixed-move' => '[[$1]] has been moved.
02098 It now redirects to [[$2]].',
02099 'double-redirect-fixer' => 'Redirect fixer',
02100
02101 'brokenredirects' => 'Broken redirects',
02102 'brokenredirects-summary' => '', # do not translate or duplicate this message to other languages
02103 'brokenredirectstext' => 'The following redirects link to non-existent pages:',
02104 'brokenredirects-edit' => '(edit)',
02105 'brokenredirects-delete' => '(delete)',
02106
02107 'withoutinterwiki' => 'Pages without language links',
02108 'withoutinterwiki-summary' => 'The following pages do not link to other language versions.',
02109 'withoutinterwiki-legend' => 'Prefix',
02110 'withoutinterwiki-submit' => 'Show',
02111
02112 'fewestrevisions' => 'Pages with the fewest revisions',
02113 'fewestrevisions-summary' => '', # do not translate or duplicate this message to other languages
02114
02115 # Miscellaneous special pages
02116 'nbytes' => '$1 {{PLURAL:$1|byte|bytes}}',
02117 'ncategories' => '$1 {{PLURAL:$1|category|categories}}',
02118 'nlinks' => '$1 {{PLURAL:$1|link|links}}',
02119 'nmembers' => '$1 {{PLURAL:$1|member|members}}',
02120 'nrevisions' => '$1 {{PLURAL:$1|revision|revisions}}',
02121 'nviews' => '$1 {{PLURAL:$1|view|views}}',
02122 'specialpage-empty' => 'There are no results for this report.',
02123 'lonelypages' => 'Orphaned pages',
02124 'lonelypages-summary' => '', # do not translate or duplicate this message to other languages
02125 'lonelypagestext' => 'The following pages are not linked from or transcluded into other pages in {{SITENAME}}.',
02126 'uncategorizedpages' => 'Uncategorized pages',
02127 'uncategorizedpages-summary' => '', # do not translate or duplicate this message to other languages
02128 'uncategorizedcategories' => 'Uncategorized categories',
02129 'uncategorizedcategories-summary' => '', # do not translate or duplicate this message to other languages
02130 'uncategorizedimages' => 'Uncategorized files',
02131 'uncategorizedimages-summary' => '', # do not translate or duplicate this message to other languages
02132 'uncategorizedtemplates' => 'Uncategorized templates',
02133 'uncategorizedtemplates-summary' => '', # do not translate or duplicate this message to other languages
02134 'unusedcategories' => 'Unused categories',
02135 'unusedimages' => 'Unused files',
02136 'popularpages' => 'Popular pages',
02137 'popularpages-summary' => '', # do not translate or duplicate this message to other languages
02138 'wantedcategories' => 'Wanted categories',
02139 'wantedcategories-summary' => '', # do not translate or duplicate this message to other languages
02140 'wantedpages' => 'Wanted pages',
02141 'wantedpages-summary' => '', # do not translate or duplicate this message to other languages
02142 'wantedpages-badtitle' => 'Invalid title in result set: $1',
02143 'wantedfiles' => 'Wanted files',
02144 'wantedfiles-summary' => '', # do not translate or duplicate this message to other languages
02145 'wantedtemplates' => 'Wanted templates',
02146 'wantedtemplates-summary' => '', # do not translate or duplicate this message to other languages
02147 'mostlinked' => 'Most linked-to pages',
02148 'mostlinked-summary' => '', # do not translate or duplicate this message to other languages
02149 'mostlinkedcategories' => 'Most linked-to categories',
02150 'mostlinkedcategories-summary' => '', # do not translate or duplicate this message to other languages
02151 'mostlinkedtemplates' => 'Most linked-to templates',
02152 'mostlinkedtemplates-summary' => '', # do not translate or duplicate this message to other languages
02153 'mostcategories' => 'Pages with the most categories',
02154 'mostcategories-summary' => '', # do not translate or duplicate this message to other languages
02155 'mostimages' => 'Most linked-to files',
02156 'mostimages-summary' => '', # do not translate or duplicate this message to other languages
02157 'mostrevisions' => 'Pages with the most revisions',
02158 'mostrevisions-summary' => '', # do not translate or duplicate this message to other languages
02159 'prefixindex' => 'All pages with prefix',
02160 'prefixindex-summary' => '', # do not translate or duplicate this message to other languages
02161 'shortpages' => 'Short pages',
02162 'shortpages-summary' => '', # do not translate or duplicate this message to other languages
02163 'longpages' => 'Long pages',
02164 'longpages-summary' => '', # do not translate or duplicate this message to other languages
02165 'deadendpages' => 'Dead-end pages',
02166 'deadendpages-summary' => '', # do not translate or duplicate this message to other languages
02167 'deadendpagestext' => 'The following pages do not link to other pages in {{SITENAME}}.',
02168 'protectedpages' => 'Protected pages',
02169 'protectedpages-indef' => 'Indefinite protections only',
02170 'protectedpages-summary' => '', # do not translate or duplicate this message to other languages
02171 'protectedpages-cascade' => 'Cascading protections only',
02172 'protectedpagestext' => 'The following pages are protected from moving or editing',
02173 'protectedpagesempty' => 'No pages are currently protected with these parameters.',
02174 'protectedtitles' => 'Protected titles',
02175 'protectedtitles-summary' => '', # do not translate or duplicate this message to other languages
02176 'protectedtitlestext' => 'The following titles are protected from creation',
02177 'protectedtitlesempty' => 'No titles are currently protected with these parameters.',
02178 'listusers' => 'User list',
02179 'listusers-summary' => '', # do not translate or duplicate this message to other languages
02180 'listusers-editsonly' => 'Show only users with edits',
02181 'listusers-creationsort' => 'Sort by creation date',
02182 'usereditcount' => '$1 {{PLURAL:$1|edit|edits}}',
02183 'usercreated' => 'Created on $1 at $2',
02184 'newpages' => 'New pages',
02185 'newpages-summary' => '', # do not translate or duplicate this message to other languages
02186 'newpages-username' => 'Username:',
02187 'ancientpages' => 'Oldest pages',
02188 'ancientpages-summary' => '', # do not translate or duplicate this message to other languages
02189 'move' => 'Move',
02190 'movethispage' => 'Move this page',
02191 'unusedimagestext' => '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.',
02192 'unusedcategoriestext' => 'The following category pages exist, although no other page or category makes use of them.',
02193 'notargettitle' => 'No target',
02194 'notargettext' => 'You have not specified a target page or user to perform this function on.',
02195 'nopagetitle' => 'No such target page',
02196 'nopagetext' => 'The target page you have specified does not exist.',
02197 'pager-newer-n' => '{{PLURAL:$1|newer 1|newer $1}}',
02198 'pager-older-n' => '{{PLURAL:$1|older 1|older $1}}',
02199 'suppress' => 'Oversight',
02200
02201 # Book sources
02202 'booksources' => 'Book sources',
02203 'booksources-summary' => '', # do not translate or duplicate this message to other languages
02204 'booksources-search-legend' => 'Search for book sources',
02205 'booksources-isbn' => 'ISBN:', # only translate this message to other languages if you have to change it
02206 'booksources-go' => 'Go',
02207 '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:',
02208 'booksources-invalid-isbn' => 'The given ISBN does not appear to be valid; check for errors copying from the original source.',
02209
02210 # Magic words
02211 'rfcurl' => 'http://tools.ietf.org/html/rfc$1', # do not translate or duplicate this message to other languages
02212 'pubmedurl' => 'http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=pubmed&dopt=Abstract&list_uids=$1', # do not translate or duplicate this message to other languages
02213
02214 # Special:Log
02215 'specialloguserlabel' => 'User:',
02216 'speciallogtitlelabel' => 'Title:',
02217 'log' => 'Logs',
02218 'all-logs-page' => 'All public logs',
02219 'alllogstext' => 'Combined display of all available logs of {{SITENAME}}.
02220 You can narrow down the view by selecting a log type, the user name (case-sensitive), or the affected page (also case-sensitive).',
02221 'logempty' => 'No matching items in log.',
02222 'log-title-wildcard' => 'Search titles starting with this text',
02223
02224 # Special:AllPages
02225 'allpages' => 'All pages',
02226 'allpages-summary' => '', # do not translate or duplicate this message to other languages
02227 'alphaindexline' => '$1 to $2',
02228 'nextpage' => 'Next page ($1)',
02229 'prevpage' => 'Previous page ($1)',
02230 'allpagesfrom' => 'Display pages starting at:',
02231 'allpagesto' => 'Display pages ending at:',
02232 'allarticles' => 'All pages',
02233 'allinnamespace' => 'All pages ($1 namespace)',
02234 'allnotinnamespace' => 'All pages (not in $1 namespace)',
02235 'allpagesprev' => 'Previous',
02236 'allpagesnext' => 'Next',
02237 'allpagessubmit' => 'Go',
02238 'allpagesprefix' => 'Display pages with prefix:',
02239 'allpagesbadtitle' => 'The given page title was invalid or had an inter-language or inter-wiki prefix.
02240 It may contain one or more characters which cannot be used in titles.',
02241 'allpages-bad-ns' => '{{SITENAME}} does not have namespace "$1".',
02242
02243 # Special:Categories
02244 'categories' => 'Categories',
02245 'categories-summary' => '', # do not translate or duplicate this message to other languages
02246 'categoriespagetext' => 'The following categories contain pages or media.
02247 [[Special:UnusedCategories|Unused categories]] are not shown here.
02248 Also see [[Special:WantedCategories|wanted categories]].',
02249 'categoriesfrom' => 'Display categories starting at:',
02250 'special-categories-sort-count' => 'sort by count',
02251 'special-categories-sort-abc' => 'sort alphabetically',
02252
02253 # Special:DeletedContributions
02254 'deletedcontributions' => 'Deleted user contributions',
02255 'deletedcontributions-title' => 'Deleted user contributions',
02256
02257 # Special:LinkSearch
02258 'linksearch' => 'External links',
02259 'linksearch-pat' => 'Search pattern:',
02260 'linksearch-ns' => 'Namespace:',
02261 'linksearch-ok' => 'Search',
02262 'linksearch-text' => 'Wildcards such as "*.wikipedia.org" may be used.<br />
02263 Supported protocols: <tt>$1</tt>',
02264 'linksearch-line' => '$1 is linked from $2',
02265 'linksearch-error' => 'Wildcards may appear only at the start of the hostname.',
02266
02267 # Special:ListUsers
02268 'listusersfrom' => 'Display users starting at:',
02269 'listusers-submit' => 'Show',
02270 'listusers-noresult' => 'No user found.',
02271
02272 # Special:Log/newusers
02273 'newuserlogpage' => 'User creation log',
02274 'newuserlogpagetext' => 'This is a log of user creations.',
02275 'newuserlogentry' => '', # do not translate or duplicate this message to other languages
02276 'newuserlog-byemail' => 'password sent by e-mail',
02277 'newuserlog-create-entry' => 'New user account',
02278 'newuserlog-create2-entry' => 'created new account $1',
02279 'newuserlog-autocreate-entry' => 'Account created automatically',
02280
02281 # Special:ListGroupRights
02282 'listgrouprights' => 'User group rights',
02283 'listgrouprights-summary' => 'The following is a list of user groups defined on this wiki, with their associated access rights.
02284 There may be [[{{MediaWiki:Listgrouprights-helppage}}|additional information]] about individual rights.',
02285 'listgrouprights-group' => 'Group',
02286 'listgrouprights-rights' => 'Rights',
02287 'listgrouprights-helppage' => 'Help:Group rights',
02288 'listgrouprights-members' => '(list of members)',
02289 'listgrouprights-right-display' => '$1 ($2)', # only translate this message to other languages if you have to change it
02290 'listgrouprights-addgroup' => 'Can add {{PLURAL:$2|group|groups}}: $1',
02291 'listgrouprights-removegroup' => 'Can remove {{PLURAL:$2|group|groups}}: $1',
02292 'listgrouprights-addgroup-all' => 'Can add all groups',
02293 'listgrouprights-removegroup-all' => 'Can remove all groups',
02294
02295 # E-mail user
02296 'mailnologin' => 'No send address',
02297 '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.',
02298 'emailuser' => 'E-mail this user',
02299 'emailpage' => 'E-mail user',
02300 'emailpagetext' => 'You can use the form below to send an e-mail message to this user.
02301 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.',
02302 'usermailererror' => 'Mail object returned error:',
02303 'defemailsubject' => '{{SITENAME}} e-mail',
02304 'noemailtitle' => 'No e-mail address',
02305 'noemailtext' => 'This user has not specified a valid e-mail address.',
02306 'nowikiemailtitle' => 'No e-mail allowed',
02307 'nowikiemailtext' => 'This user has chosen not to receive e-mail from other users.',
02308 'email-legend' => 'Send an e-mail to another {{SITENAME}} user',
02309 'emailfrom' => 'From:',
02310 'emailto' => 'To:',
02311 'emailsubject' => 'Subject:',
02312 'emailmessage' => 'Message:',
02313 'emailsend' => 'Send',
02314 'emailccme' => 'E-mail me a copy of my message.',
02315 'emailccsubject' => 'Copy of your message to $1: $2',
02316 'emailsent' => 'E-mail sent',
02317 'emailsenttext' => 'Your e-mail message has been sent.',
02318 'emailuserfooter' => 'This e-mail was sent by $1 to $2 by the "E-mail user" function at {{SITENAME}}.',
02319
02320 # Watchlist
02321 'watchlist' => 'My watchlist',
02322 'mywatchlist' => 'My watchlist',
02323 'watchlistfor' => "(for '''$1''')",
02324 'nowatchlist' => 'You have no items on your watchlist.',
02325 'watchlistanontext' => 'Please $1 to view or edit items on your watchlist.',
02326 'watchnologin' => 'Not logged in',
02327 'watchnologintext' => 'You must be [[Special:UserLogin|logged in]] to modify your watchlist.',
02328 'addedwatch' => 'Added to watchlist',
02329 'addedwatchtext' => "The page \"[[:\$1]]\" has been added to your [[Special:Watchlist|watchlist]].
02330 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.",
02331 'removedwatch' => 'Removed from watchlist',
02332 'removedwatchtext' => 'The page "[[:$1]]" has been removed from [[Special:Watchlist|your watchlist]].',
02333 'watch' => 'Watch',
02334 'watchthispage' => 'Watch this page',
02335 'unwatch' => 'Unwatch',
02336 'unwatchthispage' => 'Stop watching',
02337 'notanarticle' => 'Not a content page',
02338 'notvisiblerev' => 'Revision has been deleted',
02339 'watchnochange' => 'None of your watched items were edited in the time period displayed.',
02340 'watchlist-details' => '{{PLURAL:$1|$1 page|$1 pages}} on your watchlist, not counting talk pages.',
02341 'wlheader-enotif' => '* E-mail notification is enabled.',
02342 'wlheader-showupdated' => "* Pages which have been changed since you last visited them are shown in '''bold'''",
02343 'watchmethod-recent' => 'checking recent edits for watched pages',
02344 'watchmethod-list' => 'checking watched pages for recent edits',
02345 'watchlistcontains' => 'Your watchlist contains $1 {{PLURAL:$1|page|pages}}.',
02346 'iteminvalidname' => "Problem with item '$1', invalid name…",
02347 'wlnote' => "Below {{PLURAL:$1|is the last change|are the last '''$1''' changes}} in the last {{PLURAL:$2|hour|'''$2''' hours}}.",
02348 'wlshowlast' => 'Show last $1 hours $2 days $3',
02349 'watchlist-options' => 'Watchlist options',
02350
02351 # Displayed when you click the "watch" button and it is in the process of watching
02352 'watching' => 'Watching…',
02353 'unwatching' => 'Unwatching…',
02354
02355 'enotif_mailer' => '{{SITENAME}} Notification Mailer',
02356 'enotif_reset' => 'Mark all pages visited',
02357 'enotif_newpagetext' => 'This is a new page.',
02358 'enotif_impersonal_salutation' => '{{SITENAME}} user',
02359 'changed' => 'changed',
02360 'created' => 'created',
02361 'enotif_subject' => '{{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED by $PAGEEDITOR',
02362 'enotif_lastvisited' => 'See $1 for all changes since your last visit.',
02363 'enotif_lastdiff' => 'See $1 to view this change.',
02364 'enotif_anon_editor' => 'anonymous user $1',
02365 'enotif_body' => 'Dear $WATCHINGUSERNAME,
02366
02367
02368 The {{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED on $PAGEEDITDATE by $PAGEEDITOR, see $PAGETITLE_URL for the current version.
02369
02370 $NEWPAGE
02371
02372 Editor\'s summary: $PAGESUMMARY $PAGEMINOREDIT
02373
02374 Contact the editor:
02375 mail: $PAGEEDITOR_EMAIL
02376 wiki: $PAGEEDITOR_WIKI
02377
02378 There will be no other notifications in case of further changes unless you visit this page.
02379 You could also reset the notification flags for all your watched pages on your watchlist.
02380
02381 Your friendly {{SITENAME}} notification system
02382
02383 --
02384 To change your watchlist settings, visit
02385 {{fullurl:{{ns:special}}:Watchlist/edit}}
02386
02387 Feedback and further assistance:
02388 {{fullurl:{{MediaWiki:Helppage}}}}',
02389
02390 # Delete
02391 'deletepage' => 'Delete page',
02392 'confirm' => 'Confirm',
02393 'excontent' => "content was: '$1'",
02394 'excontentauthor' => "content was: '$1' (and the only contributor was '[[Special:Contributions/$2|$2]]')",
02395 'exbeforeblank' => "content before blanking was: '$1'",
02396 'exblank' => 'page was empty',
02397 'delete-confirm' => 'Delete "$1"',
02398 'delete-backlink' => '← $1', # only translate this message to other languages if you have to change it
02399 'delete-legend' => 'Delete',
02400 'historywarning' => "'''Warning:''' The page you are about to delete has a history:",
02401 'confirmdeletetext' => 'You are about to delete a page along with all of its history.
02402 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]].',
02403 'actioncomplete' => 'Action complete',
02404 'deletedtext' => '"<nowiki>$1</nowiki>" has been deleted.
02405 See $2 for a record of recent deletions.',
02406 'deletedarticle' => 'deleted "[[$1]]"',
02407 'suppressedarticle' => 'suppressed "[[$1]]"',
02408 'dellogpage' => 'Deletion log',
02409 'dellogpagetext' => 'Below is a list of the most recent deletions.',
02410 'deletionlog' => 'deletion log',
02411 'reverted' => 'Reverted to earlier revision',
02412 'deletecomment' => 'Reason for deletion:',
02413 'deleteotherreason' => 'Other/additional reason:',
02414 'deletereasonotherlist' => 'Other reason',
02415 'deletereason-dropdown' => '*Common delete reasons
02416 ** Author request
02417 ** Copyright violation
02418 ** Vandalism',
02419 'delete-edit-reasonlist' => 'Edit deletion reasons',
02420 'delete-toobig' => 'This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.
02421 Deletion of such pages has been restricted to prevent accidental disruption of {{SITENAME}}.',
02422 'delete-warning-toobig' => 'This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.
02423 Deleting it may disrupt database operations of {{SITENAME}};
02424 proceed with caution.',
02425
02426 # Rollback
02427 'rollback' => 'Roll back edits',
02428 'rollback_short' => 'Rollback',
02429 'rollbacklink' => 'rollback',
02430 'rollbackfailed' => 'Rollback failed',
02431 'cantrollback' => 'Cannot revert edit;
02432 last contributor is only author of this page.',
02433 'alreadyrolled' => 'Cannot rollback last edit of [[:$1]] by [[User:$2|$2]] ([[User talk:$2|Talk]]{{int:pipe-separator}}[[Special:Contributions/$2|{{int:contribslink}}]]);
02434 someone else has edited or rolled back the page already.
02435
02436 The last edit to the page was by [[User:$3|$3]] ([[User talk:$3|Talk]]{{int:pipe-separator}}[[Special:Contributions/$3|{{int:contribslink}}]]).',
02437 'editcomment' => "The edit summary was: \"''\$1''\".", # only shown if there is an edit comment
02438 '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
02439 'rollback-success' => 'Reverted edits by $1;
02440 changed back to last revision by $2.',
02441 'sessionfailure' => 'There seems to be a problem with your login session;
02442 this action has been canceled as a precaution against session hijacking.
02443 Please hit "back" and reload the page you came from, then try again.',
02444
02445 # Protect
02446 'protectlogpage' => 'Protection log',
02447 'protectlogtext' => 'Below is a list of page locks and unlocks.
02448 See the [[Special:ProtectedPages|protected pages list]] for the list of currently operational page protections.',
02449 'protectedarticle' => 'protected "[[$1]]"',
02450 'modifiedarticleprotection' => 'changed protection level for "[[$1]]"',
02451 'unprotectedarticle' => 'unprotected "[[$1]]"',
02452 'movedarticleprotection' => 'moved protection settings from "[[$2]]" to "[[$1]]"',
02453 'protect-title' => 'Change protection level for "$1"',
02454 'prot_1movedto2' => '[[$1]] moved to [[$2]]',
02455 'protect-backlink' => '← $1', # only translate this message to other languages if you have to change it
02456 'protect-legend' => 'Confirm protection',
02457 'protectcomment' => 'Comment:',
02458 'protectexpiry' => 'Expires:',
02459 'protect_expiry_invalid' => 'Expiry time is invalid.',
02460 'protect_expiry_old' => 'Expiry time is in the past.',
02461 'protect-unchain' => 'Unlock move permissions',
02462 'protect-text' => "You may view and change the protection level here for the page '''<nowiki>$1</nowiki>'''.",
02463 'protect-locked-blocked' => "You cannot change protection levels while blocked.
02464 Here are the current settings for the page '''$1''':",
02465 'protect-locked-dblock' => "Protection levels cannot be changed due to an active database lock.
02466 Here are the current settings for the page '''$1''':",
02467 'protect-locked-access' => "Your account does not have permission to change page protection levels.
02468 Here are the current settings for the page '''$1''':",
02469 '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.
02470 You can change this page's protection level, but it will not affect the cascading protection.",
02471 'protect-default' => 'Allow all users',
02472 'protect-fallback' => 'Require "$1" permission',
02473 'protect-level-autoconfirmed' => 'Block new and unregistered users',
02474 'protect-level-sysop' => 'Administrators only',
02475 'protect-summary-cascade' => 'cascading',
02476 'protect-expiring' => 'expires $1 (UTC)',
02477 'protect-expiry-indefinite' => 'indefinite',
02478 'protect-cascade' => 'Protect pages included in this page (cascading protection)',
02479 'protect-cantedit' => 'You cannot change the protection levels of this page, because you do not have permission to edit it.',
02480 'protect-othertime' => 'Other time:',
02481 'protect-othertime-op' => 'other time',
02482 'protect-existing-expiry' => 'Existing expiry time: $3, $2',
02483 'protect-otherreason' => 'Other/additional reason:',
02484 'protect-otherreason-op' => 'other/additional reason',
02485 'protect-dropdown' => '*Common protection reasons
02486 ** Excessive vandalism
02487 ** Excessive spamming
02488 ** Counter-productive edit warring
02489 ** High traffic page',
02490 'protect-edit-reasonlist' => 'Edit protection reasons',
02491 '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,...
02492 'restriction-type' => 'Permission:',
02493 'restriction-level' => 'Restriction level:',
02494 'minimum-size' => 'Min size',
02495 'maximum-size' => 'Max size:',
02496 'pagesize' => '(bytes)',
02497
02498 # Restrictions (nouns)
02499 'restriction-edit' => 'Edit',
02500 'restriction-move' => 'Move',
02501 'restriction-create' => 'Create',
02502 'restriction-upload' => 'Upload',
02503
02504 # Restriction levels
02505 'restriction-level-sysop' => 'fully protected',
02506 'restriction-level-autoconfirmed' => 'semi protected',
02507 'restriction-level-all' => 'any level',
02508
02509 # Undelete
02510 'undelete' => 'View deleted pages',
02511 'undeletepage' => 'View and restore deleted pages',
02512 'undeletepagetitle' => "'''The following consists of deleted revisions of [[:$1|$1]]'''.",
02513 'viewdeletedpage' => 'View deleted pages',
02514 '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.
02515 The archive may be periodically cleaned out.',
02516 'undelete-fieldset-title' => 'Restore revisions',
02517 'undeleteextrahelp' => "To restore the page's entire history, leave all checkboxes deselected and click '''''Restore'''''.
02518 To perform a selective restoration, check the boxes corresponding to the revisions to be restored, and click '''''Restore'''''.
02519 Clicking '''''Reset''''' will clear the comment field and all checkboxes.",
02520 'undeleterevisions' => '$1 {{PLURAL:$1|revision|revisions}} archived',
02521 'undeletehistory' => 'If you restore the page, all revisions will be restored to the history.
02522 If a new page with the same name has been created since the deletion, the restored revisions will appear in the prior history.',
02523 'undeleterevdel' => 'Undeletion will not be performed if it will result in the top page or file revision being partially deleted.
02524 In such cases, you must uncheck or unhide the newest deleted revision.',
02525 'undeletehistorynoadmin' => 'This page has been deleted.
02526 The reason for deletion is shown in the summary below, along with details of the users who had edited this page before deletion.
02527 The actual text of these deleted revisions is only available to administrators.',
02528 'undelete-revision' => 'Deleted revision of $1 (as of $4, at $5) by $3:',
02529 'undeleterevision-missing' => 'Invalid or missing revision.
02530 You may have a bad link, or the revision may have been restored or removed from the archive.',
02531 'undelete-nodiff' => 'No previous revision found.',
02532 'undeletebtn' => 'Restore',
02533 'undeletelink' => 'view/restore',
02534 'undeletereset' => 'Reset',
02535 'undeleteinvert' => 'Invert selection',
02536 'undeletecomment' => 'Comment:',
02537 'undeletedarticle' => 'restored "[[$1]]"',
02538 'undeletedrevisions' => '{{PLURAL:$1|1 revision|$1 revisions}} restored',
02539 'undeletedrevisions-files' => '{{PLURAL:$1|1 revision|$1 revisions}} and {{PLURAL:$2|1 file|$2 files}} restored',
02540 'undeletedfiles' => '{{PLURAL:$1|1 file|$1 files}} restored',
02541 'cannotundelete' => 'Undelete failed;
02542 someone else may have undeleted the page first.',
02543 'undeletedpage' => "<big>'''$1 has been restored'''</big>
02544
02545 Consult the [[Special:Log/delete|deletion log]] for a record of recent deletions and restorations.",
02546 'undelete-header' => 'See [[Special:Log/delete|the deletion log]] for recently deleted pages.',
02547 'undelete-search-box' => 'Search deleted pages',
02548 'undelete-search-prefix' => 'Show pages starting with:',
02549 'undelete-search-submit' => 'Search',
02550 'undelete-no-results' => 'No matching pages found in the deletion archive.',
02551 'undelete-filename-mismatch' => 'Cannot undelete file revision with timestamp $1: filename mismatch',
02552 'undelete-bad-store-key' => 'Cannot undelete file revision with timestamp $1: file was missing before deletion.',
02553 'undelete-cleanup-error' => 'Error deleting unused archive file "$1".',
02554 'undelete-missing-filearchive' => 'Unable to restore file archive ID $1 because it is not in the database.
02555 It may have already been undeleted.',
02556 'undelete-error-short' => 'Error undeleting file: $1',
02557 'undelete-error-long' => 'Errors were encountered while undeleting the file:
02558
02559 $1',
02560 'undelete-show-file-confirm' => 'Are you sure you want to view a deleted revision of the file "<nowiki>$1</nowiki>" from $2 at $3?',
02561 'undelete-show-file-submit' => 'Yes',
02562
02563 # Namespace form on various pages
02564 'namespace' => 'Namespace:',
02565 'invert' => 'Invert selection',
02566 'blanknamespace' => '(Main)',
02567
02568 # Contributions
02569 'contributions' => 'User contributions',
02570 'contributions-title' => 'User contributions for $1',
02571 'mycontris' => 'My contributions',
02572 'contribsub2' => 'For $1 ($2)',
02573 'nocontribs' => 'No changes were found matching these criteria.', # Optional parameter: $1 is the user name
02574 'uctop' => '(top)',
02575 'month' => 'From month (and earlier):',
02576 'year' => 'From year (and earlier):',
02577
02578 'sp-contributions-newbies' => 'Show contributions of new accounts only',
02579 'sp-contributions-newbies-sub' => 'For new accounts',
02580 'sp-contributions-newbies-title' => 'User contributions for new accounts',
02581 'sp-contributions-blocklog' => 'block log',
02582 'sp-contributions-logs' => 'logs',
02583 'sp-contributions-search' => 'Search for contributions',
02584 'sp-contributions-username' => 'IP Address or username:',
02585 'sp-contributions-submit' => 'Search',
02586 'sp-contributions-explain' => '', # only translate this message to other languages if you have to change it
02587 'sp-contributions-footer' => '-', # do not translate or duplicate this message to other languages
02588 'sp-contributions-footer-anon' => '-', # do not translate or duplicate this message to other languages
02589
02590 # What links here
02591 'whatlinkshere' => 'What links here',
02592 'whatlinkshere-title' => 'Pages that link to "$1"',
02593 'whatlinkshere-summary' => '', # do not translate or duplicate this message to other languages
02594 'whatlinkshere-page' => 'Page:',
02595 'whatlinkshere-backlink' => '← $1', # only translate this message to other languages if you have to change it
02596 'linkshere' => "The following pages link to '''[[:$1]]''':",
02597 'nolinkshere' => "No pages link to '''[[:$1]]'''.",
02598 'nolinkshere-ns' => "No pages link to '''[[:$1]]''' in the chosen namespace.",
02599 'isredirect' => 'redirect page',
02600 'istemplate' => 'transclusion',
02601 'isimage' => 'image link',
02602 'whatlinkshere-prev' => '{{PLURAL:$1|previous|previous $1}}',
02603 'whatlinkshere-next' => '{{PLURAL:$1|next|next $1}}',
02604 'whatlinkshere-links' => '← links',
02605 'whatlinkshere-hideredirs' => '$1 redirects',
02606 'whatlinkshere-hidetrans' => '$1 transclusions',
02607 'whatlinkshere-hidelinks' => '$1 links',
02608 'whatlinkshere-hideimages' => '$1 image links',
02609 'whatlinkshere-filters' => 'Filters',
02610
02611 # Block/unblock
02612 'blockip' => 'Block user',
02613 'blockip-legend' => 'Block user',
02614 'blockiptext' => 'Use the form below to block write access from a specific IP address or username.
02615 This should be done only to prevent vandalism, and in accordance with [[{{MediaWiki:Policy-url}}|policy]].
02616 Fill in a specific reason below (for example, citing particular pages that were vandalized).',
02617 'ipaddress' => 'IP Address:',
02618 'ipadressorusername' => 'IP Address or username:',
02619 'ipbexpiry' => 'Expiry:',
02620 'ipbreason' => 'Reason:',
02621 'ipbreasonotherlist' => 'Other reason',
02622 'ipbreason-dropdown' => '*Common block reasons
02623 ** Inserting false information
02624 ** Removing content from pages
02625 ** Spamming links to external sites
02626 ** Inserting nonsense/gibberish into pages
02627 ** Intimidating behaviour/harassment
02628 ** Abusing multiple accounts
02629 ** Unacceptable username',
02630 'ipbanononly' => 'Block anonymous users only',
02631 'ipbcreateaccount' => 'Prevent account creation',
02632 'ipbemailban' => 'Prevent user from sending e-mail',
02633 'ipbenableautoblock' => 'Automatically block the last IP address used by this user, and any subsequent IPs they try to edit from',
02634 'ipbsubmit' => 'Block this user',
02635 'ipbother' => 'Other time:',
02636 '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,...
02637 'ipbotheroption' => 'other',
02638 'ipbotherreason' => 'Other/additional reason:',
02639 'ipbhidename' => 'Hide username from edits and lists',
02640 'ipbwatchuser' => "Watch this user's user and talk pages",
02641 'ipballowusertalk' => 'Allow this user to edit own talk page while blocked',
02642 'ipb-change-block' => 'Re-block the user with these settings',
02643 'badipaddress' => 'Invalid IP address',
02644 'blockipsuccesssub' => 'Block succeeded',
02645 'blockipsuccesstext' => '[[Special:Contributions/$1|$1]] has been blocked.<br />
02646 See [[Special:IPBlockList|IP block list]] to review blocks.',
02647 'ipb-edit-dropdown' => 'Edit block reasons',
02648 'ipb-unblock-addr' => 'Unblock $1',
02649 'ipb-unblock' => 'Unblock a username or IP address',
02650 'ipb-blocklist-addr' => 'Existing blocks for $1',
02651 'ipb-blocklist' => 'View existing blocks',
02652 'ipb-blocklist-contribs' => 'Contributions for $1',
02653 'unblockip' => 'Unblock user',
02654 'unblockiptext' => 'Use the form below to restore write access to a previously blocked IP address or username.',
02655 'ipusubmit' => 'Remove this block',
02656 'unblocked' => '[[User:$1|$1]] has been unblocked',
02657 'unblocked-id' => 'Block $1 has been removed',
02658 'ipblocklist' => 'Blocked IP addresses and usernames',
02659 'ipblocklist-legend' => 'Find a blocked user',
02660 'ipblocklist-username' => 'Username or IP address:',
02661 'ipblocklist-sh-userblocks' => '$1 account blocks',
02662 'ipblocklist-sh-tempblocks' => '$1 temporary blocks',
02663 'ipblocklist-sh-addressblocks' => '$1 single IP blocks',
02664 'ipblocklist-summary' => '', # do not translate or duplicate this message to other languages
02665 'ipblocklist-submit' => 'Search',
02666 'blocklistline' => '$1, $2 blocked $3 ($4)',
02667 'infiniteblock' => 'infinite',
02668 'expiringblock' => 'expires $1',
02669 'anononlyblock' => 'anon. only',
02670 'noautoblockblock' => 'autoblock disabled',
02671 'createaccountblock' => 'account creation blocked',
02672 'emailblock' => 'e-mail blocked',
02673 'blocklist-nousertalk' => 'cannot edit own talk page',
02674 'ipblocklist-empty' => 'The blocklist is empty.',
02675 'ipblocklist-no-results' => 'The requested IP address or username is not blocked.',
02676 'blocklink' => 'block',
02677 'unblocklink' => 'unblock',
02678 'change-blocklink' => 'change block',
02679 'contribslink' => 'contribs',
02680 'autoblocker' => 'Autoblocked because your IP address has been recently used by "[[User:$1|$1]]".
02681 The reason given for $1\'s block is: "$2"',
02682 'blocklogpage' => 'Block log',
02683 'blocklog-fulllog' => 'Full block log',
02684 'blocklogentry' => 'blocked [[$1]] with an expiry time of $2 $3',
02685 'reblock-logentry' => 'changed block settings for [[$1]] with an expiry time of $2 $3',
02686 'blocklogtext' => 'This is a log of user blocking and unblocking actions.
02687 Automatically blocked IP addresses are not listed.
02688 See the [[Special:IPBlockList|IP block list]] for the list of currently operational bans and blocks.',
02689 'unblocklogentry' => 'unblocked $1',
02690 'block-log-flags-anononly' => 'anonymous users only',
02691 'block-log-flags-nocreate' => 'account creation disabled',
02692 'block-log-flags-noautoblock' => 'autoblock disabled',
02693 'block-log-flags-noemail' => 'e-mail blocked',
02694 'block-log-flags-nousertalk' => 'cannot edit own talk page',
02695 'block-log-flags-angry-autoblock' => 'enhanced autoblock enabled',
02696 'block-log-flags-hiddenname' => 'username hidden',
02697 'range_block_disabled' => 'The administrator ability to create range blocks is disabled.',
02698 'ipb_expiry_invalid' => 'Expiry time invalid.',
02699 'ipb_expiry_temp' => 'Hidden username blocks must be permanent.',
02700 'ipb_hide_invalid' => 'Unable to suppress this account; it may have too many edits.',
02701 'ipb_already_blocked' => '"$1" is already blocked',
02702 'ipb-needreblock' => '== Already blocked ==
02703 $1 is already blocked.
02704 Do you want to change the settings?',
02705 'ipb_cant_unblock' => 'Error: Block ID $1 not found.
02706 It may have been unblocked already.',
02707 'ipb_blocked_as_range' => 'Error: The IP $1 is not blocked directly and cannot be unblocked.
02708 It is, however, blocked as part of the range $2, which can be unblocked.',
02709 'ip_range_invalid' => 'Invalid IP range.',
02710 'blockme' => 'Block me',
02711 'proxyblocker' => 'Proxy blocker',
02712 'proxyblocker-disabled' => 'This function is disabled.',
02713 'proxyblockreason' => 'Your IP address has been blocked because it is an open proxy.
02714 Please contact your Internet service provider or tech support and inform them of this serious security problem.',
02715 'proxyblocksuccess' => 'Done.',
02716 'sorbs' => 'DNSBL', # only translate this message to other languages if you have to change it
02717 'sorbsreason' => 'Your IP address is listed as an open proxy in the DNSBL used by {{SITENAME}}.',
02718 'sorbs_create_account_reason' => 'Your IP address is listed as an open proxy in the DNSBL used by {{SITENAME}}.
02719 You cannot create an account',
02720 'cant-block-while-blocked' => 'You cannot block other users while you are blocked.',
02721
02722 # Developer tools
02723 'lockdb' => 'Lock database',
02724 'unlockdb' => 'Unlock database',
02725 '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.
02726 Please confirm that this is what you intend to do, and that you will unlock the database when your maintenance is done.',
02727 '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.
02728 Please confirm that this is what you intend to do.',
02729 'lockconfirm' => 'Yes, I really want to lock the database.',
02730 'unlockconfirm' => 'Yes, I really want to unlock the database.',
02731 'lockbtn' => 'Lock database',
02732 'unlockbtn' => 'Unlock database',
02733 'locknoconfirm' => 'You did not check the confirmation box.',
02734 'lockdbsuccesssub' => 'Database lock succeeded',
02735 'unlockdbsuccesssub' => 'Database lock removed',
02736 'lockdbsuccesstext' => 'The database has been locked.<br />
02737 Remember to [[Special:UnlockDB|remove the lock]] after your maintenance is complete.',
02738 'unlockdbsuccesstext' => 'The database has been unlocked.',
02739 'lockfilenotwritable' => 'The database lock file is not writable.
02740 To lock or unlock the database, this needs to be writable by the web server.',
02741 'databasenotlocked' => 'The database is not locked.',
02742
02743 # Move page
02744 'move-page' => 'Move $1',
02745 'move-page-backlink' => '← $1', # only translate this message to other languages if you have to change it
02746 'move-page-legend' => 'Move page',
02747 'movepagetext' => "Using the form below will rename a page, moving all of its history to the new name.
02748 The old title will become a redirect page to the new title.
02749 You can update redirects that point to the original title automatically.
02750 If you choose not to, be sure to check for [[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken redirects]].
02751 You are responsible for making sure that links continue to point where they are supposed to go.
02752
02753 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.
02754 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.
02755
02756 '''Warning!'''
02757 This can be a drastic and unexpected change for a popular page;
02758 please be sure you understand the consequences of this before proceeding.",
02759 'movepagetalktext' => "The associated talk page will be automatically moved along with it '''unless:'''
02760 *A non-empty talk page already exists under the new name, or
02761 *You uncheck the box below.
02762
02763 In those cases, you will have to move or merge the page manually if desired.",
02764 'movearticle' => 'Move page:',
02765 'movenologin' => 'Not logged in',
02766 'movenologintext' => 'You must be a registered user and [[Special:UserLogin|logged in]] to move a page.',
02767 'movenotallowed' => 'You do not have permission to move pages.',
02768 'movenotallowedfile' => 'You do not have permission to move files.',
02769 'cant-move-user-page' => 'You do not have permission to move user pages (apart from subpages).',
02770 'cant-move-to-user-page' => 'You do not have permission to move a page to a user page (except to a user subpage).',
02771 'newtitle' => 'To new title:',
02772 'move-watch' => 'Watch this page',
02773 'movepagebtn' => 'Move page',
02774 'pagemovedsub' => 'Move succeeded',
02775 '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.
02776 'movepage-moved-redirect' => 'A redirect has been created.',
02777 'movepage-moved-noredirect' => 'The creation of a redirect has been suppressed.',
02778 'articleexists' => 'A page of that name already exists, or the name you have chosen is not valid.
02779 Please choose another name.',
02780 'cantmove-titleprotected' => 'You cannot move a page to this location, because the new title has been protected from creation',
02781 'talkexists' => "'''The page itself was moved successfully, but the talk page could not be moved because one already exists at the new title.
02782 Please merge them manually.'''",
02783 'movedto' => 'moved to',
02784 'movetalk' => 'Move associated talk page',
02785 'move-subpages' => 'Move subpages (up to $1)',
02786 'move-talk-subpages' => 'Move subpages of talk page (up to $1)',
02787 'movepage-page-exists' => 'The page $1 already exists and cannot be automatically overwritten.',
02788 'movepage-page-moved' => 'The page $1 has been moved to $2.',
02789 'movepage-page-unmoved' => 'The page $1 could not be moved to $2.',
02790 'movepage-max-pages' => 'The maximum of $1 {{PLURAL:$1|page|pages}} has been moved and no more will be moved automatically.',
02791 '1movedto2' => 'moved [[$1]] to [[$2]]',
02792 '1movedto2_redir' => 'moved [[$1]] to [[$2]] over redirect',
02793 'move-redirect-suppressed' => 'redirect suppressed',
02794 'movelogpage' => 'Move log',
02795 'movelogpagetext' => 'Below is a list of all page moves.',
02796 'movesubpage' => '{{PLURAL:$1|Subpage|Subpages}}',
02797 'movesubpagetext' => 'This page has $1 {{PLURAL:$1|subpage|subpages}} shown below.',
02798 'movenosubpage' => 'This page has no subpages.',
02799 'movereason' => 'Reason:',
02800 'revertmove' => 'revert',
02801 'delete_and_move' => 'Delete and move',
02802 'delete_and_move_text' => '== Deletion required ==
02803 The destination page "[[:$1]]" already exists.
02804 Do you want to delete it to make way for the move?',
02805 'delete_and_move_confirm' => 'Yes, delete the page',
02806 'delete_and_move_reason' => 'Deleted to make way for move',
02807 'selfmove' => 'Source and destination titles are the same;
02808 cannot move a page over itself.',
02809 'immobile-source-namespace' => 'Cannot move pages in namespace "$1"',
02810 'immobile-target-namespace' => 'Cannot move pages into namespace "$1"',
02811 'immobile-target-namespace-iw' => 'Interwiki link is not a valid target for page move.',
02812 'immobile-source-page' => 'This page is not movable.',
02813 'immobile-target-page' => 'Cannot move to that destination title.',
02814 'imagenocrossnamespace' => 'Cannot move file to non-file namespace',
02815 'imagetypemismatch' => 'The new file extension does not match its type',
02816 'imageinvalidfilename' => 'The target file name is invalid',
02817 'fix-double-redirects' => 'Update any redirects that point to the original title',
02818 'move-leave-redirect' => 'Leave a redirect behind',
02819
02820 # Export
02821 'export' => 'Export pages',
02822 'exporttext' => 'You can export the text and editing history of a particular page or set of pages wrapped in some XML.
02823 This can be imported into another wiki using MediaWiki via the [[Special:Import|import page]].
02824
02825 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.
02826
02827 In the latter case you can also use a link, for example [[{{#Special:Export}}/{{MediaWiki:Mainpage}}]] for the page "[[{{MediaWiki:Mainpage}}]]".',
02828 'exportcuronly' => 'Include only the current revision, not the full history',
02829 'exportnohistory' => "----
02830 '''Note:''' Exporting the full history of pages through this form has been disabled due to performance reasons.",
02831 'export-submit' => 'Export',
02832 'export-addcattext' => 'Add pages from category:',
02833 'export-addcat' => 'Add',
02834 'export-addnstext' => 'Add pages from namespace:',
02835 'export-addns' => 'Add',
02836 'export-download' => 'Save as file',
02837 'export-templates' => 'Include templates',
02838 'export-pagelinks' => 'Include linked pages to a depth of:',
02839
02840 # Namespace 8 related
02841 'allmessages' => 'System messages',
02842 'allmessagesname' => 'Name',
02843 'allmessagesdefault' => 'Default text',
02844 'allmessagescurrent' => 'Current text',
02845 'allmessagestext' => 'This is a list of system messages available in the MediaWiki namespace.
02846 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.',
02847 'allmessagesnotsupportedDB' => "This page cannot be used because '''\$wgUseDatabaseMessages''' has been disabled.",
02848 'allmessagesfilter' => 'Message name filter:',
02849 'allmessagesmodified' => 'Show only modified',
02850
02851 # Thumbnails
02852 'thumbnail-more' => 'Enlarge',
02853 'filemissing' => 'File missing',
02854 'thumbnail_error' => 'Error creating thumbnail: $1',
02855 'djvu_page_error' => 'DjVu page out of range',
02856 'djvu_no_xml' => 'Unable to fetch XML for DjVu file',
02857 'thumbnail_invalid_params' => 'Invalid thumbnail parameters',
02858 'thumbnail_dest_directory' => 'Unable to create destination directory',
02859
02860 # Special:Import
02861 'import' => 'Import pages',
02862 'importinterwiki' => 'Transwiki import',
02863 'import-interwiki-text' => "Select a wiki and page title to import.
02864 Revision dates and editors' names will be preserved.
02865 All transwiki import actions are logged at the [[Special:Log/import|import log]].",
02866 'import-interwiki-source' => 'Source wiki/page:',
02867 'import-interwiki-history' => 'Copy all history revisions for this page',
02868 'import-interwiki-templates' => 'Include all templates',
02869 'import-interwiki-submit' => 'Import',
02870 'import-interwiki-namespace' => 'Destination namespace:',
02871 'import-upload-filename' => 'Filename:',
02872 'import-comment' => 'Comment:',
02873 'importtext' => 'Please export the file from the source wiki using the [[Special:Export|export utility]].
02874 Save it to your computer and upload it here.',
02875 'importstart' => 'Importing pages…',
02876 'import-revision-count' => '$1 {{PLURAL:$1|revision|revisions}}',
02877 'importnopages' => 'No pages to import.',
02878 'importfailed' => 'Import failed: <nowiki>$1</nowiki>',
02879 'importunknownsource' => 'Unknown import source type',
02880 'importcantopen' => 'Could not open import file',
02881 'importbadinterwiki' => 'Bad interwiki link',
02882 'importnotext' => 'Empty or no text',
02883 'importsuccess' => 'Import finished!',
02884 'importhistoryconflict' => 'Conflicting history revision exists (may have imported this page before)',
02885 'importnosources' => 'No transwiki import sources have been defined and direct history uploads are disabled.',
02886 'importnofile' => 'No import file was uploaded.',
02887 'importuploaderrorsize' => 'Upload of import file failed.
02888 The file is bigger than the allowed upload size.',
02889 'importuploaderrorpartial' => 'Upload of import file failed.
02890 The file was only partially uploaded.',
02891 'importuploaderrortemp' => 'Upload of import file failed.
02892 A temporary folder is missing.',
02893 'import-parse-failure' => 'XML import parse failure',
02894 'import-noarticle' => 'No page to import!',
02895 'import-nonewrevisions' => 'All revisions were previously imported.',
02896 'xml-error-string' => '$1 at line $2, col $3 (byte $4): $5',
02897 'import-upload' => 'Upload XML data',
02898 'import-token-mismatch' => 'Loss of session data.
02899 Please try again.',
02900 'import-invalid-interwiki' => 'Cannot import from the specified wiki.',
02901
02902 # Import log
02903 'importlogpage' => 'Import log',
02904 'importlogpagetext' => 'Administrative imports of pages with edit history from other wikis.',
02905 'import-logentry-upload' => 'imported [[$1]] by file upload',
02906 'import-logentry-upload-detail' => '$1 {{PLURAL:$1|revision|revisions}}',
02907 'import-logentry-interwiki' => 'transwikied $1',
02908 'import-logentry-interwiki-detail' => '$1 {{PLURAL:$1|revision|revisions}} from $2',
02909
02910 # Keyboard access keys for power users
02911 'accesskey-pt-userpage' => '.', # do not translate or duplicate this message to other languages
02912 'accesskey-pt-anonuserpage' => '.', # do not translate or duplicate this message to other languages
02913 'accesskey-pt-mytalk' => 'n', # do not translate or duplicate this message to other languages
02914 'accesskey-pt-anontalk' => 'n', # do not translate or duplicate this message to other languages
02915 'accesskey-pt-preferences' => '', # do not translate or duplicate this message to other languages
02916 'accesskey-pt-watchlist' => 'l', # do not translate or duplicate this message to other languages
02917 'accesskey-pt-mycontris' => 'y', # do not translate or duplicate this message to other languages
02918 'accesskey-pt-login' => 'o', # do not translate or duplicate this message to other languages
02919 'accesskey-pt-anonlogin' => 'o', # do not translate or duplicate this message to other languages
02920 'accesskey-pt-logout' => '', # do not translate or duplicate this message to other languages
02921 'accesskey-ca-talk' => 't', # do not translate or duplicate this message to other languages
02922 'accesskey-ca-edit' => 'e', # do not translate or duplicate this message to other languages
02923 'accesskey-ca-addsection' => '+', # do not translate or duplicate this message to other languages
02924 'accesskey-ca-viewsource' => 'e', # do not translate or duplicate this message to other languages
02925 'accesskey-ca-history' => 'h', # do not translate or duplicate this message to other languages
02926 'accesskey-ca-protect' => '=', # do not translate or duplicate this message to other languages
02927 'accesskey-ca-delete' => 'd', # do not translate or duplicate this message to other languages
02928 'accesskey-ca-undelete' => 'd', # do not translate or duplicate this message to other languages
02929 'accesskey-ca-move' => 'm', # do not translate or duplicate this message to other languages
02930 'accesskey-ca-watch' => 'w', # do not translate or duplicate this message to other languages
02931 'accesskey-ca-unwatch' => 'w', # do not translate or duplicate this message to other languages
02932 'accesskey-search' => 'f', # do not translate or duplicate this message to other languages
02933 'accesskey-search-go' => '', # do not translate or duplicate this message to other languages
02934 'accesskey-search-fulltext' => '', # do not translate or duplicate this message to other languages
02935 'accesskey-p-logo' => 'z', # do not translate or duplicate this message to other languages
02936 'accesskey-n-mainpage' => '', # do not translate or duplicate this message to other languages
02937 'accesskey-n-portal' => '', # do not translate or duplicate this message to other languages
02938 'accesskey-n-currentevents' => '', # do not translate or duplicate this message to other languages
02939 'accesskey-n-recentchanges' => 'r', # do not translate or duplicate this message to other languages
02940 'accesskey-n-randompage' => 'x', # do not translate or duplicate this message to other languages
02941 'accesskey-n-help' => '', # do not translate or duplicate this message to other languages
02942 'accesskey-t-whatlinkshere' => 'j', # do not translate or duplicate this message to other languages
02943 'accesskey-t-recentchangeslinked' => 'k', # do not translate or duplicate this message to other languages
02944 'accesskey-feed-rss' => '', # do not translate or duplicate this message to other languages
02945 'accesskey-feed-atom' => '', # do not translate or duplicate this message to other languages
02946 'accesskey-t-contributions' => '', # do not translate or duplicate this message to other languages
02947 'accesskey-t-emailuser' => '', # do not translate or duplicate this message to other languages
02948 'accesskey-t-permalink' => '', # do not translate or duplicate this message to other languages
02949 'accesskey-t-print' => 'p', # do not translate or duplicate this message to other languages
02950 'accesskey-t-upload' => 'u', # do not translate or duplicate this message to other languages
02951 'accesskey-t-specialpages' => 'q', # do not translate or duplicate this message to other languages
02952 'accesskey-ca-nstab-main' => 'c', # do not translate or duplicate this message to other languages
02953 'accesskey-ca-nstab-user' => 'c', # do not translate or duplicate this message to other languages
02954 'accesskey-ca-nstab-media' => 'c', # do not translate or duplicate this message to other languages
02955 'accesskey-ca-nstab-special' => '', # do not translate or duplicate this message to other languages
02956 'accesskey-ca-nstab-project' => 'a', # do not translate or duplicate this message to other languages
02957 'accesskey-ca-nstab-image' => 'c', # do not translate or duplicate this message to other languages
02958 'accesskey-ca-nstab-mediawiki' => 'c', # do not translate or duplicate this message to other languages
02959 'accesskey-ca-nstab-template' => 'c', # do not translate or duplicate this message to other languages
02960 'accesskey-ca-nstab-help' => 'c', # do not translate or duplicate this message to other languages
02961 'accesskey-ca-nstab-category' => 'c', # do not translate or duplicate this message to other languages
02962 'accesskey-minoredit' => 'i', # do not translate or duplicate this message to other languages
02963 'accesskey-save' => 's', # do not translate or duplicate this message to other languages
02964 'accesskey-preview' => 'p', # do not translate or duplicate this message to other languages
02965 'accesskey-diff' => 'v', # do not translate or duplicate this message to other languages
02966 'accesskey-compareselectedversions' => 'v', # do not translate or duplicate this message to other languages
02967 'accesskey-visualcomparison' => 'b', # do not translate or duplicate this message to other languages
02968 'accesskey-watch' => 'w', # do not translate or duplicate this message to other languages
02969 'accesskey-upload' => 's', # do not translate or duplicate this message to other languages
02970
02971 # Tooltip help for the actions
02972 'tooltip-pt-userpage' => 'Your user page',
02973 'tooltip-pt-anonuserpage' => "The user page for the ip you're editing as",
02974 'tooltip-pt-mytalk' => 'Your talk page',
02975 'tooltip-pt-anontalk' => 'Discussion about edits from this IP address',
02976 'tooltip-pt-preferences' => 'Your preferences',
02977 'tooltip-pt-watchlist' => 'The list of pages you are monitoring for changes',
02978 'tooltip-pt-mycontris' => 'List of your contributions',
02979 'tooltip-pt-login' => 'You are encouraged to log in; however, it is not mandatory',
02980 'tooltip-pt-anonlogin' => 'You are encouraged to log in; however, it is not mandatory',
02981 'tooltip-pt-logout' => 'Log out',
02982 'tooltip-ca-talk' => 'Discussion about the content page',
02983 'tooltip-ca-edit' => 'You can edit this page.
02984 Please use the preview button before saving',
02985 'tooltip-ca-addsection' => 'Start a new section',
02986 'tooltip-ca-viewsource' => 'This page is protected.
02987 You can view its source',
02988 'tooltip-ca-history' => 'Past revisions of this page',
02989 'tooltip-ca-protect' => 'Protect this page',
02990 'tooltip-ca-delete' => 'Delete this page',
02991 'tooltip-ca-undelete' => 'Restore the edits done to this page before it was deleted',
02992 'tooltip-ca-move' => 'Move this page',
02993 'tooltip-ca-watch' => 'Add this page to your watchlist',
02994 'tooltip-ca-unwatch' => 'Remove this page from your watchlist',
02995 'tooltip-search' => 'Search {{SITENAME}}',
02996 'tooltip-search-go' => 'Go to a page with this exact name if exists',
02997 'tooltip-search-fulltext' => 'Search the pages for this text',
02998 'tooltip-p-logo' => 'Visit the main page',
02999 'tooltip-n-mainpage' => 'Visit the main page',
03000 'tooltip-n-portal' => 'About the project, what you can do, where to find things',
03001 'tooltip-n-currentevents' => 'Find background information on current events',
03002 'tooltip-n-recentchanges' => 'The list of recent changes in the wiki',
03003 'tooltip-n-randompage' => 'Load a random page',
03004 'tooltip-n-help' => 'The place to find out',
03005 'tooltip-t-whatlinkshere' => 'List of all wiki pages that link here',
03006 'tooltip-t-recentchangeslinked' => 'Recent changes in pages linked from this page',
03007 'tooltip-feed-rss' => 'RSS feed for this page',
03008 'tooltip-feed-atom' => 'Atom feed for this page',
03009 'tooltip-t-contributions' => 'View the list of contributions of this user',
03010 'tooltip-t-emailuser' => 'Send an e-mail to this user',
03011 'tooltip-t-upload' => 'Upload files',
03012 'tooltip-t-specialpages' => 'List of all special pages',
03013 'tooltip-t-print' => 'Printable version of this page',
03014 'tooltip-t-permalink' => 'Permanent link to this revision of the page',
03015 'tooltip-ca-nstab-main' => 'View the content page',
03016 'tooltip-ca-nstab-user' => 'View the user page',
03017 'tooltip-ca-nstab-media' => 'View the media page',
03018 'tooltip-ca-nstab-special' => 'This is a special page, you cannot edit the page itself',
03019 'tooltip-ca-nstab-project' => 'View the project page',
03020 'tooltip-ca-nstab-image' => 'View the file page',
03021 'tooltip-ca-nstab-mediawiki' => 'View the system message',
03022 'tooltip-ca-nstab-template' => 'View the template',
03023 'tooltip-ca-nstab-help' => 'View the help page',
03024 'tooltip-ca-nstab-category' => 'View the category page',
03025 'tooltip-minoredit' => 'Mark this as a minor edit',
03026 'tooltip-save' => 'Save your changes',
03027 'tooltip-preview' => 'Preview your changes, please use this before saving!',
03028 'tooltip-diff' => 'Show which changes you made to the text',
03029 'tooltip-compareselectedversions' => 'See the differences between the two selected revisions of this page',
03030 'tooltip-watch' => 'Add this page to your watchlist',
03031 'tooltip-recreate' => 'Recreate the page even though it has been deleted',
03032 'tooltip-upload' => 'Start upload',
03033 'tooltip-rollback' => '"Rollback" reverts edit(s) to this page of the last contributor in one click',
03034 'tooltip-undo' => '"Undo" reverts this edit and opens the edit form in preview mode.
03035 It allows adding a reason in the summary.',
03036
03037 # Stylesheets
03038 'common.css' => '/* CSS placed here will be applied to all skins */', # only translate this message to other languages if you have to change it
03039 '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
03040 '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
03041 '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
03042 '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
03043 '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
03044 '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
03045 '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
03046 '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
03047 'print.css' => '/* CSS placed here will affect the print output */', # only translate this message to other languages if you have to change it
03048 '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
03049
03050 # Scripts
03051 '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
03052 '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
03053 '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
03054 '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
03055 '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
03056 '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
03057 '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
03058 '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
03059 '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
03060
03061 # Metadata
03062 'nodublincore' => 'Dublin Core RDF metadata disabled for this server.',
03063 'nocreativecommons' => 'Creative Commons RDF metadata disabled for this server.',
03064 'notacceptable' => 'The wiki server cannot provide data in a format your client can read.',
03065
03066 # Attribution
03067 'anonymous' => 'Anonymous {{PLURAL:$1|user|users}} of {{SITENAME}}',
03068 'siteuser' => '{{SITENAME}} user $1',
03069 'lastmodifiedatby' => 'This page was last modified $2, $1 by $3.', # $1 date, $2 time, $3 user
03070 'othercontribs' => 'Based on work by $1.',
03071 'others' => 'others',
03072 'siteusers' => '{{SITENAME}} {{PLURAL:$2|user|users}} $1',
03073 'creditspage' => 'Page credits',
03074 'nocredits' => 'There is no credits info available for this page.',
03075
03076 # Spam protection
03077 'spamprotectiontitle' => 'Spam protection filter',
03078 'spamprotectiontext' => 'The page you wanted to save was blocked by the spam filter.
03079 This is probably caused by a link to a blacklisted external site.',
03080 'spamprotectionmatch' => 'The following text is what triggered our spam filter: $1',
03081 'spambot_username' => 'MediaWiki spam cleanup',
03082 'spam_reverting' => 'Reverting to last revision not containing links to $1',
03083 'spam_blanking' => 'All revisions contained links to $1, blanking',
03084
03085 # Info page
03086 'infosubtitle' => 'Information for page',
03087 'numedits' => 'Number of edits (page): $1',
03088 'numtalkedits' => 'Number of edits (discussion page): $1',
03089 'numwatchers' => 'Number of watchers: $1',
03090 'numauthors' => 'Number of distinct authors (page): $1',
03091 'numtalkauthors' => 'Number of distinct authors (discussion page): $1',
03092
03093 # Skin names
03094 'skinname-standard' => 'Classic', # only translate this message to other languages if you have to change it
03095 'skinname-nostalgia' => 'Nostalgia', # only translate this message to other languages if you have to change it
03096 'skinname-cologneblue' => 'Cologne Blue', # only translate this message to other languages if you have to change it
03097 'skinname-monobook' => 'MonoBook', # only translate this message to other languages if you have to change it
03098 'skinname-myskin' => 'MySkin', # only translate this message to other languages if you have to change it
03099 'skinname-chick' => 'Chick', # only translate this message to other languages if you have to change it
03100 'skinname-simple' => 'Simple', # only translate this message to other languages if you have to change it
03101 'skinname-modern' => 'Modern', # only translate this message to other languages if you have to change it
03102
03103 # Math options
03104 'mw_math_png' => 'Always render PNG',
03105 'mw_math_simple' => 'HTML if very simple or else PNG',
03106 'mw_math_html' => 'HTML if possible or else PNG',
03107 'mw_math_source' => 'Leave it as TeX (for text browsers)',
03108 'mw_math_modern' => 'Recommended for modern browsers',
03109 'mw_math_mathml' => 'MathML if possible (experimental)',
03110
03111 # Patrolling
03112 'markaspatrolleddiff' => 'Mark as patrolled',
03113 'markaspatrolledlink' => '[$1]', # do not translate or duplicate this message to other languages
03114 'markaspatrolledtext' => 'Mark this page as patrolled',
03115 'markedaspatrolled' => 'Marked as patrolled',
03116 'markedaspatrolledtext' => 'The selected revision has been marked as patrolled.',
03117 'rcpatroldisabled' => 'Recent Changes Patrol disabled',
03118 'rcpatroldisabledtext' => 'The Recent Changes Patrol feature is currently disabled.',
03119 'markedaspatrollederror' => 'Cannot mark as patrolled',
03120 'markedaspatrollederrortext' => 'You need to specify a revision to mark as patrolled.',
03121 'markedaspatrollederror-noautopatrol' => 'You are not allowed to mark your own changes as patrolled.',
03122
03123 # Patrol log
03124 'patrol-log-page' => 'Patrol log',
03125 'patrol-log-header' => 'This is a log of patrolled revisions.',
03126 'patrol-log-line' => 'marked $1 of $2 patrolled $3',
03127 'patrol-log-auto' => '(automatic)',
03128 'patrol-log-diff' => 'revision $1',
03129 'log-show-hide-patrol' => '$1 patrol log',
03130
03131 # Image deletion
03132 'deletedrevision' => 'Deleted old revision $1',
03133 'filedeleteerror-short' => 'Error deleting file: $1',
03134 'filedeleteerror-long' => 'Errors were encountered while deleting the file:
03135
03136 $1',
03137 'filedelete-missing' => 'The file "$1" cannot be deleted, because it does not exist.',
03138 'filedelete-old-unregistered' => 'The specified file revision "$1" is not in the database.',
03139 'filedelete-current-unregistered' => 'The specified file "$1" is not in the database.',
03140 'filedelete-archive-read-only' => 'The archive directory "$1" is not writable by the webserver.',
03141
03142 # Browsing diffs
03143 'previousdiff' => '← Older edit',
03144 'nextdiff' => 'Newer edit →',
03145
03146 # Visual comparison
03147 'visual-comparison' => 'Visual comparison',
03148
03149 # Media information
03150 'mediawarning' => "'''Warning''': This file may contain malicious code, by executing it your system may be compromised.<hr />",
03151 'imagemaxsize' => "Image size limit:<br />''(for file description pages)''",
03152 'thumbsize' => 'Thumbnail size:',
03153 'widthheight' => '$1×$2', # only translate this message to other languages if you have to change it
03154 'widthheightpage' => '$1×$2, $3 {{PLURAL:$3|page|pages}}',
03155 'file-info' => '(file size: $1, MIME type: $2)',
03156 'file-info-size' => '($1 × $2 pixels, file size: $3, MIME type: $4)',
03157 'file-nohires' => '<small>No higher resolution available.</small>',
03158 'svg-long-desc' => '(SVG file, nominally $1 × $2 pixels, file size: $3)',
03159 'show-big-image' => 'Full resolution',
03160 'show-big-image-thumb' => '<small>Size of this preview: $1 × $2 pixels</small>',
03161
03162 # Special:NewFiles
03163 'newimages' => 'Gallery of new files',
03164 'imagelisttext' => "Below is a list of '''$1''' {{PLURAL:$1|file|files}} sorted $2.",
03165 'newimages-summary' => 'This special page shows the last uploaded files.',
03166 'newimages-legend' => 'Filter',
03167 'newimages-label' => 'Filename (or a part of it):',
03168 'showhidebots' => '($1 bots)',
03169 'noimages' => 'Nothing to see.',
03170 'ilsubmit' => 'Search',
03171 'bydate' => 'by date',
03172 'sp-newimages-showfrom' => 'Show new files starting from $2, $1',
03173
03174 # Video information, used by Language::formatTimePeriod() to format lengths in the above messages
03175 'video-dims' => '$1, $2×$3', # only translate this message to other languages if you have to change it
03176 'seconds-abbrev' => 's', # only translate this message to other languages if you have to change it
03177 'minutes-abbrev' => 'm', # only translate this message to other languages if you have to change it
03178 'hours-abbrev' => 'h', # only translate this message to other languages if you have to change it
03179
03180 # Bad image list
03181 'bad_image_list' => 'The format is as follows:
03182
03183 Only list items (lines starting with *) are considered.
03184 The first link on a line must be a link to a bad file.
03185 Any subsequent links on the same line are considered to be exceptions, i.e. pages where the file may occur inline.',
03186
03187
03188
03189
03190
03191
03192
03193 'variantname-zh-hans' => 'hans', # only translate this message to other languages if you have to change it
03194 'variantname-zh-hant' => 'hant', # only translate this message to other languages if you have to change it
03195 'variantname-zh-cn' => 'cn', # only translate this message to other languages if you have to change it
03196 'variantname-zh-tw' => 'tw', # only translate this message to other languages if you have to change it
03197 'variantname-zh-hk' => 'hk', # only translate this message to other languages if you have to change it
03198 'variantname-zh-mo' => 'mo', # only translate this message to other languages if you have to change it
03199 'variantname-zh-sg' => 'sg', # only translate this message to other languages if you have to change it
03200 'variantname-zh-my' => 'my', # only translate this message to other languages if you have to change it
03201 'variantname-zh' => 'zh', # only translate this message to other languages if you have to change it
03202
03203 # Variants for Gan language
03204 'variantname-gan-hans' => 'hans', # only translate this message to other languages if you have to change it
03205 'variantname-gan-hant' => 'hant', # only translate this message to other languages if you have to change it
03206 'variantname-gan' => 'gan', # only translate this message to other languages if you have to change it
03207
03208 # Variants for Serbian language
03209 'variantname-sr-ec' => 'sr-ec', # only translate this message to other languages if you have to change it
03210 'variantname-sr-el' => 'sr-el', # only translate this message to other languages if you have to change it
03211 'variantname-sr' => 'sr', # only translate this message to other languages if you have to change it
03212
03213 # Variants for Kazakh language
03214 'variantname-kk-kz' => 'kk-kz', # only translate this message to other languages if you have to change it
03215 'variantname-kk-tr' => 'kk-tr', # only translate this message to other languages if you have to change it
03216 'variantname-kk-cn' => 'kk-cn', # only translate this message to other languages if you have to change it
03217 'variantname-kk-cyrl' => 'kk-cyrl', # only translate this message to other languages if you have to change it
03218 'variantname-kk-latn' => 'kk-latn', # only translate this message to other languages if you have to change it
03219 'variantname-kk-arab' => 'kk-arab', # only translate this message to other languages if you have to change it
03220 'variantname-kk' => 'kk', # only translate this message to other languages if you have to change it
03221
03222 # Variants for Kurdish language
03223 'variantname-ku-arab' => 'ku-Arab', # only translate this message to other languages if you have to change it
03224 'variantname-ku-latn' => 'ku-Latn', # only translate this message to other languages if you have to change it
03225 'variantname-ku' => 'ku', # only translate this message to other languages if you have to change it
03226
03227 # Variants for Tajiki language
03228 'variantname-tg-cyrl' => 'tg-Cyrl', # only translate this message to other languages if you have to change it
03229 'variantname-tg-latn' => 'tg-Latn', # only translate this message to other languages if you have to change it
03230 'variantname-tg' => 'tg', # only translate this message to other languages if you have to change it
03231
03232 # Metadata
03233 'metadata' => 'Metadata',
03234 'metadata-help' => 'This file contains additional information, probably added from the digital camera or scanner used to create or digitize it.
03235 If the file has been modified from its original state, some details may not fully reflect the modified file.',
03236 'metadata-expand' => 'Show extended details',
03237 'metadata-collapse' => 'Hide extended details',
03238 'metadata-fields' => 'EXIF metadata fields listed in this message will be included on image page display when the metadata table is collapsed.
03239 Others will be hidden by default.
03240 * make
03241 * model
03242 * datetimeoriginal
03243 * exposuretime
03244 * fnumber
03245 * isospeedratings
03246 * focallength', # Do not translate list items
03247
03248 # EXIF tags
03249 'exif-imagewidth' => 'Width',
03250 'exif-imagelength' => 'Height',
03251 'exif-bitspersample' => 'Bits per component',
03252 'exif-compression' => 'Compression scheme',
03253 'exif-photometricinterpretation' => 'Pixel composition',
03254 'exif-orientation' => 'Orientation',
03255 'exif-samplesperpixel' => 'Number of components',
03256 'exif-planarconfiguration' => 'Data arrangement',
03257 'exif-ycbcrsubsampling' => 'Subsampling ratio of Y to C',
03258 'exif-ycbcrpositioning' => 'Y and C positioning',
03259 'exif-xresolution' => 'Horizontal resolution',
03260 'exif-yresolution' => 'Vertical resolution',
03261 'exif-resolutionunit' => 'Unit of X and Y resolution',
03262 'exif-stripoffsets' => 'Image data location',
03263 'exif-rowsperstrip' => 'Number of rows per strip',
03264 'exif-stripbytecounts' => 'Bytes per compressed strip',
03265 'exif-jpeginterchangeformat' => 'Offset to JPEG SOI',
03266 'exif-jpeginterchangeformatlength' => 'Bytes of JPEG data',
03267 'exif-transferfunction' => 'Transfer function',
03268 'exif-whitepoint' => 'White point chromaticity',
03269 'exif-primarychromaticities' => 'Chromaticities of primarities',
03270 'exif-ycbcrcoefficients' => 'Color space transformation matrix coefficients',
03271 'exif-referenceblackwhite' => 'Pair of black and white reference values',
03272 'exif-datetime' => 'File change date and time',
03273 'exif-imagedescription' => 'Image title',
03274 'exif-make' => 'Camera manufacturer',
03275 'exif-model' => 'Camera model',
03276 'exif-software' => 'Software used',
03277 'exif-artist' => 'Author',
03278 'exif-copyright' => 'Copyright holder',
03279 'exif-exifversion' => 'Exif version',
03280 'exif-flashpixversion' => 'Supported Flashpix version',
03281 'exif-colorspace' => 'Color space',
03282 'exif-componentsconfiguration' => 'Meaning of each component',
03283 'exif-compressedbitsperpixel' => 'Image compression mode',
03284 'exif-pixelydimension' => 'Valid image width',
03285 'exif-pixelxdimension' => 'Valid image height',
03286 'exif-makernote' => 'Manufacturer notes',
03287 'exif-usercomment' => 'User comments',
03288 'exif-relatedsoundfile' => 'Related audio file',
03289 'exif-datetimeoriginal' => 'Date and time of data generation',
03290 'exif-datetimedigitized' => 'Date and time of digitizing',
03291 'exif-subsectime' => 'DateTime subseconds',
03292 'exif-subsectimeoriginal' => 'DateTimeOriginal subseconds',
03293 'exif-subsectimedigitized' => 'DateTimeDigitized subseconds',
03294 'exif-exposuretime' => 'Exposure time',
03295 'exif-exposuretime-format' => '$1 sec ($2)',
03296 'exif-fnumber' => 'F Number',
03297 'exif-fnumber-format' => 'f/$1', # only translate this message to other languages if you have to change it
03298 'exif-exposureprogram' => 'Exposure Program',
03299 'exif-spectralsensitivity' => 'Spectral sensitivity',
03300 'exif-isospeedratings' => 'ISO speed rating',
03301 'exif-oecf' => 'Optoelectronic conversion factor',
03302 'exif-shutterspeedvalue' => 'Shutter speed',
03303 'exif-aperturevalue' => 'Aperture',
03304 'exif-brightnessvalue' => 'Brightness',
03305 'exif-exposurebiasvalue' => 'Exposure bias',
03306 'exif-maxaperturevalue' => 'Maximum land aperture',
03307 'exif-subjectdistance' => 'Subject distance',
03308 'exif-meteringmode' => 'Metering mode',
03309 'exif-lightsource' => 'Light source',
03310 'exif-flash' => 'Flash',
03311 'exif-focallength' => 'Lens focal length',
03312 'exif-focallength-format' => '$1 mm', # only translate this message to other languages if you have to change it
03313 'exif-subjectarea' => 'Subject area',
03314 'exif-flashenergy' => 'Flash energy',
03315 'exif-spatialfrequencyresponse' => 'Spatial frequency response',
03316 'exif-focalplanexresolution' => 'Focal plane X resolution',
03317 'exif-focalplaneyresolution' => 'Focal plane Y resolution',
03318 'exif-focalplaneresolutionunit' => 'Focal plane resolution unit',
03319 'exif-subjectlocation' => 'Subject location',
03320 'exif-exposureindex' => 'Exposure index',
03321 'exif-sensingmethod' => 'Sensing method',
03322 'exif-filesource' => 'File source',
03323 'exif-scenetype' => 'Scene type',
03324 'exif-cfapattern' => 'CFA pattern',
03325 'exif-customrendered' => 'Custom image processing',
03326 'exif-exposuremode' => 'Exposure mode',
03327 'exif-whitebalance' => 'White Balance',
03328 'exif-digitalzoomratio' => 'Digital zoom ratio',
03329 'exif-focallengthin35mmfilm' => 'Focal length in 35 mm film',
03330 'exif-scenecapturetype' => 'Scene capture type',
03331 'exif-gaincontrol' => 'Scene control',
03332 'exif-contrast' => 'Contrast',
03333 'exif-saturation' => 'Saturation',
03334 'exif-sharpness' => 'Sharpness',
03335 'exif-devicesettingdescription' => 'Device settings description',
03336 'exif-subjectdistancerange' => 'Subject distance range',
03337 'exif-imageuniqueid' => 'Unique image ID',
03338 'exif-gpsversionid' => 'GPS tag version',
03339 'exif-gpslatituderef' => 'North or South Latitude',
03340 'exif-gpslatitude' => 'Latitude',
03341 'exif-gpslongituderef' => 'East or West Longitude',
03342 'exif-gpslongitude' => 'Longitude',
03343 'exif-gpsaltituderef' => 'Altitude reference',
03344 'exif-gpsaltitude' => 'Altitude',
03345 'exif-gpstimestamp' => 'GPS time (atomic clock)',
03346 'exif-gpssatellites' => 'Satellites used for measurement',
03347 'exif-gpsstatus' => 'Receiver status',
03348 'exif-gpsmeasuremode' => 'Measurement mode',
03349 'exif-gpsdop' => 'Measurement precision',
03350 'exif-gpsspeedref' => 'Speed unit',
03351 'exif-gpsspeed' => 'Speed of GPS receiver',
03352 'exif-gpstrackref' => 'Reference for direction of movement',
03353 'exif-gpstrack' => 'Direction of movement',
03354 'exif-gpsimgdirectionref' => 'Reference for direction of image',
03355 'exif-gpsimgdirection' => 'Direction of image',
03356 'exif-gpsmapdatum' => 'Geodetic survey data used',
03357 'exif-gpsdestlatituderef' => 'Reference for latitude of destination',
03358 'exif-gpsdestlatitude' => 'Latitude destination',
03359 'exif-gpsdestlongituderef' => 'Reference for longitude of destination',
03360 'exif-gpsdestlongitude' => 'Longitude of destination',
03361 'exif-gpsdestbearingref' => 'Reference for bearing of destination',
03362 'exif-gpsdestbearing' => 'Bearing of destination',
03363 'exif-gpsdestdistanceref' => 'Reference for distance to destination',
03364 'exif-gpsdestdistance' => 'Distance to destination',
03365 'exif-gpsprocessingmethod' => 'Name of GPS processing method',
03366 'exif-gpsareainformation' => 'Name of GPS area',
03367 'exif-gpsdatestamp' => 'GPS date',
03368 'exif-gpsdifferential' => 'GPS differential correction',
03369
03370 # Make & model, can be wikified in order to link to the camera and model name
03371 'exif-make-value' => '$1', # do not translate or duplicate this message to other languages
03372 'exif-model-value' => '$1', # do not translate or duplicate this message to other languages
03373 'exif-software-value' => '$1', # do not translate or duplicate this message to other languages
03374
03375 # EXIF attributes
03376 'exif-compression-1' => 'Uncompressed',
03377 'exif-compression-6' => 'JPEG', # only translate this message to other languages if you have to change it
03378
03379 'exif-photometricinterpretation-2' => 'RGB', # only translate this message to other languages if you have to change it
03380 'exif-photometricinterpretation-6' => 'YCbCr', # only translate this message to other languages if you have to change it
03381
03382 'exif-unknowndate' => 'Unknown date',
03383
03384 'exif-orientation-1' => 'Normal', # 0th row: top; 0th column: left
03385 'exif-orientation-2' => 'Flipped horizontally', # 0th row: top; 0th column: right
03386 'exif-orientation-3' => 'Rotated 180°', # 0th row: bottom; 0th column: right
03387 'exif-orientation-4' => 'Flipped vertically', # 0th row: bottom; 0th column: left
03388 'exif-orientation-5' => 'Rotated 90° CCW and flipped vertically', # 0th row: left; 0th column: top
03389 'exif-orientation-6' => 'Rotated 90° CW', # 0th row: right; 0th column: top
03390 'exif-orientation-7' => 'Rotated 90° CW and flipped vertically', # 0th row: right; 0th column: bottom
03391 'exif-orientation-8' => 'Rotated 90° CCW', # 0th row: left; 0th column: bottom
03392
03393 'exif-planarconfiguration-1' => 'chunky format',
03394 'exif-planarconfiguration-2' => 'planar format',
03395
03396 'exif-xyresolution-i' => '$1 dpi', # only translate this message to other languages if you have to change it
03397 'exif-xyresolution-c' => '$1 dpc', # only translate this message to other languages if you have to change it
03398
03399 'exif-colorspace-1' => 'sRGB', # only translate this message to other languages if you have to change it
03400 'exif-colorspace-ffff.h' => 'FFFF.H', # only translate this message to other languages if you have to change it
03401
03402 'exif-componentsconfiguration-0' => 'does not exist',
03403 'exif-componentsconfiguration-1' => 'Y', # only translate this message to other languages if you have to change it
03404 'exif-componentsconfiguration-2' => 'Cb', # only translate this message to other languages if you have to change it
03405 'exif-componentsconfiguration-3' => 'Cr', # only translate this message to other languages if you have to change it
03406 'exif-componentsconfiguration-4' => 'R', # only translate this message to other languages if you have to change it
03407 'exif-componentsconfiguration-5' => 'G', # only translate this message to other languages if you have to change it
03408 'exif-componentsconfiguration-6' => 'B', # only translate this message to other languages if you have to change it
03409
03410 'exif-exposureprogram-0' => 'Not defined',
03411 'exif-exposureprogram-1' => 'Manual',
03412 'exif-exposureprogram-2' => 'Normal program',
03413 'exif-exposureprogram-3' => 'Aperture priority',
03414 'exif-exposureprogram-4' => 'Shutter priority',
03415 'exif-exposureprogram-5' => 'Creative program (biased toward depth of field)',
03416 'exif-exposureprogram-6' => 'Action program (biased toward fast shutter speed)',
03417 'exif-exposureprogram-7' => 'Portrait mode (for closeup photos with the background out of focus)',
03418 'exif-exposureprogram-8' => 'Landscape mode (for landscape photos with the background in focus)',
03419
03420 'exif-subjectdistance-value' => '$1 meters',
03421
03422 'exif-meteringmode-0' => 'Unknown',
03423 'exif-meteringmode-1' => 'Average',
03424 'exif-meteringmode-2' => 'CenterWeightedAverage',
03425 'exif-meteringmode-3' => 'Spot',
03426 'exif-meteringmode-4' => 'MultiSpot',
03427 'exif-meteringmode-5' => 'Pattern',
03428 'exif-meteringmode-6' => 'Partial',
03429 'exif-meteringmode-255' => 'Other',
03430
03431 'exif-lightsource-0' => 'Unknown',
03432 'exif-lightsource-1' => 'Daylight',
03433 'exif-lightsource-2' => 'Fluorescent',
03434 'exif-lightsource-3' => 'Tungsten (incandescent light)',
03435 'exif-lightsource-4' => 'Flash',
03436 'exif-lightsource-9' => 'Fine weather',
03437 'exif-lightsource-10' => 'Cloudy weather',
03438 'exif-lightsource-11' => 'Shade',
03439 'exif-lightsource-12' => 'Daylight fluorescent (D 5700 – 7100K)',
03440 'exif-lightsource-13' => 'Day white fluorescent (N 4600 – 5400K)',
03441 'exif-lightsource-14' => 'Cool white fluorescent (W 3900 – 4500K)',
03442 'exif-lightsource-15' => 'White fluorescent (WW 3200 – 3700K)',
03443 'exif-lightsource-17' => 'Standard light A',
03444 'exif-lightsource-18' => 'Standard light B',
03445 'exif-lightsource-19' => 'Standard light C',
03446 'exif-lightsource-20' => 'D55', # only translate this message to other languages if you have to change it
03447 'exif-lightsource-21' => 'D65', # only translate this message to other languages if you have to change it
03448 'exif-lightsource-22' => 'D75', # only translate this message to other languages if you have to change it
03449 'exif-lightsource-23' => 'D50', # only translate this message to other languages if you have to change it
03450 'exif-lightsource-24' => 'ISO studio tungsten',
03451 'exif-lightsource-255' => 'Other light source',
03452
03453 # Flash modes
03454 'exif-flash-fired-0' => 'Flash did not fire',
03455 'exif-flash-fired-1' => 'Flash fired',
03456 'exif-flash-return-0' => 'no strobe return detection function',
03457 'exif-flash-return-2' => 'strobe return light not detected',
03458 'exif-flash-return-3' => 'strobe return light detected',
03459 'exif-flash-mode-1' => 'compulsory flash firing',
03460 'exif-flash-mode-2' => 'compulsory flash suppression',
03461 'exif-flash-mode-3' => 'auto mode',
03462 'exif-flash-function-1' => 'No flash function',
03463 'exif-flash-redeye-1' => 'red-eye reduction mode',
03464
03465 'exif-focalplaneresolutionunit-2' => 'inches',
03466
03467 'exif-sensingmethod-1' => 'Undefined',
03468 'exif-sensingmethod-2' => 'One-chip color area sensor',
03469 'exif-sensingmethod-3' => 'Two-chip color area sensor',
03470 'exif-sensingmethod-4' => 'Three-chip color area sensor',
03471 'exif-sensingmethod-5' => 'Color sequential area sensor',
03472 'exif-sensingmethod-7' => 'Trilinear sensor',
03473 'exif-sensingmethod-8' => 'Color sequential linear sensor',
03474
03475 'exif-filesource-3' => 'DSC', # only translate this message to other languages if you have to change it
03476
03477 'exif-scenetype-1' => 'A directly photographed image',
03478
03479 'exif-customrendered-0' => 'Normal process',
03480 'exif-customrendered-1' => 'Custom process',
03481
03482 'exif-exposuremode-0' => 'Auto exposure',
03483 'exif-exposuremode-1' => 'Manual exposure',
03484 'exif-exposuremode-2' => 'Auto bracket',
03485
03486 'exif-whitebalance-0' => 'Auto white balance',
03487 'exif-whitebalance-1' => 'Manual white balance',
03488
03489 'exif-scenecapturetype-0' => 'Standard',
03490 'exif-scenecapturetype-1' => 'Landscape',
03491 'exif-scenecapturetype-2' => 'Portrait',
03492 'exif-scenecapturetype-3' => 'Night scene',
03493
03494 'exif-gaincontrol-0' => 'None',
03495 'exif-gaincontrol-1' => 'Low gain up',
03496 'exif-gaincontrol-2' => 'High gain up',
03497 'exif-gaincontrol-3' => 'Low gain down',
03498 'exif-gaincontrol-4' => 'High gain down',
03499
03500 'exif-contrast-0' => 'Normal',
03501 'exif-contrast-1' => 'Soft',
03502 'exif-contrast-2' => 'Hard',
03503
03504 'exif-saturation-0' => 'Normal',
03505 'exif-saturation-1' => 'Low saturation',
03506 'exif-saturation-2' => 'High saturation',
03507
03508 'exif-sharpness-0' => 'Normal',
03509 'exif-sharpness-1' => 'Soft',
03510 'exif-sharpness-2' => 'Hard',
03511
03512 'exif-subjectdistancerange-0' => 'Unknown',
03513 'exif-subjectdistancerange-1' => 'Macro',
03514 'exif-subjectdistancerange-2' => 'Close view',
03515 'exif-subjectdistancerange-3' => 'Distant view',
03516
03517 # Pseudotags used for GPSLatitudeRef and GPSDestLatitudeRef
03518 'exif-gpslatitude-n' => 'North latitude',
03519 'exif-gpslatitude-s' => 'South latitude',
03520
03521 # Pseudotags used for GPSLongitudeRef and GPSDestLongitudeRef
03522 'exif-gpslongitude-e' => 'East longitude',
03523 'exif-gpslongitude-w' => 'West longitude',
03524
03525 'exif-gpsstatus-a' => 'Measurement in progress',
03526 'exif-gpsstatus-v' => 'Measurement interoperability',
03527
03528 'exif-gpsmeasuremode-2' => '2-dimensional measurement',
03529 'exif-gpsmeasuremode-3' => '3-dimensional measurement',
03530
03531 # Pseudotags used for GPSSpeedRef and GPSDestDistanceRef
03532 'exif-gpsspeed-k' => 'Kilometers per hour',
03533 'exif-gpsspeed-m' => 'Miles per hour',
03534 'exif-gpsspeed-n' => 'Knots',
03535
03536 # Pseudotags used for GPSTrackRef, GPSImgDirectionRef and GPSDestBearingRef
03537 'exif-gpsdirection-t' => 'True direction',
03538 'exif-gpsdirection-m' => 'Magnetic direction',
03539
03540 # External editor support
03541 'edit-externally' => 'Edit this file using an external application',
03542 'edit-externally-help' => '(See the [http://www.mediawiki.org/wiki/Manual:External_editors setup instructions] for more information)',
03543
03544 # 'all' in various places, this might be different for inflected languages
03545 'recentchangesall' => 'all',
03546 'imagelistall' => 'all',
03547 'watchlistall2' => 'all',
03548 'namespacesall' => 'all',
03549 'monthsall' => 'all',
03550
03551 # E-mail address confirmation
03552 'confirmemail' => 'Confirm e-mail address',
03553 'confirmemail_noemail' => 'You do not have a valid e-mail address set in your [[Special:Preferences|user preferences]].',
03554 'confirmemail_text' => '{{SITENAME}} requires that you validate your e-mail address before using e-mail features.
03555 Activate the button below to send a confirmation mail to your address.
03556 The mail will include a link containing a code;
03557 load the link in your browser to confirm that your e-mail address is valid.',
03558 'confirmemail_pending' => 'A confirmation code has already been e-mailed to you;
03559 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.',
03560 'confirmemail_send' => 'Mail a confirmation code',
03561 'confirmemail_sent' => 'Confirmation e-mail sent.',
03562 'confirmemail_oncreate' => 'A confirmation code was sent to your e-mail address.
03563 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.',
03564 'confirmemail_sendfailed' => '{{SITENAME}} could not send your confirmation mail.
03565 Please check your e-mail address for invalid characters.
03566
03567 Mailer returned: $1',
03568 'confirmemail_invalid' => 'Invalid confirmation code.
03569 The code may have expired.',
03570 'confirmemail_needlogin' => 'You need to $1 to confirm your e-mail address.',
03571 'confirmemail_success' => 'Your e-mail address has been confirmed.
03572 You may now [[Special:UserLogin|log in]] and enjoy the wiki.',
03573 'confirmemail_loggedin' => 'Your e-mail address has now been confirmed.',
03574 'confirmemail_error' => 'Something went wrong saving your confirmation.',
03575 'confirmemail_subject' => '{{SITENAME}} e-mail address confirmation',
03576 'confirmemail_body' => 'Someone, probably you, from IP address $1,
03577 has registered an account "$2" with this e-mail address on {{SITENAME}}.
03578
03579 To confirm that this account really does belong to you and activate
03580 e-mail features on {{SITENAME}}, open this link in your browser:
03581
03582 $3
03583
03584 If you did *not* register the account, follow this link
03585 to cancel the e-mail address confirmation:
03586
03587 $5
03588
03589 This confirmation code will expire at $4.',
03590 'confirmemail_invalidated' => 'E-mail address confirmation canceled',
03591 'invalidateemail' => 'Cancel e-mail confirmation',
03592
03593 # Scary transclusion
03594 'scarytranscludedisabled' => '[Interwiki transcluding is disabled]',
03595 'scarytranscludefailed' => '[Template fetch failed for $1]',
03596 'scarytranscludetoolong' => '[URL is too long]',
03597
03598 # Trackbacks
03599 'trackbackbox' => 'Trackbacks for this page:<br />
03600 $1',
03601 'trackback' => '; $4 $5: [$2 $1]', # only translate this message to other languages if you have to change it
03602 'trackbackexcerpt' => '; $4 $5: [$2 $1]: <nowiki>$3</nowiki>', # only translate this message to other languages if you have to change it
03603 'trackbackremove' => '([$1 Delete])',
03604 'trackbacklink' => 'Trackback',
03605 'trackbackdeleteok' => 'The trackback was successfully deleted.',
03606
03607 # Delete conflict
03608 'deletedwhileediting' => "'''Warning''': This page was deleted after you started editing!",
03609 'confirmrecreate' => "User [[User:$1|$1]] ([[User talk:$1|talk]]) deleted this page after you started editing with reason:
03610 : ''$2''
03611 Please confirm that you really want to recreate this page.",
03612 'recreate' => 'Recreate',
03613
03614 'unit-pixel' => 'px', # only translate this message to other languages if you have to change it
03615
03616 # action=purge
03617 'confirm_purge_button' => 'OK',
03618 'confirm-purge-top' => 'Clear the cache of this page?',
03619 'confirm-purge-bottom' => 'Purging a page clears the cache and forces the most current revision to appear.',
03620
03621 # Separators for various lists, etc.
03622 'catseparator' => '|', # only translate this message to other languages if you have to change it
03623 'semicolon-separator' => '; ', # only translate this message to other languages if you have to change it
03624 'comma-separator' => ', ', # only translate this message to other languages if you have to change it
03625 'colon-separator' => ': ', # only translate this message to other languages if you have to change it
03626 'autocomment-prefix' => '- ', # only translate this message to other languages if you have to change it
03627 'pipe-separator' => ' | ', # only translate this message to other languages if you have to change it
03628 'word-separator' => ' ', # only translate this message to other languages if you have to change it
03629 'ellipsis' => '…', # only translate this message to other languages if you have to change it
03630 'percent' => '$1%', # only translate this message to other languages if you have to change it
03631
03632 # Multipage image navigation
03633 'imgmultipageprev' => '← previous page',
03634 'imgmultipagenext' => 'next page →',
03635 'imgmultigo' => 'Go!',
03636 'imgmultigoto' => 'Go to page $1',
03637
03638 # Table pager
03639 'ascending_abbrev' => 'asc',
03640 'descending_abbrev' => 'desc',
03641 'table_pager_next' => 'Next page',
03642 'table_pager_prev' => 'Previous page',
03643 'table_pager_first' => 'First page',
03644 'table_pager_last' => 'Last page',
03645 'table_pager_limit' => 'Show $1 items per page',
03646 'table_pager_limit_submit' => 'Go',
03647 'table_pager_empty' => 'No results',
03648
03649 # Auto-summaries
03650 'autosumm-blank' => 'Blanked the page',
03651 'autosumm-replace' => "Replaced content with '$1'",
03652 'autoredircomment' => 'Redirected page to [[$1]]',
03653 'autosumm-new' => "Created page with '$1'",
03654
03655 # Autoblock whitelist
03656 'autoblock_whitelist' => 'AOL http://webmaster.info.aol.com/proxyinfo.html
03657 *64.12.96.0/19
03658 *149.174.160.0/20
03659 *152.163.240.0/21
03660 *152.163.248.0/22
03661 *152.163.252.0/23
03662 *152.163.96.0/22
03663 *152.163.100.0/23
03664 *195.93.32.0/22
03665 *195.93.48.0/22
03666 *195.93.64.0/19
03667 *195.93.96.0/19
03668 *195.93.16.0/20
03669 *198.81.0.0/22
03670 *198.81.16.0/20
03671 *198.81.8.0/23
03672 *202.67.64.128/25
03673 *205.188.192.0/20
03674 *205.188.208.0/23
03675 *205.188.112.0/20
03676 *205.188.146.144/30
03677 *207.200.112.0/21', # do not translate or duplicate this message to other languages
03678
03679 # Size units
03680 'size-bytes' => '$1 B', # only translate this message to other languages if you have to change it
03681 'size-kilobytes' => '$1 KB', # only translate this message to other languages if you have to change it
03682 'size-megabytes' => '$1 MB', # only translate this message to other languages if you have to change it
03683 'size-gigabytes' => '$1 GB', # only translate this message to other languages if you have to change it
03684
03685 # Live preview
03686 'livepreview-loading' => 'Loading…',
03687 'livepreview-ready' => 'Loading… Ready!',
03688 'livepreview-failed' => 'Live preview failed! Try normal preview.',
03689 'livepreview-error' => 'Failed to connect: $1 "$2".
03690 Try normal preview.',
03691
03692 # Friendlier slave lag warnings
03693 'lag-warn-normal' => 'Changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.',
03694 'lag-warn-high' => 'Due to high database server lag, changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.',
03695
03696 # Watchlist editor
03697 'watchlistedit-numitems' => 'Your watchlist contains {{PLURAL:$1|1 title|$1 titles}}, excluding talk pages.',
03698 'watchlistedit-noitems' => 'Your watchlist contains no titles.',
03699 'watchlistedit-normal-title' => 'Edit watchlist',
03700 'watchlistedit-normal-legend' => 'Remove titles from watchlist',
03701 'watchlistedit-normal-explain' => 'Titles on your watchlist are shown below.
03702 To remove a title, check the box next to it, and click Remove Titles.
03703 You can also [[Special:Watchlist/raw|edit the raw list]].',
03704 'watchlistedit-normal-submit' => 'Remove titles',
03705 'watchlistedit-normal-done' => '{{PLURAL:$1|1 title was|$1 titles were}} removed from your watchlist:',
03706 'watchlistedit-raw-title' => 'Edit raw watchlist',
03707 'watchlistedit-raw-legend' => 'Edit raw watchlist',
03708 'watchlistedit-raw-explain' => 'Titles on your watchlist are shown below, and can be edited by adding to and removing from the list;
03709 one title per line.
03710 When finished, click Update Watchlist.
03711 You can also [[Special:Watchlist/edit|use the standard editor]].',
03712 'watchlistedit-raw-titles' => 'Titles:',
03713 'watchlistedit-raw-submit' => 'Update Watchlist',
03714 'watchlistedit-raw-done' => 'Your watchlist has been updated.',
03715 'watchlistedit-raw-added' => '{{PLURAL:$1|1 title was|$1 titles were}} added:',
03716 'watchlistedit-raw-removed' => '{{PLURAL:$1|1 title was|$1 titles were}} removed:',
03717
03718 # Watchlist editing tools
03719 'watchlisttools-view' => 'View relevant changes',
03720 'watchlisttools-edit' => 'View and edit watchlist',
03721 'watchlisttools-raw' => 'Edit raw watchlist',
03722
03723 # Iranian month names
03724 'iranian-calendar-m1' => 'Farvardin', # only translate this message to other languages if you have to change it
03725 'iranian-calendar-m2' => 'Ordibehesht', # only translate this message to other languages if you have to change it
03726 'iranian-calendar-m3' => 'Khordad', # only translate this message to other languages if you have to change it
03727 'iranian-calendar-m4' => 'Tir', # only translate this message to other languages if you have to change it
03728 'iranian-calendar-m5' => 'Mordad', # only translate this message to other languages if you have to change it
03729 'iranian-calendar-m6' => 'Shahrivar', # only translate this message to other languages if you have to change it
03730 'iranian-calendar-m7' => 'Mehr', # only translate this message to other languages if you have to change it
03731 'iranian-calendar-m8' => 'Aban', # only translate this message to other languages if you have to change it
03732 'iranian-calendar-m9' => 'Azar', # only translate this message to other languages if you have to change it
03733 'iranian-calendar-m10' => 'Dey', # only translate this message to other languages if you have to change it
03734 'iranian-calendar-m11' => 'Bahman', # only translate this message to other languages if you have to change it
03735 'iranian-calendar-m12' => 'Esfand', # only translate this message to other languages if you have to change it
03736
03737 # Hijri month names
03738 'hijri-calendar-m1' => 'Muharram', # only translate this message to other languages if you have to change it
03739 'hijri-calendar-m2' => 'Safar', # only translate this message to other languages if you have to change it
03740 'hijri-calendar-m3' => "Rabi' al-awwal", # only translate this message to other languages if you have to change it
03741 'hijri-calendar-m4' => "Rabi' al-thani", # only translate this message to other languages if you have to change it
03742 'hijri-calendar-m5' => 'Jumada al-awwal', # only translate this message to other languages if you have to change it
03743 'hijri-calendar-m6' => 'Jumada al-thani', # only translate this message to other languages if you have to change it
03744 'hijri-calendar-m7' => 'Rajab', # only translate this message to other languages if you have to change it
03745 'hijri-calendar-m8' => "Sha'aban", # only translate this message to other languages if you have to change it
03746 'hijri-calendar-m9' => 'Ramadan', # only translate this message to other languages if you have to change it
03747 'hijri-calendar-m10' => 'Shawwal', # only translate this message to other languages if you have to change it
03748 'hijri-calendar-m11' => "Dhu al-Qi'dah", # only translate this message to other languages if you have to change it
03749 'hijri-calendar-m12' => 'Dhu al-Hijjah', # only translate this message to other languages if you have to change it
03750
03751 # Hebrew month names
03752 'hebrew-calendar-m1' => 'Tishrei', # only translate this message to other languages if you have to change it
03753 'hebrew-calendar-m2' => 'Cheshvan', # only translate this message to other languages if you have to change it
03754 'hebrew-calendar-m3' => 'Kislev', # only translate this message to other languages if you have to change it
03755 'hebrew-calendar-m4' => 'Tevet', # only translate this message to other languages if you have to change it
03756 'hebrew-calendar-m5' => 'Shevat', # only translate this message to other languages if you have to change it
03757 'hebrew-calendar-m6' => 'Adar', # only translate this message to other languages if you have to change it
03758 'hebrew-calendar-m6a' => 'Adar I', # only translate this message to other languages if you have to change it
03759 'hebrew-calendar-m6b' => 'Adar II', # only translate this message to other languages if you have to change it
03760 'hebrew-calendar-m7' => 'Nisan', # only translate this message to other languages if you have to change it
03761 'hebrew-calendar-m8' => 'Iyar', # only translate this message to other languages if you have to change it
03762 'hebrew-calendar-m9' => 'Sivan', # only translate this message to other languages if you have to change it
03763 'hebrew-calendar-m10' => 'Tamuz', # only translate this message to other languages if you have to change it
03764 'hebrew-calendar-m11' => 'Av', # only translate this message to other languages if you have to change it
03765 'hebrew-calendar-m12' => 'Elul', # only translate this message to other languages if you have to change it
03766 'hebrew-calendar-m1-gen' => 'Tishrei', # only translate this message to other languages if you have to change it
03767 'hebrew-calendar-m2-gen' => 'Cheshvan', # only translate this message to other languages if you have to change it
03768 'hebrew-calendar-m3-gen' => 'Kislev', # only translate this message to other languages if you have to change it
03769 'hebrew-calendar-m4-gen' => 'Tevet', # only translate this message to other languages if you have to change it
03770 'hebrew-calendar-m5-gen' => 'Shevat', # only translate this message to other languages if you have to change it
03771 'hebrew-calendar-m6-gen' => 'Adar', # only translate this message to other languages if you have to change it
03772 'hebrew-calendar-m6a-gen' => 'Adar I', # only translate this message to other languages if you have to change it
03773 'hebrew-calendar-m6b-gen' => 'Adar II', # only translate this message to other languages if you have to change it
03774 'hebrew-calendar-m7-gen' => 'Nisan', # only translate this message to other languages if you have to change it
03775 'hebrew-calendar-m8-gen' => 'Iyar', # only translate this message to other languages if you have to change it
03776 'hebrew-calendar-m9-gen' => 'Sivan', # only translate this message to other languages if you have to change it
03777 'hebrew-calendar-m10-gen' => 'Tamuz', # only translate this message to other languages if you have to change it
03778 'hebrew-calendar-m11-gen' => 'Av', # only translate this message to other languages if you have to change it
03779 'hebrew-calendar-m12-gen' => 'Elul', # only translate this message to other languages if you have to change it
03780
03781 # Signatures
03782 'signature' => '[[{{ns:user}}:$1|$2]]', # do not translate or duplicate this message to other languages
03783 'signature-anon' => '[[{{#special:Contributions}}/$1|$2]]', # do not translate or duplicate this message to other languages
03784 'timezone-utc' => 'UTC', # only translate this message to other languages if you have to change it
03785
03786 # Core parser functions
03787 'unknown_extension_tag' => 'Unknown extension tag "$1"',
03788 'duplicate-defaultsort' => '\'\'\'Warning:\'\'\' Default sort key "$2" overrides earlier default sort key "$1".',
03789
03790 # Special:Version
03791 'version' => 'Version', # Not used as normal message but as header for the special page itself
03792 'version-extensions' => 'Installed extensions',
03793 'version-specialpages' => 'Special pages',
03794 'version-parserhooks' => 'Parser hooks',
03795 'version-variables' => 'Variables',
03796 'version-other' => 'Other',
03797 'version-mediahandlers' => 'Media handlers',
03798 'version-hooks' => 'Hooks',
03799 'version-extension-functions' => 'Extension functions',
03800 'version-parser-extensiontags' => 'Parser extension tags',
03801 'version-parser-function-hooks' => 'Parser function hooks',
03802 'version-skin-extension-functions' => 'Skin extension functions',
03803 'version-hook-name' => 'Hook name',
03804 'version-hook-subscribedby' => 'Subscribed by',
03805 'version-version' => 'Version',
03806 'version-license' => 'License',
03807 'version-software' => 'Installed software',
03808 'version-software-product' => 'Product',
03809 'version-software-version' => 'Version',
03810
03811 # Special:FilePath
03812 'filepath' => 'File path',
03813 'filepath-page' => 'File:',
03814 'filepath-submit' => 'Path',
03815 'filepath-summary' => 'This special page returns the complete path for a file.
03816 Images are shown in full resolution, other file types are started with their associated program directly.
03817
03818 Enter the file name without the "{{ns:file}}:" prefix.',
03819
03820 # Special:FileDuplicateSearch
03821 'fileduplicatesearch' => 'Search for duplicate files',
03822 'fileduplicatesearch-summary' => 'Search for duplicate files on base of its hash value.
03823
03824 Enter the filename without the "{{ns:file}}:" prefix.',
03825 'fileduplicatesearch-legend' => 'Search for a duplicate',
03826 'fileduplicatesearch-filename' => 'Filename:',
03827 'fileduplicatesearch-submit' => 'Search',
03828 'fileduplicatesearch-info' => '$1 × $2 pixel<br />File size: $3<br />MIME type: $4',
03829 'fileduplicatesearch-result-1' => 'The file "$1" has no identical duplication.',
03830 'fileduplicatesearch-result-n' => 'The file "$1" has {{PLURAL:$2|1 identical duplication|$2 identical duplications}}.',
03831
03832 # Special:SpecialPages
03833 'specialpages' => 'Special pages',
03834 'specialpages-summary' => '', # do not translate or duplicate this message to other languages
03835 'specialpages-note' => '----
03836 * Normal special pages.
03837 * <strong class="mw-specialpagerestricted">Restricted special pages.</strong>',
03838 'specialpages-group-maintenance' => 'Maintenance reports',
03839 'specialpages-group-other' => 'Other special pages',
03840 'specialpages-group-login' => 'Login / sign up',
03841 'specialpages-group-changes' => 'Recent changes and logs',
03842 'specialpages-group-media' => 'Media reports and uploads',
03843 'specialpages-group-users' => 'Users and rights',
03844 'specialpages-group-highuse' => 'High use pages',
03845 'specialpages-group-pages' => 'Lists of pages',
03846 'specialpages-group-pagetools' => 'Page tools',
03847 'specialpages-group-wiki' => 'Wiki data and tools',
03848 'specialpages-group-redirects' => 'Redirecting special pages',
03849 'specialpages-group-spam' => 'Spam tools',
03850
03851 # Special:BlankPage
03852 'blankpage' => 'Blank page',
03853 'intentionallyblankpage' => 'This page is intentionally left blank.',
03854
03855 # External image whitelist
03856 'external_image_whitelist' => ' #Leave this line exactly as it is<pre>
03857 #Put regular expression fragments (just the part that goes between the //) below
03858 #These will be matched with the URLs of external (hotlinked) images
03859 #Those that match will be displayed as images, otherwise only a link to the image will be shown
03860 #Lines beginning with # are treated as comments
03861 #This is case-insensitive
03862
03863 #Put all regex fragments above this line. Leave this line exactly as it is</pre>',
03864
03865 # Special:Tags
03866 'tags' => 'Valid change tags',
03867 'tag-filter' => '[[Special:Tags|Tag]] filter:',
03868 'tag-filter-submit' => 'Filter',
03869 'tags-title' => 'Tags',
03870 'tags-intro' => 'This page lists the tags that the software may mark an edit with, and their meaning.',
03871 'tags-tag' => 'Internal tag name',
03872 'tags-display-header' => 'Appearance on change lists',
03873 'tags-description-header' => 'Full description of meaning',
03874 'tags-hitcount-header' => 'Tagged changes',
03875 'tags-edit' => 'edit',
03876 'tags-hitcount' => '$1 {{PLURAL:$1|change|changes}}',
03877
03878 # Database error messages
03879 'dberr-header' => 'This wiki has a problem',
03880 'dberr-problems' => 'Sorry! This site is experiencing technical difficulties.',
03881 'dberr-again' => 'Try waiting a few minutes and reloading.',
03882 'dberr-info' => '(Cannot contact the database server: $1)',
03883 'dberr-usegoogle' => 'You can try searching via Google in the meantime.',
03884 'dberr-outofdate' => 'Note that their indexes of our content may be out of date.',
03885 'dberr-cachederror' => 'This is a cached copy of the requested page, and may not be up to date.',
03886
03887 );