* (bug 5755) Introduce {{CURRENTMONTH1}} and {{LOCALMONTH1}} to display the month...
[lhc/web/wiklou.git] / languages / messages / MessagesEn.php
1 <?php
2 /**
3 * This is the default English localisation file
4 *
5 * END USERS: DO NOT EDIT THIS FILE DIRECTLY!
6 *
7 * Changes in this file will be lost during software upgrades.
8 * You can make your customizations on the wiki.
9 * While logged in as administrator, go to [[Special:Allmessages]]
10 * and edit the MediaWiki:* pages listed there.
11 *
12 * See MessagesQqq.php for message documentation incl. usage of parameters
13 */
14
15 /**
16 * Fallback language, used for all unspecified messages and behaviour. This
17 * is English by default, for all files other than this one.
18 *
19 * Do NOT set this to false in any other message file! Leave the line out to
20 * accept the default fallback to "en".
21 */
22 $fallback = false;
23
24 /**
25 * Is the language written right-to-left?
26 * Note that right-to-left languages generally also specify
27 * $defaultUserOptionOverrides = array( 'quickbar' => 2 );
28 */
29 $rtl = false;
30
31 /**
32 * Optional array mapping ASCII digits 0-9 to local digits.
33 */
34 $digitTransformTable = null;
35
36 /**
37 * Transform table for decimal point '.' and thousands separator ','
38 */
39 $separatorTransformTable = null;
40
41 /**
42 * Overrides for the default user options. This is mainly used by RTL languages.
43 */
44 $defaultUserOptionOverrides = array();
45
46 /**
47 * Extra user preferences which will be shown in Special:Preferences as
48 * checkboxes. Extra settings in derived languages will automatically be
49 * appended to the array of the fallback languages.
50 */
51 $extraUserToggles = array();
52
53 /**
54 * URLs do not specify their encoding. UTF-8 is used by default, but if the
55 * URL is not a valid UTF-8 sequence, we have to try to guess what the real
56 * encoding is. The encoding used in this case is defined below, and must be
57 * supported by iconv().
58 */
59 $fallback8bitEncoding = 'windows-1252';
60
61 /**
62 * To allow "foo[[bar]]" to extend the link over the whole word "foobar"
63 */
64 $linkPrefixExtension = false;
65
66 /**
67 * Namespace names. NS_PROJECT is always set to $wgMetaNamespace after the
68 * settings are loaded, it will be ignored even if you specify it here.
69 *
70 * NS_PROJECT_TALK will be set to $wgMetaNamespaceTalk if that variable is
71 * set, otherwise the string specified here will be used. The string may
72 * contain "$1", which will be replaced by the name of NS_PROJECT. It may
73 * also contain a grammatical transformation, e.g.
74 *
75 * NS_PROJECT_TALK => 'Keskustelu_{{grammar:elative|$1}}'
76 *
77 * Only one grammatical transform may be specified in the string. For
78 * performance reasons, this transformation is done locally by the language
79 * module rather than by the full wikitext parser. As a result, no other
80 * parser features are available.
81 */
82 $namespaceNames = array(
83 NS_MEDIA => 'Media',
84 NS_SPECIAL => 'Special',
85 NS_MAIN => '',
86 NS_TALK => 'Talk',
87 NS_USER => 'User',
88 NS_USER_TALK => 'User_talk',
89 # NS_PROJECT set by $wgMetaNamespace
90 NS_PROJECT_TALK => '$1_talk',
91 NS_FILE => 'File',
92 NS_FILE_TALK => 'File_talk',
93 NS_MEDIAWIKI => 'MediaWiki',
94 NS_MEDIAWIKI_TALK => 'MediaWiki_talk',
95 NS_TEMPLATE => 'Template',
96 NS_TEMPLATE_TALK => 'Template_talk',
97 NS_HELP => 'Help',
98 NS_HELP_TALK => 'Help_talk',
99 NS_CATEGORY => 'Category',
100 NS_CATEGORY_TALK => 'Category_talk',
101 );
102
103 /**
104 * Array of namespace aliases, mapping from name to NS_xxx index
105 */
106 $namespaceAliases = array();
107
108 /**
109 * Deprecated, use the message array
110 */
111 $mathNames = array(
112 MW_MATH_PNG => 'mw_math_png',
113 MW_MATH_SIMPLE => 'mw_math_simple',
114 MW_MATH_HTML => 'mw_math_html',
115 MW_MATH_SOURCE => 'mw_math_source',
116 MW_MATH_MODERN => 'mw_math_modern',
117 MW_MATH_MATHML => 'mw_math_mathml'
118 );
119
120 /**
121 * A list of date format preference keys which can be selected in user
122 * preferences. New preference keys can be added, provided they are supported
123 * by the language class's timeanddate(). Only the 5 keys listed below are
124 * supported by the wikitext converter (DateFormatter.php).
125 *
126 * The special key "default" is an alias for either dmy or mdy depending on
127 * $wgAmericanDates
128 */
129 $datePreferences = array(
130 'default',
131 'mdy',
132 'dmy',
133 'ymd',
134 'ISO 8601',
135 );
136
137 /**
138 * The date format to use for generated dates in the user interface.
139 * This may be one of the above date preferences, or the special value
140 * "dmy or mdy", which uses mdy if $wgAmericanDates is true, and dmy
141 * if $wgAmericanDates is false.
142 */
143 $defaultDateFormat = 'dmy or mdy';
144
145 /**
146 * Associative array mapping old numeric date formats, which may still be
147 * stored in user preferences, to the new string formats.
148 */
149 $datePreferenceMigrationMap = array(
150 'default',
151 'mdy',
152 'dmy',
153 'ymd'
154 );
155
156 /**
157 * These are formats for dates generated by MediaWiki (as opposed to the wikitext
158 * DateFormatter). Documentation for the format string can be found in
159 * Language.php, search for sprintfDate.
160 *
161 * This array is automatically inherited by all subclasses. Individual keys can be
162 * overridden.
163 */
164 $dateFormats = array(
165 'mdy time' => 'H:i',
166 'mdy date' => 'F j, Y',
167 'mdy both' => 'H:i, F j, Y',
168
169 'dmy time' => 'H:i',
170 'dmy date' => 'j F Y',
171 'dmy both' => 'H:i, j F Y',
172
173 'ymd time' => 'H:i',
174 'ymd date' => 'Y F j',
175 'ymd both' => 'H:i, Y F j',
176
177 'ISO 8601 time' => 'xnH:xni:xns',
178 'ISO 8601 date' => 'xnY-xnm-xnd',
179 'ISO 8601 both' => 'xnY-xnm-xnd"T"xnH:xni:xns',
180 );
181
182 /**
183 * Default list of book sources
184 */
185 $bookstoreList = array(
186 'AddALL' => 'http://www.addall.com/New/Partner.cgi?query=$1&type=ISBN',
187 'PriceSCAN' => 'http://www.pricescan.com/books/bookDetail.asp?isbn=$1',
188 'Barnes & Noble' => 'http://search.barnesandnoble.com/bookSearch/isbnInquiry.asp?isbn=$1',
189 'Amazon.com' => 'http://www.amazon.com/exec/obidos/ISBN=$1'
190 );
191
192 /**
193 * Magic words
194 * Customisable syntax for wikitext and elsewhere.
195 *
196 * IDs must be valid identifiers, they cannot contain hyphens.
197 *
198 * Note to translators:
199 * Please include the English words as synonyms. This allows people
200 * from other wikis to contribute more easily.
201 *
202 * This array can be modified at runtime with the LanguageGetMagic hook
203 */
204 $magicWords = array(
205 # ID CASE SYNONYMS
206 'redirect' => array( 0, '#REDIRECT' ),
207 'notoc' => array( 0, '__NOTOC__' ),
208 'nogallery' => array( 0, '__NOGALLERY__' ),
209 'forcetoc' => array( 0, '__FORCETOC__' ),
210 'toc' => array( 0, '__TOC__' ),
211 'noeditsection' => array( 0, '__NOEDITSECTION__' ),
212 'noheader' => array( 0, '__NOHEADER__' ),
213 'currentmonth' => array( 1, 'CURRENTMONTH', 'CURRENTMONTH2' ),
214 'currentmonth1' => array( 1, 'CURRENTMONTH1' ),
215 'currentmonthname' => array( 1, 'CURRENTMONTHNAME' ),
216 'currentmonthnamegen' => array( 1, 'CURRENTMONTHNAMEGEN' ),
217 'currentmonthabbrev' => array( 1, 'CURRENTMONTHABBREV' ),
218 'currentday' => array( 1, 'CURRENTDAY' ),
219 'currentday2' => array( 1, 'CURRENTDAY2' ),
220 'currentdayname' => array( 1, 'CURRENTDAYNAME' ),
221 'currentyear' => array( 1, 'CURRENTYEAR' ),
222 'currenttime' => array( 1, 'CURRENTTIME' ),
223 'currenthour' => array( 1, 'CURRENTHOUR' ),
224 'localmonth' => array( 1, 'LOCALMONTH', 'LOCALMONTH2' ),
225 'localmonth1' => array( 1, 'LOCALMONTH1' ),
226 'localmonthname' => array( 1, 'LOCALMONTHNAME' ),
227 'localmonthnamegen' => array( 1, 'LOCALMONTHNAMEGEN' ),
228 'localmonthabbrev' => array( 1, 'LOCALMONTHABBREV' ),
229 'localday' => array( 1, 'LOCALDAY' ),
230 'localday2' => array( 1, 'LOCALDAY2' ),
231 'localdayname' => array( 1, 'LOCALDAYNAME' ),
232 'localyear' => array( 1, 'LOCALYEAR' ),
233 'localtime' => array( 1, 'LOCALTIME' ),
234 'localhour' => array( 1, 'LOCALHOUR' ),
235 'numberofpages' => array( 1, 'NUMBEROFPAGES' ),
236 'numberofarticles' => array( 1, 'NUMBEROFARTICLES' ),
237 'numberoffiles' => array( 1, 'NUMBEROFFILES' ),
238 'numberofusers' => array( 1, 'NUMBEROFUSERS' ),
239 'numberofactiveusers' => array( 1, 'NUMBEROFACTIVEUSERS' ),
240 'numberofedits' => array( 1, 'NUMBEROFEDITS' ),
241 'numberofviews' => array( 1, 'NUMBEROFVIEWS' ),
242 'pagename' => array( 1, 'PAGENAME' ),
243 'pagenamee' => array( 1, 'PAGENAMEE' ),
244 'namespace' => array( 1, 'NAMESPACE' ),
245 'namespacee' => array( 1, 'NAMESPACEE' ),
246 'talkspace' => array( 1, 'TALKSPACE' ),
247 'talkspacee' => array( 1, 'TALKSPACEE' ),
248 'subjectspace' => array( 1, 'SUBJECTSPACE', 'ARTICLESPACE' ),
249 'subjectspacee' => array( 1, 'SUBJECTSPACEE', 'ARTICLESPACEE' ),
250 'fullpagename' => array( 1, 'FULLPAGENAME' ),
251 'fullpagenamee' => array( 1, 'FULLPAGENAMEE' ),
252 'subpagename' => array( 1, 'SUBPAGENAME' ),
253 'subpagenamee' => array( 1, 'SUBPAGENAMEE' ),
254 'basepagename' => array( 1, 'BASEPAGENAME' ),
255 'basepagenamee' => array( 1, 'BASEPAGENAMEE' ),
256 'talkpagename' => array( 1, 'TALKPAGENAME' ),
257 'talkpagenamee' => array( 1, 'TALKPAGENAMEE' ),
258 'subjectpagename' => array( 1, 'SUBJECTPAGENAME', 'ARTICLEPAGENAME' ),
259 'subjectpagenamee' => array( 1, 'SUBJECTPAGENAMEE', 'ARTICLEPAGENAMEE' ),
260 'msg' => array( 0, 'MSG:' ),
261 'subst' => array( 0, 'SUBST:' ),
262 'msgnw' => array( 0, 'MSGNW:' ),
263 'img_thumbnail' => array( 1, 'thumbnail', 'thumb' ),
264 'img_manualthumb' => array( 1, 'thumbnail=$1', 'thumb=$1'),
265 'img_right' => array( 1, 'right' ),
266 'img_left' => array( 1, 'left' ),
267 'img_none' => array( 1, 'none' ),
268 'img_width' => array( 1, '$1px' ),
269 'img_center' => array( 1, 'center', 'centre' ),
270 'img_framed' => array( 1, 'framed', 'enframed', 'frame' ),
271 'img_frameless' => array( 1, 'frameless' ),
272 'img_page' => array( 1, 'page=$1', 'page $1' ),
273 'img_upright' => array( 1, 'upright', 'upright=$1', 'upright $1' ),
274 'img_border' => array( 1, 'border' ),
275 'img_baseline' => array( 1, 'baseline' ),
276 'img_sub' => array( 1, 'sub' ),
277 'img_super' => array( 1, 'super', 'sup' ),
278 'img_top' => array( 1, 'top' ),
279 'img_text_top' => array( 1, 'text-top' ),
280 'img_middle' => array( 1, 'middle' ),
281 'img_bottom' => array( 1, 'bottom' ),
282 'img_text_bottom' => array( 1, 'text-bottom' ),
283 'img_link' => array( 1, 'link=$1' ),
284 'img_alt' => array( 1, 'alt=$1' ),
285 'int' => array( 0, 'INT:' ),
286 'sitename' => array( 1, 'SITENAME' ),
287 'ns' => array( 0, 'NS:' ),
288 'localurl' => array( 0, 'LOCALURL:' ),
289 'localurle' => array( 0, 'LOCALURLE:' ),
290 'server' => array( 0, 'SERVER' ),
291 'servername' => array( 0, 'SERVERNAME' ),
292 'scriptpath' => array( 0, 'SCRIPTPATH' ),
293 'grammar' => array( 0, 'GRAMMAR:' ),
294 'gender' => array( 0, 'GENDER:' ),
295 'notitleconvert' => array( 0, '__NOTITLECONVERT__', '__NOTC__'),
296 'nocontentconvert' => array( 0, '__NOCONTENTCONVERT__', '__NOCC__'),
297 'currentweek' => array( 1, 'CURRENTWEEK' ),
298 'currentdow' => array( 1, 'CURRENTDOW' ),
299 'localweek' => array( 1, 'LOCALWEEK' ),
300 'localdow' => array( 1, 'LOCALDOW' ),
301 'revisionid' => array( 1, 'REVISIONID' ),
302 'revisionday' => array( 1, 'REVISIONDAY' ),
303 'revisionday2' => array( 1, 'REVISIONDAY2' ),
304 'revisionmonth' => array( 1, 'REVISIONMONTH' ),
305 'revisionyear' => array( 1, 'REVISIONYEAR' ),
306 'revisiontimestamp' => array( 1, 'REVISIONTIMESTAMP' ),
307 'revisionuser' => array( 1, 'REVISIONUSER' ),
308 'plural' => array( 0, 'PLURAL:' ),
309 'fullurl' => array( 0, 'FULLURL:' ),
310 'fullurle' => array( 0, 'FULLURLE:' ),
311 'lcfirst' => array( 0, 'LCFIRST:' ),
312 'ucfirst' => array( 0, 'UCFIRST:' ),
313 'lc' => array( 0, 'LC:' ),
314 'uc' => array( 0, 'UC:' ),
315 'raw' => array( 0, 'RAW:' ),
316 'displaytitle' => array( 1, 'DISPLAYTITLE' ),
317 'rawsuffix' => array( 1, 'R' ),
318 'newsectionlink' => array( 1, '__NEWSECTIONLINK__' ),
319 'nonewsectionlink' => array( 1, '__NONEWSECTIONLINK__' ),
320 'currentversion' => array( 1, 'CURRENTVERSION' ),
321 'urlencode' => array( 0, 'URLENCODE:' ),
322 'anchorencode' => array( 0, 'ANCHORENCODE' ),
323 'currenttimestamp' => array( 1, 'CURRENTTIMESTAMP' ),
324 'localtimestamp' => array( 1, 'LOCALTIMESTAMP' ),
325 'directionmark' => array( 1, 'DIRECTIONMARK', 'DIRMARK' ),
326 'language' => array( 0, '#LANGUAGE:' ),
327 'contentlanguage' => array( 1, 'CONTENTLANGUAGE', 'CONTENTLANG' ),
328 'pagesinnamespace' => array( 1, 'PAGESINNAMESPACE:', 'PAGESINNS:' ),
329 'numberofadmins' => array( 1, 'NUMBEROFADMINS' ),
330 'formatnum' => array( 0, 'FORMATNUM' ),
331 'padleft' => array( 0, 'PADLEFT' ),
332 'padright' => array( 0, 'PADRIGHT' ),
333 'special' => array( 0, 'special', ),
334 'defaultsort' => array( 1, 'DEFAULTSORT:', 'DEFAULTSORTKEY:', 'DEFAULTCATEGORYSORT:' ),
335 'filepath' => array( 0, 'FILEPATH:' ),
336 'tag' => array( 0, 'tag' ),
337 'hiddencat' => array( 1, '__HIDDENCAT__' ),
338 'pagesincategory' => array( 1, 'PAGESINCATEGORY', 'PAGESINCAT' ),
339 'pagesize' => array( 1, 'PAGESIZE' ),
340 'index' => array( 1, '__INDEX__' ),
341 'noindex' => array( 1, '__NOINDEX__' ),
342 'numberingroup' => array( 1, 'NUMBERINGROUP', 'NUMINGROUP' ),
343 'staticredirect' => array( 1, '__STATICREDIRECT__' ),
344 'protectionlevel' => array( 1, 'PROTECTIONLEVEL' ),
345 'formatdate' => array( 0, 'formatdate', 'dateformat' ),
346 'groupconvert' => array( 0, 'GROUPCONVERT:', 'GC:' ),
347 );
348
349 /**
350 * Alternate names of special pages. All names are case-insensitive. The first
351 * listed alias will be used as the default. Aliases from the fallback
352 * localisation (usually English) will be included by default.
353 *
354 * This array may be altered at runtime using the LanguageGetSpecialPageAliases
355 * hook.
356 */
357 $specialPageAliases = array(
358 'DoubleRedirects' => array( 'DoubleRedirects' ),
359 'BrokenRedirects' => array( 'BrokenRedirects' ),
360 'Disambiguations' => array( 'Disambiguations' ),
361 'Userlogin' => array( 'UserLogin' ),
362 'Userlogout' => array( 'UserLogout' ),
363 'CreateAccount' => array( 'CreateAccount' ),
364 'Preferences' => array( 'Preferences' ),
365 'Watchlist' => array( 'Watchlist' ),
366 'Recentchanges' => array( 'RecentChanges' ),
367 'Upload' => array( 'Upload' ),
368 'Listfiles' => array( 'ListFiles', 'FileList', 'ImageList' ),
369 'Newimages' => array( 'NewFiles', 'NewImages' ),
370 'Listusers' => array( 'ListUsers', 'UserList' ),
371 'Listgrouprights' => array( 'ListGroupRights', 'UserGroupRights' ),
372 'Statistics' => array( 'Statistics' ),
373 'Randompage' => array( 'Random', 'RandomPage' ),
374 'Lonelypages' => array( 'LonelyPages', 'OrphanedPages' ),
375 'Uncategorizedpages' => array( 'UncategorizedPages' ),
376 'Uncategorizedcategories' => array( 'UncategorizedCategories' ),
377 'Uncategorizedimages' => array( 'UncategorizedFiles', 'UncategorizedImages' ),
378 'Uncategorizedtemplates' => array( 'UncategorizedTemplates' ),
379 'Unusedcategories' => array( 'UnusedCategories' ),
380 'Unusedimages' => array( 'UnusedFiles', 'UnusedImages' ),
381 'Wantedpages' => array( 'WantedPages', 'BrokenLinks' ),
382 'Wantedcategories' => array( 'WantedCategories' ),
383 'Wantedfiles' => array( 'WantedFiles' ),
384 'Wantedtemplates' => array( 'WantedTemplates' ),
385 'Mostlinked' => array( 'MostLinkedPages', 'MostLinked' ),
386 'Mostlinkedcategories' => array( 'MostLinkedCategories', 'MostUsedCategories' ),
387 'Mostlinkedtemplates' => array( 'MostLinkedTemplates', 'MostUsedTemplates' ),
388 'Mostimages' => array( 'MostLinkedFiles', 'MostFiles', 'MostImages' ),
389 'Mostcategories' => array( 'MostCategories' ),
390 'Mostrevisions' => array( 'MostRevisions' ),
391 'Fewestrevisions' => array( 'FewestRevisions' ),
392 'Shortpages' => array( 'ShortPages' ),
393 'Longpages' => array( 'LongPages' ),
394 'Newpages' => array( 'NewPages' ),
395 'Ancientpages' => array( 'AncientPages' ),
396 'Deadendpages' => array( 'DeadendPages' ),
397 'Protectedpages' => array( 'ProtectedPages' ),
398 'Protectedtitles' => array( 'ProtectedTitles' ),
399 'Allpages' => array( 'AllPages' ),
400 'Prefixindex' => array( 'PrefixIndex' ) ,
401 'Ipblocklist' => array( 'BlockList', 'ListBlocks', 'IPBlockList' ),
402 'Specialpages' => array( 'SpecialPages' ),
403 'Contributions' => array( 'Contributions' ),
404 'Emailuser' => array( 'EmailUser' ),
405 'Confirmemail' => array( 'ConfirmEmail' ),
406 'Whatlinkshere' => array( 'WhatLinksHere' ),
407 'Recentchangeslinked' => array( 'RecentChangesLinked', 'RelatedChanges' ),
408 'Movepage' => array( 'MovePage' ),
409 'Blockme' => array( 'BlockMe' ),
410 'Booksources' => array( 'BookSources' ),
411 'Categories' => array( 'Categories' ),
412 'Export' => array( 'Export' ),
413 'Version' => array( 'Version' ),
414 'Allmessages' => array( 'AllMessages' ),
415 'Log' => array( 'Log', 'Logs' ),
416 'Blockip' => array( 'Block', 'BlockIP', 'BlockUser' ),
417 'Undelete' => array( 'Undelete' ),
418 'Import' => array( 'Import' ),
419 'Lockdb' => array( 'LockDB' ),
420 'Unlockdb' => array( 'UnlockDB' ),
421 'Userrights' => array( 'UserRights' ),
422 'MIMEsearch' => array( 'MIMESearch' ),
423 'FileDuplicateSearch' => array( 'FileDuplicateSearch' ),
424 'Unwatchedpages' => array( 'UnwatchedPages' ),
425 'Listredirects' => array( 'ListRedirects' ),
426 'Revisiondelete' => array( 'RevisionDelete' ),
427 'Unusedtemplates' => array( 'UnusedTemplates' ),
428 'Randomredirect' => array( 'RandomRedirect' ),
429 'Mypage' => array( 'MyPage' ),
430 'Mytalk' => array( 'MyTalk' ),
431 'Mycontributions' => array( 'MyContributions' ),
432 'Listadmins' => array( 'ListAdmins' ),
433 'Listbots' => array( 'ListBots' ),
434 'Popularpages' => array( 'PopularPages' ),
435 'Search' => array( 'Search' ),
436 'Resetpass' => array( 'ChangePassword', 'ResetPass', 'ResetPassword' ),
437 'Withoutinterwiki' => array( 'WithoutInterwiki' ),
438 'MergeHistory' => array( 'MergeHistory' ),
439 'Filepath' => array( 'FilePath' ),
440 'Invalidateemail' => array( 'InvalidateEmail' ),
441 'Blankpage' => array( 'BlankPage' ),
442 'LinkSearch' => array( 'LinkSearch' ),
443 'DeletedContributions' => array( 'DeletedContributions' ),
444 'Tags' => array( 'Tags' ),
445 );
446
447 /**
448 * Regular expression matching the "link trail", e.g. "ed" in [[Toast]]ed, as
449 * the first group, and the remainder of the string as the second group.
450 */
451 $linkTrail = '/^([a-z]+)(.*)$/sD';
452
453 /**
454 * List of filenames for some ui images that can be overridden per language
455 * basis if needed.
456 */
457 $imageFiles = array(
458 'button-bold' => 'button_bold.png',
459 'button-italic' => 'button_italic.png',
460 'button-link' => 'button_link.png',
461 'button-extlink' => 'button_extlink.png',
462 'button-headline' => 'button_headline.png',
463 'button-image' => 'button_image.png',
464 'button-media' => 'button_media.png',
465 'button-math' => 'button_math.png',
466 'button-nowiki' => 'button_nowiki.png',
467 'button-sig' => 'button_sig.png',
468 'button-hr' => 'button_hr.png',
469 );
470
471 #-------------------------------------------------------------------
472 # Default messages
473 #-------------------------------------------------------------------
474 # Allowed characters in keys are: A-Z, a-z, 0-9, underscore (_) and
475 # hyphen (-). If you need more characters, you may be able to change
476 # the regex in MagicWord::initRegex
477
478 $messages = array(
479 /*
480 The sidebar for MonoBook is generated from this message, lines that do not
481 begin with * or ** are discarded, furthermore lines that do begin with ** and
482 do not contain | are also discarded, but do not depend on this behaviour for
483 future releases. Also note that since each list value is wrapped in a unique
484 XHTML id it should only appear once and include characters that are legal
485 XHTML id names.
486 */
487 'sidebar' => '
488 * navigation
489 ** mainpage|mainpage-description
490 ** portal-url|portal
491 ** currentevents-url|currentevents
492 ** recentchanges-url|recentchanges
493 ** randompage-url|randompage
494 ** helppage|help
495 * SEARCH
496 * TOOLBOX
497 * LANGUAGES', # do not translate or duplicate this message to other languages
498
499 # User preference toggles
500 'tog-underline' => 'Link underlining:',
501 'tog-highlightbroken' => 'Format broken links <a href="" class="new">like this</a> (alternative: like this<a href="" class="internal">?</a>)',
502 'tog-justify' => 'Justify paragraphs',
503 'tog-hideminor' => 'Hide minor edits in recent changes',
504 'tog-hidepatrolled' => 'Hide patrolled edits in recent changes',
505 'tog-newpageshidepatrolled' => 'Hide patrolled pages from new page list',
506 'tog-extendwatchlist' => 'Expand watchlist to show all changes, not just the most recent',
507 'tog-usenewrc' => 'Use enhanced recent changes (requires JavaScript)',
508 'tog-numberheadings' => 'Auto-number headings',
509 'tog-showtoolbar' => 'Show edit toolbar (requires JavaScript)',
510 'tog-editondblclick' => 'Edit pages on double click (requires JavaScript)',
511 'tog-editsection' => 'Enable section editing via [edit] links',
512 'tog-editsectiononrightclick' => 'Enable section editing by right clicking on section titles (requires JavaScript)',
513 'tog-showtoc' => 'Show table of contents (for pages with more than 3 headings)',
514 'tog-rememberpassword' => 'Remember my login on this computer',
515 'tog-editwidth' => 'Widen the edit box to fill the entire screen',
516 'tog-watchcreations' => 'Add pages I create to my watchlist',
517 'tog-watchdefault' => 'Add pages I edit to my watchlist',
518 'tog-watchmoves' => 'Add pages I move to my watchlist',
519 'tog-watchdeletion' => 'Add pages I delete to my watchlist',
520 'tog-minordefault' => 'Mark all edits minor by default',
521 'tog-previewontop' => 'Show preview before edit box',
522 'tog-previewonfirst' => 'Show preview on first edit',
523 'tog-nocache' => 'Disable page caching',
524 'tog-enotifwatchlistpages' => 'E-mail me when a page on my watchlist is changed',
525 'tog-enotifusertalkpages' => 'E-mail me when my user talk page is changed',
526 'tog-enotifminoredits' => 'E-mail me also for minor edits of pages',
527 'tog-enotifrevealaddr' => 'Reveal my e-mail address in notification e-mails',
528 'tog-shownumberswatching' => 'Show the number of watching users',
529 'tog-fancysig' => 'Treat signature as wikitext (without an automatic link)',
530 'tog-externaleditor' => 'Use external editor by default (for experts only, needs special settings on your computer)',
531 'tog-externaldiff' => 'Use external diff by default (for experts only, needs special settings on your computer)',
532 'tog-showjumplinks' => 'Enable "jump to" accessibility links',
533 'tog-uselivepreview' => 'Use live preview (requires JavaScript) (Experimental)',
534 'tog-forceeditsummary' => 'Prompt me when entering a blank edit summary',
535 'tog-watchlisthideown' => 'Hide my edits from the watchlist',
536 'tog-watchlisthidebots' => 'Hide bot edits from the watchlist',
537 'tog-watchlisthideminor' => 'Hide minor edits from the watchlist',
538 'tog-watchlisthideliu' => 'Hide edits by logged in users from the watchlist',
539 'tog-watchlisthideanons' => 'Hide edits by anonymous users from the watchlist',
540 'tog-watchlisthidepatrolled' => 'Hide patrolled edits from the watchlist',
541 'tog-nolangconversion' => 'Disable variants conversion', # only translate this message to other languages if you have to change it
542 'tog-ccmeonemails' => 'Send me copies of e-mails I send to other users',
543 'tog-diffonly' => 'Do not show page content below diffs',
544 'tog-showhiddencats' => 'Show hidden categories',
545 'tog-noconvertlink' => 'Disable link title conversion', # only translate this message to other languages if you have to change it
546 'tog-norollbackdiff' => 'Omit diff after performing a rollback',
547
548 'underline-always' => 'Always',
549 'underline-never' => 'Never',
550 'underline-default' => 'Browser default',
551
552 # Dates
553 'sunday' => 'Sunday',
554 'monday' => 'Monday',
555 'tuesday' => 'Tuesday',
556 'wednesday' => 'Wednesday',
557 'thursday' => 'Thursday',
558 'friday' => 'Friday',
559 'saturday' => 'Saturday',
560 'sun' => 'Sun',
561 'mon' => 'Mon',
562 'tue' => 'Tue',
563 'wed' => 'Wed',
564 'thu' => 'Thu',
565 'fri' => 'Fri',
566 'sat' => 'Sat',
567 'january' => 'January',
568 'february' => 'February',
569 'march' => 'March',
570 'april' => 'April',
571 'may_long' => 'May',
572 'june' => 'June',
573 'july' => 'July',
574 'august' => 'August',
575 'september' => 'September',
576 'october' => 'October',
577 'november' => 'November',
578 'december' => 'December',
579 'january-gen' => 'January',
580 'february-gen' => 'February',
581 'march-gen' => 'March',
582 'april-gen' => 'April',
583 'may-gen' => 'May',
584 'june-gen' => 'June',
585 'july-gen' => 'July',
586 'august-gen' => 'August',
587 'september-gen' => 'September',
588 'october-gen' => 'October',
589 'november-gen' => 'November',
590 'december-gen' => 'December',
591 'jan' => 'Jan',
592 'feb' => 'Feb',
593 'mar' => 'Mar',
594 'apr' => 'Apr',
595 'may' => 'May',
596 'jun' => 'Jun',
597 'jul' => 'Jul',
598 'aug' => 'Aug',
599 'sep' => 'Sep',
600 'oct' => 'Oct',
601 'nov' => 'Nov',
602 'dec' => 'Dec',
603
604 # Categories related messages
605 'pagecategories' => '{{PLURAL:$1|Category|Categories}}',
606 'pagecategorieslink' => 'Special:Categories', # do not translate or duplicate this message to other languages
607 'category_header' => 'Pages in category "$1"',
608 'subcategories' => 'Subcategories',
609 'category-media-header' => 'Media in category "$1"',
610 'category-empty' => "''This category currently contains no pages or media.''",
611 'hidden-categories' => '{{PLURAL:$1|Hidden category|Hidden categories}}',
612 'hidden-category-category' => 'Hidden categories',
613 '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.}}',
614 'category-subcat-count-limited' => 'This category has the following {{PLURAL:$1|subcategory|$1 subcategories}}.',
615 '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.}}',
616 'category-article-count-limited' => 'The following {{PLURAL:$1|page is|$1 pages are}} in the current category.',
617 '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.}}',
618 'category-file-count-limited' => 'The following {{PLURAL:$1|file is|$1 files are}} in the current category.',
619 'listingcontinuesabbrev' => 'cont.',
620
621 'linkprefix' => '/^(.*?)([a-zA-Z\\x80-\\xff]+)$/sD', # only translate this message to other languages if you have to change it
622 'mainpagetext' => "<big>'''MediaWiki has been successfully installed.'''</big>",
623 'mainpagedocfooter' => "Consult the [http://meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software.
624
625 == Getting started ==
626 * [http://www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list]
627 * [http://www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ]
628 * [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]",
629
630 'about' => 'About',
631 'article' => 'Content page',
632 'newwindow' => '(opens in new window)',
633 'cancel' => 'Cancel',
634 'moredotdotdot' => 'More…',
635 'mypage' => 'My page',
636 'mytalk' => 'My talk',
637 'anontalk' => 'Talk for this IP',
638 'navigation' => 'Navigation',
639 'and' => '&#32;and',
640
641 # Cologne Blue skin
642 'qbfind' => 'Find',
643 'qbbrowse' => 'Browse',
644 'qbedit' => 'Edit',
645 'qbpageoptions' => 'This page',
646 'qbpageinfo' => 'Context',
647 'qbmyoptions' => 'My pages',
648 'qbspecialpages' => 'Special pages',
649 'faq' => 'FAQ',
650 'faqpage' => 'Project:FAQ',
651 'sitetitle' => '{{SITENAME}}', # do not translate or duplicate this message to other languages
652 'sitesubtitle' => '', # do not translate or duplicate this message to other languages
653
654 # Metadata in edit box
655 'metadata_help' => 'Metadata:',
656
657 'errorpagetitle' => 'Error',
658 'returnto' => 'Return to $1.',
659 'tagline' => 'From {{SITENAME}}',
660 'help' => 'Help',
661 'search' => 'Search',
662 'searchbutton' => 'Search',
663 'go' => 'Go',
664 'searcharticle' => 'Go',
665 'history' => 'Page history',
666 'history_short' => 'History',
667 'updatedmarker' => 'updated since my last visit',
668 'info_short' => 'Information',
669 'printableversion' => 'Printable version',
670 'permalink' => 'Permanent link',
671 'print' => 'Print',
672 'edit' => 'Edit',
673 'create' => 'Create',
674 'editthispage' => 'Edit this page',
675 'create-this-page' => 'Create this page',
676 'delete' => 'Delete',
677 'deletethispage' => 'Delete this page',
678 'undelete_short' => 'Undelete {{PLURAL:$1|one edit|$1 edits}}',
679 'protect' => 'Protect',
680 'protect_change' => 'change',
681 'protectthispage' => 'Protect this page',
682 'unprotect' => 'Unprotect',
683 'unprotectthispage' => 'Unprotect this page',
684 'newpage' => 'New page',
685 'talkpage' => 'Discuss this page',
686 'talkpagelinktext' => 'Talk',
687 'specialpage' => 'Special Page',
688 'personaltools' => 'Personal tools',
689 'postcomment' => 'New section',
690 'addsection' => '+', # do not translate or duplicate this message to other languages
691 'articlepage' => 'View content page',
692 'talk' => 'Discussion',
693 'views' => 'Views',
694 'toolbox' => 'Toolbox',
695 'userpage' => 'View user page',
696 'projectpage' => 'View project page',
697 'imagepage' => 'View file page',
698 'mediawikipage' => 'View message page',
699 'templatepage' => 'View template page',
700 'viewhelppage' => 'View help page',
701 'categorypage' => 'View category page',
702 'viewtalkpage' => 'View discussion',
703 'otherlanguages' => 'In other languages',
704 'redirectedfrom' => '(Redirected from $1)',
705 'redirectpagesub' => 'Redirect page',
706 'talkpageheader' => '-', # do not translate or duplicate this message to other languages
707 'lastmodifiedat' => 'This page was last modified on $1, at $2.',
708 'viewcount' => 'This page has been accessed {{PLURAL:$1|once|$1 times}}.',
709 'protectedpage' => 'Protected page',
710 'jumpto' => 'Jump to:',
711 'jumptonavigation' => 'navigation',
712 'jumptosearch' => 'search',
713
714 # 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).
715 'aboutsite' => 'About {{SITENAME}}',
716 'aboutpage' => 'Project:About',
717 'copyright' => 'Content is available under $1.',
718 'copyrightpagename' => '{{SITENAME}} copyright',
719 'copyrightpage' => '{{ns:project}}:Copyrights',
720 'currentevents' => 'Current events',
721 'currentevents-url' => 'Project:Current events',
722 'disclaimers' => 'Disclaimers',
723 'disclaimerpage' => 'Project:General disclaimer',
724 'edithelp' => 'Editing help',
725 'edithelppage' => 'Help:Editing',
726 'helppage' => 'Help:Contents',
727 'mainpage' => 'Main Page',
728 'mainpage-description' => 'Main Page',
729 'policy-url' => 'Project:Policy',
730 'portal' => 'Community portal',
731 'portal-url' => 'Project:Community Portal',
732 'privacy' => 'Privacy policy',
733 'privacypage' => 'Project:Privacy policy',
734
735 'badaccess' => 'Permission error',
736 'badaccess-group0' => 'You are not allowed to execute the action you have requested.',
737 'badaccess-groups' => 'The action you have requested is limited to users in {{PLURAL:$2|the group|one of the groups}}: $1.',
738
739 'versionrequired' => 'Version $1 of MediaWiki required',
740 'versionrequiredtext' => 'Version $1 of MediaWiki is required to use this page.
741 See [[Special:Version|version page]].',
742
743 'ok' => 'OK',
744 'pagetitle' => '$1 - {{SITENAME}}', # only translate this message to other languages if you have to change it
745 'pagetitle-view-mainpage' => '{{SITENAME}}', # only translate this message to other languages if you have to change it
746 'retrievedfrom' => 'Retrieved from "$1"',
747 'youhavenewmessages' => 'You have $1 ($2).',
748 'newmessageslink' => 'new messages',
749 'newmessagesdifflink' => 'last change',
750 'youhavenewmessagesmulti' => 'You have new messages on $1',
751 'newtalkseparator' => ',_', # do not translate or duplicate this message to other languages
752 'editsection' => 'edit',
753 'editsection-brackets' => '[$1]', # only translate this message to other languages if you have to change it
754 'editold' => 'edit',
755 'viewsourceold' => 'view source',
756 'editlink' => 'edit',
757 'viewsourcelink' => 'view source',
758 'editsectionhint' => 'Edit section: $1',
759 'toc' => 'Contents',
760 'showtoc' => 'show',
761 'hidetoc' => 'hide',
762 'thisisdeleted' => 'View or restore $1?',
763 'viewdeleted' => 'View $1?',
764 'restorelink' => '{{PLURAL:$1|one deleted edit|$1 deleted edits}}',
765 'feedlinks' => 'Feed:',
766 'feed-invalid' => 'Invalid subscription feed type.',
767 'feed-unavailable' => 'Syndication feeds are not available',
768 'site-rss-feed' => '$1 RSS Feed',
769 'site-atom-feed' => '$1 Atom Feed',
770 'page-rss-feed' => '"$1" RSS Feed',
771 'page-atom-feed' => '"$1" Atom Feed',
772 'feed-atom' => 'Atom', # only translate this message to other languages if you have to change it
773 'feed-rss' => 'RSS', # only translate this message to other languages if you have to change it
774 'sitenotice' => '-', # do not translate or duplicate this message to other languages
775 'anonnotice' => '-', # do not translate or duplicate this message to other languages
776 'newsectionheaderdefaultlevel' => '== $1 ==', # do not translate or duplicate this message to other languages
777 'red-link-title' => '$1 (page does not exist)',
778
779 # Short words for each namespace, by default used in the namespace tab in monobook
780 'nstab-main' => 'Page',
781 'nstab-user' => 'User page',
782 'nstab-media' => 'Media page',
783 'nstab-special' => 'Special page',
784 'nstab-project' => 'Project page',
785 'nstab-image' => 'File',
786 'nstab-mediawiki' => 'Message',
787 'nstab-template' => 'Template',
788 'nstab-help' => 'Help page',
789 'nstab-category' => 'Category',
790
791 # Main script and global functions
792 'nosuchaction' => 'No such action',
793 'nosuchactiontext' => 'The action specified by the URL is invalid.
794 You might have mistyped the URL, or followed an incorrect link.
795 This might also indicate a bug in the software used by {{SITENAME}}.',
796 'nosuchspecialpage' => 'No such special page',
797 'nospecialpagetext' => "<big>'''You have requested an invalid special page.'''</big>
798
799 A list of valid special pages can be found at [[Special:SpecialPages|{{int:specialpages}}]].",
800
801 # General errors
802 'error' => 'Error',
803 'databaseerror' => 'Database error',
804 'dberrortext' => 'A database query syntax error has occurred.
805 This may indicate a bug in the software.
806 The last attempted database query was:
807 <blockquote><tt>$1</tt></blockquote>
808 from within function "<tt>$2</tt>".
809 MySQL returned error "<tt>$3: $4</tt>".',
810 'dberrortextcl' => 'A database query syntax error has occurred.
811 The last attempted database query was:
812 "$1"
813 from within function "$2".
814 MySQL returned error "$3: $4"',
815 'laggedslavemode' => "'''Warning:''' Page may not contain recent updates.",
816 'readonly' => 'Database locked',
817 'enterlockreason' => 'Enter a reason for the lock, including an estimate of when the lock will be released',
818 '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.
819
820 The administrator who locked it offered this explanation: $1',
821 'missing-article' => 'The database did not find the text of a page that it should have found, named "$1" $2.
822
823 This is usually caused by following an outdated diff or history link to a page that has been deleted.
824
825 If this is not the case, you may have found a bug in the software.
826 Please report this to an [[Special:ListUsers/sysop|administrator]], making note of the URL.',
827 'missingarticle-rev' => '(revision#: $1)',
828 'missingarticle-diff' => '(Diff: $1, $2)',
829 'readonly_lag' => 'The database has been automatically locked while the slave database servers catch up to the master',
830 'internalerror' => 'Internal error',
831 'internalerror_info' => 'Internal error: $1',
832 'filecopyerror' => 'Could not copy file "$1" to "$2".',
833 'filerenameerror' => 'Could not rename file "$1" to "$2".',
834 'filedeleteerror' => 'Could not delete file "$1".',
835 'directorycreateerror' => 'Could not create directory "$1".',
836 'filenotfound' => 'Could not find file "$1".',
837 'fileexistserror' => 'Unable to write to file "$1": file exists',
838 'unexpected' => 'Unexpected value: "$1"="$2".',
839 'formerror' => 'Error: could not submit form',
840 'badarticleerror' => 'This action cannot be performed on this page.',
841 'cannotdelete' => 'Could not delete the page or file specified.
842 It may have already been deleted by someone else.',
843 'badtitle' => 'Bad title',
844 'badtitletext' => 'The requested page title was invalid, empty, or an incorrectly linked inter-language or inter-wiki title.
845 It may contain one or more characters which cannot be used in titles.',
846 'perfcached' => 'The following data is cached and may not be up to date.',
847 'perfcachedts' => 'The following data is cached, and was last updated $1.',
848 'querypage-no-updates' => 'Updates for this page are currently disabled.
849 Data here will not presently be refreshed.',
850 'wrong_wfQuery_params' => 'Incorrect parameters to wfQuery()<br />
851 Function: $1<br />
852 Query: $2',
853 'viewsource' => 'View source',
854 'viewsourcefor' => 'for $1',
855 'actionthrottled' => 'Action throttled',
856 '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.
857 Please try again in a few minutes.',
858 'protectedpagetext' => 'This page has been locked to prevent editing.',
859 'viewsourcetext' => 'You can view and copy the source of this page:',
860 'protectedinterface' => 'This page provides interface text for the software, and is locked to prevent abuse.',
861 'editinginterface' => "'''Warning:''' You are editing a page which is used to provide interface text for the software.
862 Changes to this page will affect the appearance of the user interface for other users.
863 For translations, please consider using [http://translatewiki.net/wiki/Main_Page?setlang=en translatewiki.net], the MediaWiki localisation project.",
864 'sqlhidden' => '(SQL query hidden)',
865 '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:
866 $2',
867 'namespaceprotected' => "You do not have permission to edit pages in the '''$1''' namespace.",
868 'customcssjsprotected' => "You do not have permission to edit this page, because it contains another user's personal settings.",
869 'ns-specialprotected' => 'Special pages cannot be edited.',
870 'titleprotected' => 'This title has been protected from creation by [[User:$1|$1]].
871 The reason given is "\'\'$2\'\'".',
872
873 # Virus scanner
874 'virus-badscanner' => "Bad configuration: unknown virus scanner: ''$1''",
875 'virus-scanfailed' => 'scan failed (code $1)',
876 'virus-unknownscanner' => 'unknown antivirus:',
877
878 # Login and logout pages
879 'logouttext' => "'''You are now logged out.'''
880
881 You can continue to use {{SITENAME}} anonymously, or you can [[Special:UserLogin|log in again]] as the same or as a different user.
882 Note that some pages may continue to be displayed as if you were still logged in, until you clear your browser cache.",
883 'welcomecreation' => '== Welcome, $1! ==
884 Your account has been created.
885 Do not forget to change your [[Special:Preferences|{{SITENAME}} preferences]].',
886 'yourname' => 'Username:',
887 'yourpassword' => 'Password:',
888 'yourpasswordagain' => 'Retype password:',
889 'remembermypassword' => 'Remember my login on this computer',
890 'yourdomainname' => 'Your domain:',
891 'externaldberror' => 'There was either an authentication database error or you are not allowed to update your external account.',
892 'login' => 'Log in',
893 'nav-login-createaccount' => 'Log in / create account',
894 'loginprompt' => 'You must have cookies enabled to log in to {{SITENAME}}.',
895 'userlogin' => 'Log in / create account',
896 'logout' => 'Log out',
897 'userlogout' => 'Log out',
898 'notloggedin' => 'Not logged in',
899 'nologin' => "Don't have an account? $1.",
900 'nologinlink' => 'Create an account',
901 'createaccount' => 'Create account',
902 'gotaccount' => 'Already have an account? $1.',
903 'gotaccountlink' => 'Log in',
904 'createaccountmail' => 'by e-mail',
905 'badretype' => 'The passwords you entered do not match.',
906 'userexists' => 'Username entered already in use.
907 Please choose a different name.',
908 'loginerror' => 'Login error',
909 'nocookiesnew' => 'The user account was created, but you are not logged in.
910 {{SITENAME}} uses cookies to log in users.
911 You have cookies disabled.
912 Please enable them, then log in with your new username and password.',
913 'nocookieslogin' => '{{SITENAME}} uses cookies to log in users.
914 You have cookies disabled.
915 Please enable them and try again.',
916 'noname' => 'You have not specified a valid user name.',
917 'loginsuccesstitle' => 'Login successful',
918 'loginsuccess' => "'''You are now logged in to {{SITENAME}} as \"\$1\".'''",
919 'nosuchuser' => 'There is no user by the name "$1".
920 User names are case sensitive.
921 Check your spelling, or [[Special:UserLogin/signup|create a new account]].',
922 'nosuchusershort' => 'There is no user by the name "<nowiki>$1</nowiki>".
923 Check your spelling.',
924 'nouserspecified' => 'You have to specify a username.',
925 'wrongpassword' => 'Incorrect password entered.
926 Please try again.',
927 'wrongpasswordempty' => 'Password entered was blank.
928 Please try again.',
929 'passwordtooshort' => 'Your password is invalid or too short.
930 It must have at least {{PLURAL:$1|1 character|$1 characters}} and be different from your username.',
931 'mailmypassword' => 'E-mail new password',
932 'passwordremindertitle' => 'New temporary password for {{SITENAME}}',
933 'passwordremindertext' => 'Someone (probably you, from IP address $1) requested a new
934 password for {{SITENAME}} ($4). A temporary password for user
935 "$2" has been created and was set to "$3". If this was your
936 intent, you will need to log in and choose a new password now.
937 Your temporary password will expire in {{PLURAL:$5|one day|$5 days}}.
938
939 If someone else made this request, or if you have remembered your password,
940 and you no longer wish to change it, you may ignore this message and
941 continue using your old password.',
942 'noemail' => 'There is no e-mail address recorded for user "$1".',
943 'passwordsent' => 'A new password has been sent to the e-mail address registered for "$1".
944 Please log in again after you receive it.',
945 'blocked-mailpassword' => 'Your IP address is blocked from editing, and so is not allowed to use the password recovery function to prevent abuse.',
946 'eauthentsent' => 'A confirmation e-mail has been sent to the nominated e-mail address.
947 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.',
948 'throttled-mailpassword' => 'A password reminder has already been sent, within the last {{PLURAL:$1|hour|$1 hours}}.
949 To prevent abuse, only one password reminder will be sent per {{PLURAL:$1|hour|$1 hours}}.',
950 'loginstart' => '', # do not translate or duplicate this message to other languages
951 'loginend' => '', # do not translate or duplicate this message to other languages
952 'signupend' => '{{int:loginend}}', # do not translate or duplicate this message to other languages
953 'mailerror' => 'Error sending mail: $1',
954 '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.
955 As a result, visitors using this IP address cannot create any more accounts at the moment.',
956 'emailauthenticated' => 'Your e-mail address was authenticated on $2 at $3.',
957 'emailnotauthenticated' => 'Your e-mail address is not yet authenticated.
958 No e-mail will be sent for any of the following features.',
959 'noemailprefs' => 'Specify an e-mail address in your preferences for these features to work.',
960 'emailconfirmlink' => 'Confirm your e-mail address',
961 'invalidemailaddress' => 'The e-mail address cannot be accepted as it appears to have an invalid format.
962 Please enter a well-formatted address or empty that field.',
963 'accountcreated' => 'Account created',
964 'accountcreatedtext' => 'The user account for $1 has been created.',
965 'createaccount-title' => 'Account creation for {{SITENAME}}',
966 'createaccount-text' => 'Someone created an account for your e-mail address on {{SITENAME}} ($4) named "$2", with password "$3".
967 You should log in and change your password now.
968
969 You may ignore this message, if this account was created in error.',
970 'login-throttled' => "You have made too many recent attempts on this account's password.
971 Please wait before trying again.",
972 'loginlanguagelabel' => 'Language: $1',
973 'loginlanguagelinks' => '* Deutsch|de
974 * English|en
975 * Esperanto|eo
976 * Français|fr
977 * Español|es
978 * Italiano|it
979 * Nederlands|nl', # do not translate or duplicate this message to other languages
980
981 # Password reset dialog
982 'resetpass' => 'Change password',
983 'resetpass_announce' => 'You logged in with a temporary e-mailed code.
984 To finish logging in, you must set a new password here:',
985 'resetpass_text' => '<!-- Add text here -->', # only translate this message to other languages if you have to change it
986 'resetpass_header' => 'Change account password',
987 'oldpassword' => 'Old password:',
988 'newpassword' => 'New password:',
989 'retypenew' => 'Retype new password:',
990 'resetpass_submit' => 'Set password and log in',
991 'resetpass_success' => 'Your password has been changed successfully! Now logging you in…',
992 'resetpass_forbidden' => 'Passwords cannot be changed',
993 'resetpass-no-info' => 'You must be logged in to access this page directly.',
994 'resetpass-submit-loggedin' => 'Change password',
995 'resetpass-wrong-oldpass' => 'Invalid temporary or current password.
996 You may have already successfully changed your password or requested a new temporary password.',
997 'resetpass-temp-password' => 'Temporary password:',
998
999 # Edit page toolbar
1000 'bold_sample' => 'Bold text',
1001 'bold_tip' => 'Bold text',
1002 'italic_sample' => 'Italic text',
1003 'italic_tip' => 'Italic text',
1004 'link_sample' => 'Link title',
1005 'link_tip' => 'Internal link',
1006 'extlink_sample' => 'http://www.example.com link title',
1007 'extlink_tip' => 'External link (remember http:// prefix)',
1008 'headline_sample' => 'Headline text',
1009 'headline_tip' => 'Level 2 headline',
1010 'math_sample' => 'Insert formula here',
1011 'math_tip' => 'Mathematical formula (LaTeX)',
1012 'nowiki_sample' => 'Insert non-formatted text here',
1013 'nowiki_tip' => 'Ignore wiki formatting',
1014 'image_sample' => 'Example.jpg', # only translate this message to other languages if you have to change it
1015 'image_tip' => 'Embedded file',
1016 'media_sample' => 'Example.ogg', # only translate this message to other languages if you have to change it
1017 'media_tip' => 'File link',
1018 'sig_tip' => 'Your signature with timestamp',
1019 'hr_tip' => 'Horizontal line (use sparingly)',
1020
1021 # Edit pages
1022 'summary' => 'Summary:',
1023 'subject' => 'Subject/headline:',
1024 'minoredit' => 'This is a minor edit',
1025 'watchthis' => 'Watch this page',
1026 'savearticle' => 'Save page',
1027 'preview' => 'Preview',
1028 'showpreview' => 'Show preview',
1029 'showlivepreview' => 'Live preview',
1030 'showdiff' => 'Show changes',
1031 'anoneditwarning' => "'''Warning:''' You are not logged in.
1032 Your IP address will be recorded in this page's edit history.",
1033 'missingsummary' => "'''Reminder:''' You have not provided an edit summary.
1034 If you click Save again, your edit will be saved without one.",
1035 'missingcommenttext' => 'Please enter a comment below.',
1036 'missingcommentheader' => "'''Reminder:''' You have not provided a subject/headline for this comment.
1037 If you click Save again, your edit will be saved without one.",
1038 'summary-preview' => 'Summary preview:',
1039 'subject-preview' => 'Subject/headline preview:',
1040 'blockedtitle' => 'User is blocked',
1041 'blockedtext' => "<big>'''Your user name or IP address has been blocked.'''</big>
1042
1043 The block was made by $1.
1044 The reason given is ''$2''.
1045
1046 * Start of block: $8
1047 * Expiry of block: $6
1048 * Intended blockee: $7
1049
1050 You can contact $1 or another [[{{MediaWiki:Grouppage-sysop}}|administrator]] to discuss the block.
1051 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.
1052 Your current IP address is $3, and the block ID is #$5.
1053 Please include all above details in any queries you make.",
1054 'autoblockedtext' => 'Your IP address has been automatically blocked because it was used by another user, who was blocked by $1.
1055 The reason given is this:
1056
1057 :\'\'$2\'\'
1058
1059 * Start of block: $8
1060 * Expiry of block: $6
1061 * Intended blockee: $7
1062
1063 You may contact $1 or one of the other [[{{MediaWiki:Grouppage-sysop}}|administrators]] to discuss the block.
1064
1065 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.
1066
1067 Your current IP address is $3, and the block ID is #$5.
1068 Please include all above details in any queries you make.',
1069 'blockednoreason' => 'no reason given',
1070 'blockedoriginalsource' => "The source of '''$1''' is shown below:",
1071 'blockededitsource' => "The text of '''your edits''' to '''$1''' is shown below:",
1072 'whitelistedittitle' => 'Login required to edit',
1073 'whitelistedittext' => 'You have to $1 to edit pages.',
1074 'confirmedittext' => 'You must confirm your e-mail address before editing pages.
1075 Please set and validate your e-mail address through your [[Special:Preferences|user preferences]].',
1076 'nosuchsectiontitle' => 'No such section',
1077 'nosuchsectiontext' => 'You tried to edit a section that does not exist.
1078 Since there is no section $1, there is no place to save your edit.',
1079 'loginreqtitle' => 'Login required',
1080 'loginreqlink' => 'log in',
1081 'loginreqpagetext' => 'You must $1 to view other pages.',
1082 'accmailtitle' => 'Password sent.',
1083 'accmailtext' => "A randomly generated password for [[User talk:$1|$1]] has been sent to $2.
1084
1085 The password for this new account can be changed on the ''[[Special:ChangePassword|change password]]'' page upon logging in.",
1086 'newarticle' => '(New)',
1087 'newarticletext' => "You have followed a link to a page that does not exist yet.
1088 To create the page, start typing in the box below (see the [[{{MediaWiki:Helppage}}|help page]] for more info).
1089 If you are here by mistake, click your browser's '''back''' button.",
1090 'newarticletextanon' => '{{int:newarticletext}}', # do not translate or duplicate this message to other languages
1091 'talkpagetext' => '<!-- MediaWiki:talkpagetext -->', # do not translate or duplicate this message to other languages
1092 'anontalkpagetext' => "----''This is the discussion page for an anonymous user who has not created an account yet, or who does not use it.
1093 We therefore have to use the numerical IP address to identify him/her.
1094 Such an IP address can be shared by several users.
1095 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.''",
1096 'noarticletext' => 'There is currently no text in this page.
1097 You can [[Special:Search/{{PAGENAME}}|search for this page title]] in other pages,
1098 <span class="plainlinks">[{{fullurl:Special:Log|page={{urlencode:{{FULLPAGENAME}}}}}} search the related logs],
1099 or [{{fullurl:{{FULLPAGENAME}}|action=edit}} edit this page]</span>.',
1100 'noarticletextanon' => '{{int:noarticletext}}', # do not translate or duplicate this message to other languages
1101 'userpage-userdoesnotexist' => 'User account "$1" is not registered.
1102 Please check if you want to create/edit this page.',
1103 'clearyourcache' => "'''Note - After saving, you may have to bypass your browser's cache to see the changes.'''
1104 '''Mozilla / Firefox / Safari:''' hold ''Shift'' while clicking ''Reload'', or press either ''Ctrl-F5'' or ''Ctrl-R'' (''Command-R'' on a Macintosh);
1105 '''Konqueror: '''click ''Reload'' or press ''F5'';
1106 '''Opera:''' clear the cache in ''Tools → Preferences'';
1107 '''Internet Explorer:''' hold ''Ctrl'' while clicking ''Refresh,'' or press ''Ctrl-F5''.",
1108 'usercssjsyoucanpreview' => "'''Tip:''' Use the 'Show preview' button to test your new CSS/JS before saving.",
1109 'usercsspreview' => "'''Remember that you are only previewing your user CSS.'''
1110 '''It has not yet been saved!'''",
1111 'userjspreview' => "'''Remember that you are only testing/previewing your user JavaScript.'''
1112 '''It has not yet been saved!'''",
1113 'userinvalidcssjstitle' => "'''Warning:''' There is no skin \"\$1\".
1114 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.",
1115 'updated' => '(Updated)',
1116 'note' => "'''Note:'''",
1117 'previewnote' => "'''Remember that this is only a preview.'''
1118 Your changes have not yet been saved!",
1119 'previewconflict' => 'This preview reflects the text in the upper text editing area as it will appear if you choose to save.',
1120 'session_fail_preview' => "'''Sorry! We could not process your edit due to a loss of session data.'''
1121 Please try again.
1122 If it still does not work, try [[Special:UserLogout|logging out]] and logging back in.",
1123 'session_fail_preview_html' => "'''Sorry! We could not process your edit due to a loss of session data.'''
1124
1125 ''Because {{SITENAME}} has raw HTML enabled, the preview is hidden as a precaution against JavaScript attacks.''
1126
1127 '''If this is a legitimate edit attempt, please try again.'''
1128 If it still does not work, try [[Special:UserLogout|logging out]] and logging back in.",
1129 'token_suffix_mismatch' => "'''Your edit has been rejected because your client mangled the punctuation characters in the edit token.'''
1130 The edit has been rejected to prevent corruption of the page text.
1131 This sometimes happens when you are using a buggy web-based anonymous proxy service.",
1132 'editing' => 'Editing $1',
1133 'editingsection' => 'Editing $1 (section)',
1134 'editingcomment' => 'Editing $1 (new section)',
1135 'editconflict' => 'Edit conflict: $1',
1136 'explainconflict' => "Someone else has changed this page since you started editing it.
1137 The upper text area contains the page text as it currently exists.
1138 Your changes are shown in the lower text area.
1139 You will have to merge your changes into the existing text.
1140 '''Only''' the text in the upper text area will be saved when you press \"Save page\".",
1141 'yourtext' => 'Your text',
1142 'storedversion' => 'Stored revision',
1143 'nonunicodebrowser' => "'''Warning: Your browser is not unicode compliant.'''
1144 A workaround is in place to allow you to safely edit pages: non-ASCII characters will appear in the edit box as hexadecimal codes.",
1145 'editingold' => "'''Warning: You are editing an out-of-date revision of this page.'''
1146 If you save it, any changes made since this revision will be lost.",
1147 'yourdiff' => 'Differences',
1148 'copyrightwarning' => "Please note that all contributions to {{SITENAME}} are considered to be released under the $2 (see $1 for details).
1149 If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.<br />
1150 You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
1151 '''Do not submit copyrighted work without permission!'''",
1152 'copyrightwarning2' => "Please note that all contributions to {{SITENAME}} may be edited, altered, or removed by other contributors.
1153 If you do not want your writing to be edited mercilessly, then do not submit it here.<br />
1154 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).
1155 '''Do not submit copyrighted work without permission!'''",
1156 'longpagewarning' => "'''Warning:''' This page is $1 kilobytes long;
1157 some browsers may have problems editing pages approaching or longer than 32kb.
1158 Please consider breaking the page into smaller sections.",
1159 'longpageerror' => "'''Error: The text you have submitted is $1 kilobytes long, which is longer than the maximum of $2 kilobytes.'''
1160 It cannot be saved.",
1161 'readonlywarning' => "'''Warning: The database has been locked for maintenance, so you will not be able to save your edits right now.'''
1162 You may wish to cut-n-paste the text into a text file and save it for later.
1163
1164 The administrator who locked it offered this explanation: $1",
1165 'protectedpagewarning' => "'''Warning: This page has been locked so that only users with administrator privileges can edit it.'''",
1166 'semiprotectedpagewarning' => "'''Note:''' This page has been locked so that only registered users can edit it.",
1167 '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}}:",
1168 'titleprotectedwarning' => "'''Warning: This page has been locked so that [[Special:ListGroupRights|specific rights]] are needed to create it.'''",
1169 'templatesused' => 'Templates used on this page:',
1170 'templatesusedpreview' => 'Templates used in this preview:',
1171 'templatesusedsection' => 'Templates used in this section:',
1172 'template-protected' => '(protected)',
1173 'template-semiprotected' => '(semi-protected)',
1174 'hiddencategories' => 'This page is a member of {{PLURAL:$1|1 hidden category|$1 hidden categories}}:',
1175 'edittools' => '<!-- Text here will be shown below edit and upload forms. -->', # only translate this message to other languages if you have to change it
1176 'nocreatetitle' => 'Page creation limited',
1177 'nocreatetext' => '{{SITENAME}} has restricted the ability to create new pages.
1178 You can go back and edit an existing page, or [[Special:UserLogin|log in or create an account]].',
1179 'nocreate-loggedin' => 'You do not have permission to create new pages.',
1180 'permissionserrors' => 'Permissions Errors',
1181 'permissionserrorstext' => 'You do not have permission to do that, for the following {{PLURAL:$1|reason|reasons}}:',
1182 'permissionserrorstext-withaction' => 'You do not have permission to $2, for the following {{PLURAL:$1|reason|reasons}}:',
1183 'recreate-moveddeleted-warn' => "'''Warning: You are recreating a page that was previously deleted.'''
1184
1185 You should consider whether it is appropriate to continue editing this page.
1186 The deletion and move log for this page are provided here for convenience:",
1187 'moveddeleted-notice' => 'This page has been deleted.
1188 The deletion and move log for the page are provided below for reference.',
1189 'log-fulllog' => 'View full log',
1190 'edit-hook-aborted' => 'Edit aborted by hook.
1191 It gave no explanation.',
1192 'edit-gone-missing' => 'Could not update the page.
1193 It appears to have been deleted.',
1194 'edit-conflict' => 'Edit conflict.',
1195 'edit-no-change' => 'Your edit was ignored, because no change was made to the text.',
1196 'edit-already-exists' => 'Could not create a new page.
1197 It already exists.',
1198
1199 # Parser/template warnings
1200 'expensive-parserfunction-warning' => "'''Warning:''' This page contains too many expensive parser function calls.
1201
1202 It should have less than $2 {{PLURAL:$2|call|calls}}, there {{PLURAL:$1|is now $1 call|are now $1 calls}}.",
1203 'expensive-parserfunction-category' => 'Pages with too many expensive parser function calls',
1204 'post-expand-template-inclusion-warning' => "'''Warning:''' Template include size is too large.
1205 Some templates will not be included.",
1206 'post-expand-template-inclusion-category' => 'Pages where template include size is exceeded',
1207 'post-expand-template-argument-warning' => "'''Warning:''' This page contains at least one template argument which has a too large expansion size.
1208 These arguments have been omitted.",
1209 'post-expand-template-argument-category' => 'Pages containing omitted template arguments',
1210 'parser-template-loop-warning' => 'Template loop detected: [[$1]]',
1211 'parser-template-recursion-depth-warning' => 'Template recursion depth limit exceeded ($1)',
1212
1213 # "Undo" feature
1214 'undo-success' => 'The edit can be undone.
1215 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.',
1216 'undo-failure' => 'The edit could not be undone due to conflicting intermediate edits.',
1217 'undo-norev' => 'The edit could not be undone because it does not exist or was deleted.',
1218 'undo-summary' => 'Undo revision $1 by [[Special:Contributions/$2|$2]] ([[User talk:$2|Talk]])',
1219
1220 # Account creation failure
1221 'cantcreateaccounttitle' => 'Cannot create account',
1222 'cantcreateaccount-text' => "Account creation from this IP address ('''$1''') has been blocked by [[User:$3|$3]].
1223
1224 The reason given by $3 is ''$2''",
1225 'cantcreateaccount-nonblock-text' => '', # do not translate or duplicate this message to other languages
1226
1227 # History pages
1228 'viewpagelogs' => 'View logs for this page',
1229 'nohistory' => 'There is no edit history for this page.',
1230 'currentrev' => 'Current revision',
1231 'currentrev-asof' => 'Current revision as of $1',
1232 'revisionasof' => 'Revision as of $1',
1233 'revision-info' => 'Revision as of $1 by $2',
1234 'revision-info-current' => '-', # do not translate or duplicate this message to other languages
1235 'revision-nav' => '($1) $2{{int:pipe-separator}}$3 ($4){{int:pipe-separator}}$5 ($6)', # do not translate or duplicate this message to other languages
1236 'previousrevision' => '← Older revision',
1237 'nextrevision' => 'Newer revision →',
1238 'currentrevisionlink' => 'Current revision',
1239 'cur' => 'cur',
1240 'next' => 'next',
1241 'last' => 'prev',
1242 'page_first' => 'first',
1243 'page_last' => 'last',
1244 'histlegend' => "Diff selection: mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.<br />
1245 Legend: '''({{int:cur}})''' = difference with current revision,
1246 '''({{int:last}})''' = difference with preceding revision, '''{{int:minoreditletter}}''' = minor edit.",
1247 'history-fieldset-title' => 'Browse history',
1248 'history_copyright' => '-', # do not translate or duplicate this message to other languages
1249 'deletedrev' => '[deleted]',
1250 'histfirst' => 'Earliest',
1251 'histlast' => 'Latest',
1252 'historysize' => '({{PLURAL:$1|1 byte|$1 bytes}})',
1253 'historyempty' => '(empty)',
1254
1255 # Revision feed
1256 'history-feed-title' => 'Revision history',
1257 'history-feed-description' => 'Revision history for this page on the wiki',
1258 'history-feed-item-nocomment' => '$1 at $2',
1259 'history-feed-empty' => 'The requested page does not exist.
1260 It may have been deleted from the wiki, or renamed.
1261 Try [[Special:Search|searching on the wiki]] for relevant new pages.',
1262
1263 # Revision deletion
1264 'rev-deleted-comment' => '(comment removed)',
1265 'rev-deleted-user' => '(username removed)',
1266 'rev-deleted-event' => '(log action removed)',
1267 'rev-deleted-text-permission' => "This page revision has been '''deleted'''.
1268 There may be details in the [{{fullurl:Special:Log/delete|page={{FULLPAGENAMEE}}}} deletion log].",
1269 'rev-deleted-text-unhide' => "This page revision has been '''deleted'''.
1270 There may be details in the [{{fullurl:Special:Log/delete|page={{FULLPAGENAMEE}}}} deletion log].
1271 As an administrator you can still [$1 view this revision] if you wish to proceed.",
1272 'rev-deleted-text-view' => "This page revision has been '''deleted'''.
1273 As an administrator you can view it; there may be details in the [{{fullurl:Special:Log/delete|page={{FULLPAGENAMEE}}}} deletion log].",
1274 'rev-deleted-no-diff' => "You cannot view this diff because one of the revisions has been '''deleted'''.
1275 There may be details in the [{{fullurl:Special:Log/delete|page={{FULLPAGENAMEE}}}} deletion log].",
1276 'rev-deleted-unhide-diff' => "One of the revisions of this diff has been '''deleted'''.
1277 There may be details in the [{{fullurl:Special:Log/delete|page={{FULLPAGENAMEE}}}} deletion log].
1278 As an administrator you can still [$1 view this diff] if you wish to proceed.",
1279 'rev-delundel' => 'show/hide',
1280 'revisiondelete' => 'Delete/undelete revisions',
1281 'revdelete-nooldid-title' => 'Invalid target revision',
1282 'revdelete-nooldid-text' => 'You have either not specified a target revision(s) to perform this
1283 function, the specified revision does not exist, or you are attempting to hide the current revision.',
1284 'revdelete-nologtype-title' => 'No log type given',
1285 'revdelete-nologtype-text' => 'You have not specified a log type to perform this action on.',
1286 'revdelete-toomanytargets-title' => 'Too many targets',
1287 'revdelete-toomanytargets-text' => 'You have specified too many types of targets to perform this action on.',
1288 'revdelete-nologid-title' => 'Invalid log entry',
1289 'revdelete-nologid-text' => 'You have either not specified a target log event to perform this function or the specified entry does not exist.',
1290 'revdelete-selected' => "'''{{PLURAL:$2|Selected revision|Selected revisions}} of [[:$1]]:'''",
1291 'logdelete-selected' => "'''{{PLURAL:$1|Selected log event|Selected log events}}:'''",
1292 '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.'''
1293 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.
1294
1295 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]].",
1296 'revdelete-suppress-text' => "Suppression should '''only''' be used for the following cases:
1297 * Inappropriate personal information
1298 *: ''home addresses and telephone numbers, social security numbers, etc.''",
1299 'revdelete-legend' => 'Set visibility restrictions',
1300 'revdelete-hide-text' => 'Hide revision text',
1301 'revdelete-hide-name' => 'Hide action and target',
1302 'revdelete-hide-comment' => 'Hide edit comment',
1303 'revdelete-hide-user' => "Hide editor's username/IP",
1304 'revdelete-hide-restricted' => 'Suppress data from administrators as well as others',
1305 'revdelete-suppress' => 'Suppress data from administrators as well as others',
1306 'revdelete-hide-image' => 'Hide file content',
1307 'revdelete-unsuppress' => 'Remove restrictions on restored revisions',
1308 'revdelete-log' => 'Log comment:',
1309 'revdelete-submit' => 'Apply to selected revision',
1310 'revdelete-logentry' => 'changed revision visibility of [[$1]]',
1311 'logdelete-logentry' => 'changed event visibility of [[$1]]',
1312 'revdelete-success' => "'''Revision visibility successfully set.'''",
1313 'revdelete-failure' => "'''Revision visibility could not be set.'''",
1314 'logdelete-success' => "'''Log visibility successfully set.'''",
1315 'revdel-restore' => 'change visibility',
1316 'pagehist' => 'Page history',
1317 'deletedhist' => 'Deleted history',
1318 'revdelete-content' => 'content',
1319 'revdelete-summary' => 'edit summary',
1320 'revdelete-uname' => 'username',
1321 'revdelete-restricted' => 'applied restrictions to administrators',
1322 'revdelete-unrestricted' => 'removed restrictions for administrators',
1323 'revdelete-hid' => 'hid $1',
1324 'revdelete-unhid' => 'unhid $1',
1325 'revdelete-log-message' => '$1 for $2 {{PLURAL:$2|revision|revisions}}',
1326 'logdelete-log-message' => '$1 for $2 {{PLURAL:$2|event|events}}',
1327
1328 # Suppression log
1329 'suppressionlog' => 'Suppression log',
1330 'suppressionlogtext' => 'Below is a list of deletions and blocks involving content hidden from administrators.
1331 See the [[Special:IPBlockList|IP block list]] for the list of currently operational bans and blocks.',
1332
1333 # History merging
1334 'mergehistory' => 'Merge page histories',
1335 'mergehistory-header' => 'This page lets you merge revisions of the history of one source page into a newer page.
1336 Make sure that this change will maintain historical page continuity.',
1337 'mergehistory-box' => 'Merge revisions of two pages:',
1338 'mergehistory-from' => 'Source page:',
1339 'mergehistory-into' => 'Destination page:',
1340 'mergehistory-list' => 'Mergeable edit history',
1341 'mergehistory-merge' => 'The following revisions of [[:$1]] can be merged into [[:$2]].
1342 Use the radio button column to merge in only the revisions created at and before the specified time.
1343 Note that using the navigation links will reset this column.',
1344 'mergehistory-go' => 'Show mergeable edits',
1345 'mergehistory-submit' => 'Merge revisions',
1346 'mergehistory-empty' => 'No revisions can be merged.',
1347 'mergehistory-success' => '$3 {{PLURAL:$3|revision|revisions}} of [[:$1]] successfully merged into [[:$2]].',
1348 'mergehistory-fail' => 'Unable to perform history merge, please recheck the page and time parameters.',
1349 'mergehistory-no-source' => 'Source page $1 does not exist.',
1350 'mergehistory-no-destination' => 'Destination page $1 does not exist.',
1351 'mergehistory-invalid-source' => 'Source page must be a valid title.',
1352 'mergehistory-invalid-destination' => 'Destination page must be a valid title.',
1353 'mergehistory-autocomment' => 'Merged [[:$1]] into [[:$2]]',
1354 'mergehistory-comment' => 'Merged [[:$1]] into [[:$2]]: $3',
1355 'mergehistory-same-destination' => 'Source and destination pages cannot be the same',
1356 'mergehistory-reason' => 'Reason:',
1357
1358 # Merge log
1359 'mergelog' => 'Merge log',
1360 'pagemerge-logentry' => 'merged [[$1]] into [[$2]] (revisions up to $3)',
1361 'revertmerge' => 'Unmerge',
1362 'mergelogpagetext' => 'Below is a list of the most recent merges of one page history into another.',
1363
1364 # Diffs
1365 'history-title' => 'Revision history of "$1"',
1366 'difference' => '(Difference between revisions)',
1367 'lineno' => 'Line $1:',
1368 'compareselectedversions' => 'Compare selected revisions',
1369 'showhideselectedversions' => 'Show/hide selected revisions',
1370 'visualcomparison' => 'Visual comparison',
1371 'wikicodecomparison' => 'Wikitext comparison',
1372 'editundo' => 'undo',
1373 'diff-multi' => '({{PLURAL:$1|One intermediate revision|$1 intermediate revisions}} not shown)',
1374 'diff-movedto' => 'moved to $1',
1375 'diff-styleadded' => '$1 style added',
1376 'diff-added' => '$1 added',
1377 'diff-changedto' => 'changed to $1',
1378 'diff-movedoutof' => 'moved out of $1',
1379 'diff-styleremoved' => '$1 style removed',
1380 'diff-removed' => '$1 removed',
1381 'diff-changedfrom' => 'changed from $1',
1382 'diff-src' => 'source',
1383 'diff-withdestination' => 'with destination $1',
1384 'diff-with' => '&#32;with $1 $2',
1385 'diff-with-additional' => '$1 $2', # only translate this message to other languages if you have to change it
1386 'diff-with-final' => '&#32;and $1 $2',
1387 'diff-width' => 'width',
1388 'diff-height' => 'height',
1389 'diff-p' => "a '''paragraph'''",
1390 'diff-blockquote' => "a '''quote'''",
1391 'diff-h1' => "a '''heading (level 1)'''",
1392 'diff-h2' => "a '''heading (level 2)'''",
1393 'diff-h3' => "a '''heading (level 3)'''",
1394 'diff-h4' => "a '''heading (level 4)'''",
1395 'diff-h5' => "a '''heading (level 5)'''",
1396 'diff-pre' => "a '''preformatted block'''",
1397 'diff-div' => "a '''division'''",
1398 'diff-ul' => "an '''unordered list'''",
1399 'diff-ol' => "an '''ordered list'''",
1400 'diff-li' => "a '''list item'''",
1401 'diff-table' => "a '''table'''",
1402 'diff-tbody' => "a '''table's content'''",
1403 'diff-tr' => "a '''row'''",
1404 'diff-td' => "a '''cell'''",
1405 'diff-th' => "a '''header'''",
1406 'diff-br' => "a '''break'''",
1407 'diff-hr' => "a '''horizontal rule'''",
1408 'diff-code' => "a '''computer code block'''",
1409 'diff-dl' => "a '''definition list'''",
1410 'diff-dt' => "a '''definition term'''",
1411 'diff-dd' => "a '''definition'''",
1412 'diff-input' => "an '''input'''",
1413 'diff-form' => "a '''form'''",
1414 'diff-img' => "an '''image'''",
1415 'diff-span' => "a '''span'''",
1416 'diff-a' => "a '''link'''",
1417 'diff-i' => "'''italics'''",
1418 'diff-b' => "'''bold'''",
1419 'diff-strong' => "'''strong'''",
1420 'diff-em' => "'''emphasis'''",
1421 'diff-font' => "'''font'''",
1422 'diff-big' => "'''big'''",
1423 'diff-del' => "'''deleted'''",
1424 'diff-tt' => "'''fixed width'''",
1425 'diff-sub' => "'''subscript'''",
1426 'diff-sup' => "'''superscript'''",
1427 'diff-strike' => "'''strikethrough'''",
1428
1429 # Search results
1430 'searchresults' => 'Search results',
1431 'searchresults-title' => 'Search results for "$1"',
1432 'searchresulttext' => 'For more information about searching {{SITENAME}}, see [[{{MediaWiki:Helppage}}|{{int:help}}]].',
1433 '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"]])',
1434 'searchsubtitleinvalid' => "You searched for '''$1'''",
1435 'noexactmatch' => "'''There is no page titled \"\$1\".'''
1436 You can [[:\$1|create this page]].",
1437 'noexactmatch-nocreate' => "'''There is no page titled \"\$1\".'''",
1438 'toomanymatches' => 'Too many matches were returned, please try a different query',
1439 'titlematches' => 'Page title matches',
1440 'notitlematches' => 'No page title matches',
1441 'textmatches' => 'Page text matches',
1442 'notextmatches' => 'No page text matches',
1443 'prevn' => 'previous {{PLURAL:$1|$1}}',
1444 'nextn' => 'next {{PLURAL:$1|$1}}',
1445 'prevn-title' => 'Previous $1 {{PLURAL:$1|result|results}}',
1446 'nextn-title' => 'Next $1 {{PLURAL:$1|result|results}}',
1447 'shown-title' => 'Show $1 {{PLURAL:$1|result|results}} per page',
1448 'viewprevnext' => 'View ($1) ($2) ($3)',
1449 'searchmenu-legend' => 'Search options',
1450 'searchmenu-exists' => "'''There is a page named \"[[:\$1]]\" on this wiki'''",
1451 'searchmenu-new' => "'''Create the page \"[[:\$1]]\" on this wiki!'''",
1452 'searchhelp-url' => 'Help:Contents',
1453 'searchmenu-prefix' => '[[Special:PrefixIndex/$1|Browse pages with this prefix]]',
1454 'searchmenu-help' => '[[{{MediaWiki:Searchhelp-url}}|{{int:help}}]]?', # do not translate or duplicate this message to other languages
1455 'searchprofile-articles' => 'Articles',
1456 'searchprofile-project' => 'Help',
1457 'searchprofile-images' => 'Multimedia',
1458 'searchprofile-everything' => 'Everything',
1459 'searchprofile-advanced' => 'Advanced',
1460 'searchprofile-articles-tooltip' => 'Search in $1',
1461 'searchprofile-project-tooltip' => 'Search in $1',
1462 'searchprofile-images-tooltip' => 'Search for files',
1463 'searchprofile-everything-tooltip' => 'Search all of content (including talk pages)',
1464 'searchprofile-advanced-tooltip' => 'Search in custom namespaces',
1465 'search-result-size' => '$1 ({{PLURAL:$2|1 word|$2 words}})',
1466 'search-result-score' => 'Relevance: $1%',
1467 'search-redirect' => '(redirect $1)',
1468 'search-section' => '(section $1)',
1469 'search-suggest' => 'Did you mean: $1',
1470 'search-interwiki-caption' => 'Sister projects',
1471 'search-interwiki-default' => '$1 results:',
1472 'search-interwiki-custom' => '', # do not translate or duplicate this message to other languages
1473 'search-interwiki-more' => '(more)',
1474 'search-mwsuggest-enabled' => 'with suggestions',
1475 'search-mwsuggest-disabled' => 'no suggestions',
1476 'search-relatedarticle' => 'Related',
1477 'mwsuggest-disable' => 'Disable AJAX suggestions',
1478 'searchrelated' => 'related',
1479 'searchall' => 'all',
1480 'showingresults' => "Showing below up to {{PLURAL:$1|'''1''' result|'''$1''' results}} starting with #'''$2'''.",
1481 'showingresultsnum' => "Showing below {{PLURAL:$3|'''1''' result|'''$3''' results}} starting with #'''$2'''.",
1482 'showingresultstotal' => "Showing below {{PLURAL:$4|result '''$1''' of '''$3'''|results '''$1 - $2''' of '''$3'''}}",
1483 'showingresultsheader' => "{{PLURAL:$5|Result '''$1''' of '''$3'''|Results '''$1 - $2''' of '''$3'''}} for '''$4'''",
1484 'nonefound' => "'''Note''': Only some namespaces are searched by default.
1485 Try prefixing your query with ''all:'' to search all content (including talk pages, templates, etc), or use the desired namespace as prefix.",
1486 'search-nonefound' => 'There were no results matching the query.',
1487 'powersearch' => 'Advanced search',
1488 'powersearch-legend' => 'Advanced search',
1489 'powersearch-ns' => 'Search in namespaces:',
1490 'powersearch-redir' => 'List redirects',
1491 'powersearch-field' => 'Search for',
1492 'search-external' => 'External search',
1493 'searchdisabled' => '{{SITENAME}} search is disabled.
1494 You can search via Google in the meantime.
1495 Note that their indexes of {{SITENAME}} content may be out of date.',
1496 'googlesearch' => '<form method="get" action="http://www.google.com/search" id="googlesearch">
1497 <input type="hidden" name="domains" value="{{SERVER}}" />
1498 <input type="hidden" name="num" value="50" />
1499 <input type="hidden" name="ie" value="$2" />
1500 <input type="hidden" name="oe" value="$2" />
1501
1502 <input type="text" name="q" size="31" maxlength="255" value="$1" />
1503 <input type="submit" name="btnG" value="$3" />
1504 <div>
1505 <input type="radio" name="sitesearch" id="gwiki" value="{{SERVER}}" checked="checked" /><label for="gwiki">{{SITENAME}}</label>
1506 <input type="radio" name="sitesearch" id="gWWW" value="" /><label for="gWWW">WWW</label>
1507 </div>
1508 </form>', # do not translate or duplicate this message to other languages
1509
1510 # OpenSearch description
1511 'opensearch-desc' => '{{SITENAME}} ({{CONTENTLANGUAGE}})', # do not translate or duplicate this message to other languages
1512
1513 # Quickbar
1514 'qbsettings' => 'Quickbar',
1515 'qbsettings-none' => 'None',
1516 'qbsettings-fixedleft' => 'Fixed left',
1517 'qbsettings-fixedright' => 'Fixed right',
1518 'qbsettings-floatingleft' => 'Floating left',
1519 'qbsettings-floatingright' => 'Floating right',
1520
1521 # Preferences page
1522 'preferences' => 'Preferences',
1523 'preferences-summary' => '', # do not translate or duplicate this message to other languages
1524 'mypreferences' => 'My preferences',
1525 'prefs-edits' => 'Number of edits:',
1526 'prefsnologin' => 'Not logged in',
1527 'prefsnologintext' => 'You must be <span class="plainlinks">[{{fullurl:Special:UserLogin|returnto=$1}} logged in]</span> to set user preferences.',
1528 'changepassword' => 'Change password',
1529 'prefs-skin' => 'Skin',
1530 'skin-preview' => 'Preview',
1531 'prefs-math' => 'Math',
1532 'dateformat' => 'Date format',
1533 'datedefault' => 'No preference',
1534 'prefs-datetime' => 'Date and time',
1535 'prefs-personal' => 'User profile',
1536 'prefs-rc' => 'Recent changes',
1537 'prefs-watchlist' => 'Watchlist',
1538 'prefs-watchlist-days' => 'Days to show in watchlist:',
1539 'prefs-watchlist-days-max' => '(maximum 7 days)',
1540 'prefs-watchlist-edits' => 'Maximum number of changes to show in expanded watchlist:',
1541 'prefs-watchlist-edits-max' => '(maximum number: 1000)',
1542 'prefs-misc' => 'Misc',
1543 'prefs-resetpass' => 'Change password',
1544 'prefs-email' => 'E-mail options',
1545 'prefs-rendering' => 'Appearance',
1546 'saveprefs' => 'Save',
1547 'resetprefs' => 'Clear unsaved changes',
1548 'restoreprefs' => 'Restore all default settings',
1549 'prefs-editing' => 'Editing',
1550 'prefs-edit-boxsize' => 'Size of the edit window.',
1551 'rows' => 'Rows:',
1552 'columns' => 'Columns:',
1553 'searchresultshead' => 'Search',
1554 'resultsperpage' => 'Hits per page:',
1555 'contextlines' => 'Lines per hit:',
1556 'contextchars' => 'Context per line:',
1557 'stub-threshold' => 'Threshold for <a href="#" class="stub">stub link</a> formatting (bytes):',
1558 'recentchangesdays' => 'Days to show in recent changes:',
1559 'recentchangesdays-max' => '(maximum $1 {{PLURAL:$1|day|days}})',
1560 'recentchangescount' => 'Number of edits to show in recent changes, page histories, and in logs, by default:',
1561 'savedprefs' => 'Your preferences have been saved.',
1562 'timezonelegend' => 'Time zone',
1563 'localtime' => 'Local time:',
1564 'timezoneselect' => 'Time zone:',
1565 'timezoneuseserverdefault' => 'Use server default',
1566 'timezoneuseoffset' => 'Other (specify offset)',
1567 'timezoneoffset' => 'Offset¹:',
1568 'servertime' => 'Server time:',
1569 'guesstimezone' => 'Fill in from browser',
1570 'timezoneregion-africa' => 'Africa',
1571 'timezoneregion-america' => 'America',
1572 'timezoneregion-antarctica' => 'Antarctica',
1573 'timezoneregion-arctic' => 'Arctic',
1574 'timezoneregion-asia' => 'Asia',
1575 'timezoneregion-atlantic' => 'Atlantic Ocean',
1576 'timezoneregion-australia' => 'Australia',
1577 'timezoneregion-europe' => 'Europe',
1578 'timezoneregion-indian' => 'Indian Ocean',
1579 'timezoneregion-pacific' => 'Pacific Ocean',
1580 'allowemail' => 'Enable e-mail from other users',
1581 'prefs-searchoptions' => 'Search options',
1582 'prefs-namespaces' => 'Namespaces',
1583 'defaultns' => 'Search in these namespaces by default:',
1584 'default' => 'default',
1585 'prefs-files' => 'Files',
1586 'prefs-custom-css' => 'Custom CSS',
1587 'prefs-custom-js' => 'Custom JS',
1588 'prefs-reset-intro' => 'You can use this page to reset your preferences to the site defaults.
1589 This cannot be undone.',
1590 'prefs-emailconfirm-label' => 'E-mail confirmation:',
1591 'prefs-textboxsize' => 'Size of editing window',
1592 'youremail' => 'E-mail:',
1593 'username' => 'Username:',
1594 'uid' => 'User ID:',
1595 'prefs-memberingroups' => 'Member of {{PLURAL:$1|group|groups}}:',
1596 'prefs-registration' => 'Registration time:',
1597 'yourrealname' => 'Real name:',
1598 'yourlanguage' => 'Language:',
1599 'yourvariant' => 'Variant:', # only translate this message to other languages if you have to change it
1600 'yournick' => 'Signature:',
1601 'badsig' => 'Invalid raw signature.
1602 Check HTML tags.',
1603 'badsiglength' => 'Your signature is too long.
1604 It must not be more than $1 {{PLURAL:$1|character|characters}} long.',
1605 'yourgender' => 'Gender:',
1606 'gender-unknown' => 'Unspecified',
1607 'gender-male' => 'Male',
1608 'gender-female' => 'Female',
1609 'prefs-help-gender' => 'Optional: used for gender-correct addressing by the software.
1610 This information will be public.',
1611 'email' => 'E-mail',
1612 'prefs-help-realname' => 'Real name is optional.
1613 If you choose to provide it, this will be used for giving you attribution for your work.',
1614 'prefs-help-email' => 'E-mail address is optional, but allows a new password to be e-mailed to you if you forget your password.
1615 You can also choose to let others contact you through your user or talk page without needing to reveal your identity.',
1616 'prefs-help-email-required' => 'E-mail address is required.',
1617 'prefs-info' => 'Basic information',
1618 'prefs-i18n' => 'Internationalisation',
1619 'prefs-signature' => 'Signature',
1620
1621 # User rights
1622 'userrights' => 'User rights management',
1623 'userrights-summary' => '', # do not translate or duplicate this message to other languages
1624 'userrights-lookup-user' => 'Manage user groups',
1625 'userrights-user-editname' => 'Enter a username:',
1626 'editusergroup' => 'Edit user groups',
1627 'editinguser' => "Changing user rights of user '''[[User:$1|$1]]''' ([[User talk:$1|{{int:talkpagelinktext}}]]{{int:pipe-separator}}[[Special:Contributions/$1|{{int:contribslink}}]])",
1628 'userrights-editusergroup' => 'Edit user groups',
1629 'saveusergroups' => 'Save user groups',
1630 'userrights-groupsmember' => 'Member of:',
1631 'userrights-groups-help' => 'You may alter the groups this user is in:
1632 * A checked box means the user is in that group.
1633 * An unchecked box means the user is not in that group.
1634 * A * indicates that you cannot remove the group once you have added it, or vice versa.',
1635 'userrights-reason' => 'Reason for change:',
1636 'userrights-no-interwiki' => 'You do not have permission to edit user rights on other wikis.',
1637 'userrights-nodatabase' => 'Database $1 does not exist or is not local.',
1638 'userrights-nologin' => 'You must [[Special:UserLogin|log in]] with an administrator account to assign user rights.',
1639 'userrights-notallowed' => 'Your account does not have permission to assign user rights.',
1640 'userrights-changeable-col' => 'Groups you can change',
1641 'userrights-unchangeable-col' => 'Groups you cannot change',
1642 'userrights-irreversible-marker' => '$1*', # only translate this message to other languages if you have to change it
1643
1644 # Groups
1645 'group' => 'Group:',
1646 'group-user' => 'Users',
1647 'group-autoconfirmed' => 'Autoconfirmed users',
1648 'group-bot' => 'Bots',
1649 'group-sysop' => 'Administrators',
1650 'group-bureaucrat' => 'Bureaucrats',
1651 'group-suppress' => 'Oversights',
1652 'group-all' => '(all)',
1653
1654 'group-user-member' => 'User',
1655 'group-autoconfirmed-member' => 'Autoconfirmed user',
1656 'group-bot-member' => 'Bot',
1657 'group-sysop-member' => 'Administrator',
1658 'group-bureaucrat-member' => 'Bureaucrat',
1659 'group-suppress-member' => 'Oversight',
1660
1661 'grouppage-user' => '{{ns:project}}:Users',
1662 'grouppage-autoconfirmed' => '{{ns:project}}:Autoconfirmed users',
1663 'grouppage-bot' => '{{ns:project}}:Bots',
1664 'grouppage-sysop' => '{{ns:project}}:Administrators',
1665 'grouppage-bureaucrat' => '{{ns:project}}:Bureaucrats',
1666 'grouppage-suppress' => '{{ns:project}}:Oversight',
1667
1668 # Rights
1669 'right-read' => 'Read pages',
1670 'right-edit' => 'Edit pages',
1671 'right-createpage' => 'Create pages (which are not discussion pages)',
1672 'right-createtalk' => 'Create discussion pages',
1673 'right-createaccount' => 'Create new user accounts',
1674 'right-minoredit' => 'Mark edits as minor',
1675 'right-move' => 'Move pages',
1676 'right-move-subpages' => 'Move pages with their subpages',
1677 'right-move-rootuserpages' => 'Move root user pages',
1678 'right-movefile' => 'Move files',
1679 'right-suppressredirect' => 'Not create a redirect from the old name when moving a page',
1680 'right-upload' => 'Upload files',
1681 'right-reupload' => 'Overwrite an existing file',
1682 'right-reupload-own' => 'Overwrite an existing file uploaded by oneself',
1683 'right-reupload-shared' => 'Override files on the shared media repository locally',
1684 'right-upload_by_url' => 'Upload a file from a URL address',
1685 'right-purge' => 'Purge the site cache for a page without confirmation',
1686 'right-autoconfirmed' => 'Edit semi-protected pages',
1687 'right-bot' => 'Be treated as an automated process',
1688 'right-nominornewtalk' => 'Not have minor edits to discussion pages trigger the new messages prompt',
1689 'right-apihighlimits' => 'Use higher limits in API queries',
1690 'right-writeapi' => 'Use of the write API',
1691 'right-delete' => 'Delete pages',
1692 'right-bigdelete' => 'Delete pages with large histories',
1693 'right-deleterevision' => 'Delete and undelete specific revisions of pages',
1694 'right-deletedhistory' => 'View deleted history entries, without their associated text',
1695 'right-browsearchive' => 'Search deleted pages',
1696 'right-undelete' => 'Undelete a page',
1697 'right-suppressrevision' => 'Review and restore revisions hidden from administrators',
1698 'right-suppressionlog' => 'View private logs',
1699 'right-block' => 'Block other users from editing',
1700 'right-blockemail' => 'Block a user from sending e-mail',
1701 'right-hideuser' => 'Block a username, hiding it from the public',
1702 'right-ipblock-exempt' => 'Bypass IP blocks, auto-blocks and range blocks',
1703 'right-proxyunbannable' => 'Bypass automatic blocks of proxies',
1704 'right-protect' => 'Change protection levels and edit protected pages',
1705 'right-editprotected' => 'Edit protected pages (without cascading protection)',
1706 'right-editinterface' => 'Edit the user interface',
1707 'right-editusercssjs' => "Edit other users' CSS and JS files",
1708 'right-rollback' => 'Quickly rollback the edits of the last user who edited a particular page',
1709 'right-markbotedits' => 'Mark rolled-back edits as bot edits',
1710 'right-noratelimit' => 'Not be affected by rate limits',
1711 'right-import' => 'Import pages from other wikis',
1712 'right-importupload' => 'Import pages from a file upload',
1713 'right-patrol' => "Mark others' edits as patrolled",
1714 'right-autopatrol' => "Have one's own edits automatically marked as patrolled",
1715 'right-patrolmarks' => 'View recent changes patrol marks',
1716 'right-unwatchedpages' => 'View a list of unwatched pages',
1717 'right-trackback' => 'Submit a trackback',
1718 'right-mergehistory' => 'Merge the history of pages',
1719 'right-userrights' => 'Edit all user rights',
1720 'right-userrights-interwiki' => 'Edit user rights of users on other wikis',
1721 'right-siteadmin' => 'Lock and unlock the database',
1722 'right-reset-passwords' => "Reset other users' passwords",
1723 'right-override-export-depth' => 'Export pages including linked pages up to a depth of 5',
1724
1725 # User rights log
1726 'rightslog' => 'User rights log',
1727 'rightslogtext' => 'This is a log of changes to user rights.',
1728 'rightslogentry' => 'changed group membership for $1 from $2 to $3',
1729 'rightsnone' => '(none)',
1730
1731 # Associated actions - in the sentence "You do not have permission to X"
1732 'action-read' => 'read this page',
1733 'action-edit' => 'edit this page',
1734 'action-createpage' => 'create pages',
1735 'action-createtalk' => 'create discussion pages',
1736 'action-createaccount' => 'create this user account',
1737 'action-minoredit' => 'mark this edit as minor',
1738 'action-move' => 'move this page',
1739 'action-move-subpages' => 'move this page, and its subpages',
1740 'action-move-rootuserpages' => 'move root user pages',
1741 'action-movefile' => 'move this file',
1742 'action-upload' => 'upload this file',
1743 'action-reupload' => 'overwrite this existing file',
1744 'action-reupload-shared' => 'override this file on a shared repository',
1745 'action-upload_by_url' => 'upload this file from a URL address',
1746 'action-writeapi' => 'use the write API',
1747 'action-delete' => 'delete this page',
1748 'action-deleterevision' => 'delete this revision',
1749 'action-deletedhistory' => "view this page's deleted history",
1750 'action-browsearchive' => 'search deleted pages',
1751 'action-undelete' => 'undelete this page',
1752 'action-suppressrevision' => 'review and restore this hidden revision',
1753 'action-suppressionlog' => 'view this private log',
1754 'action-block' => 'block this user from editing',
1755 'action-protect' => 'change protection levels for this page',
1756 'action-import' => 'import this page from another wiki',
1757 'action-importupload' => 'import this page from a file upload',
1758 'action-patrol' => "mark others' edit as patrolled",
1759 'action-autopatrol' => 'have your edit marked as patrolled',
1760 'action-unwatchedpages' => 'view the list of unwatched pages',
1761 'action-trackback' => 'submit a trackback',
1762 'action-mergehistory' => 'merge the history of this page',
1763 'action-userrights' => 'edit all user rights',
1764 'action-userrights-interwiki' => 'edit user rights of users on other wikis',
1765 'action-siteadmin' => 'lock or unlock the database',
1766
1767 # Recent changes
1768 'nchanges' => '$1 {{PLURAL:$1|change|changes}}',
1769 'recentchanges' => 'Recent changes',
1770 'recentchanges-url' => 'Special:RecentChanges', # do not translate or duplicate this message to other languages
1771 'recentchanges-legend' => 'Recent changes options',
1772 'recentchangestext' => 'Track the most recent changes to the wiki on this page.',
1773 'recentchanges-feed-description' => 'Track the most recent changes to the wiki in this feed.',
1774 'rcnote' => "Below {{PLURAL:$1|is '''1''' change|are the last '''$1''' changes}} in the last {{PLURAL:$2|day|'''$2''' days}}, as of $5, $4.",
1775 'rcnotefrom' => "Below are the changes since '''$2''' (up to '''$1''' shown).",
1776 'rclistfrom' => 'Show new changes starting from $1',
1777 'rcshowhideminor' => '$1 minor edits',
1778 'rcshowhidebots' => '$1 bots',
1779 'rcshowhideliu' => '$1 logged-in users',
1780 'rcshowhideanons' => '$1 anonymous users',
1781 'rcshowhidepatr' => '$1 patrolled edits',
1782 'rcshowhidemine' => '$1 my edits',
1783 'rclinks' => 'Show last $1 changes in last $2 days<br />$3',
1784 'diff' => 'diff',
1785 'hist' => 'hist',
1786 'hide' => 'Hide',
1787 'show' => 'Show',
1788 'minoreditletter' => 'm',
1789 'newpageletter' => 'N',
1790 'boteditletter' => 'b',
1791 'sectionlink' => '→', # only translate this message to other languages if you have to change it
1792 'number_of_watching_users_RCview' => '[$1]', # do not translate or duplicate this message to other languages
1793 'number_of_watching_users_pageview' => '[$1 watching {{PLURAL:$1|user|users}}]',
1794 'rc_categories' => 'Limit to categories (separate with "|")',
1795 'rc_categories_any' => 'Any',
1796 'rc-change-size' => '$1', # only translate this message to other languages if you have to change it
1797 'newsectionsummary' => '/* $1 */ new section',
1798 'rc-enhanced-expand' => 'Show details (requires JavaScript)',
1799 'rc-enhanced-hide' => 'Hide details',
1800
1801 # Recent changes linked
1802 'recentchangeslinked' => 'Related changes',
1803 'recentchangeslinked-title' => 'Changes related to "$1"',
1804 'recentchangeslinked-backlink' => '← $1', # only translate this message to other languages if you have to change it
1805 'recentchangeslinked-noresult' => 'No changes on linked pages during the given period.',
1806 'recentchangeslinked-summary' => "This is a list of changes made recently to pages linked from a specified page (or to members of a specified category).
1807 Pages on [[Special:Watchlist|your watchlist]] are '''bold'''.",
1808 'recentchangeslinked-page' => 'Page name:',
1809 'recentchangeslinked-to' => 'Show changes to pages linked to the given page instead',
1810
1811 # Upload
1812 'upload' => 'Upload file',
1813 'uploadbtn' => 'Upload file',
1814 'reupload' => 'Re-upload',
1815 'reuploaddesc' => 'Cancel upload and return to the upload form',
1816 'uploadnologin' => 'Not logged in',
1817 'uploadnologintext' => 'You must be [[Special:UserLogin|logged in]] to upload files.',
1818 'upload_directory_missing' => 'The upload directory ($1) is missing and could not be created by the webserver.',
1819 'upload_directory_read_only' => 'The upload directory ($1) is not writable by the webserver.',
1820 'uploaderror' => 'Upload error',
1821 'upload-summary' => '', # do not translate or duplicate this message to other languages
1822 'uploadtext' => "Use the form below to upload files.
1823 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]].
1824
1825 To include a file in a page, use a link in one of the following forms:
1826 * '''<tt><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.jpg]]</nowiki></tt>''' to use the full version of the file
1827 * '''<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
1828 * '''<tt><nowiki>[[</nowiki>{{ns:media}}<nowiki>:File.ogg]]</nowiki></tt>''' for directly linking to the file without displaying the file",
1829 'upload-permitted' => 'Permitted file types: $1.',
1830 'upload-preferred' => 'Preferred file types: $1.',
1831 'upload-prohibited' => 'Prohibited file types: $1.',
1832 'uploadfooter' => '-', # do not translate or duplicate this message to other languages
1833 'uploadlog' => 'upload log',
1834 'uploadlogpage' => 'Upload log',
1835 'uploadlogpagetext' => 'Below is a list of the most recent file uploads.
1836 See the [[Special:NewFiles|gallery of new files]] for a more visual overview.',
1837 'filename' => 'Filename',
1838 'filedesc' => 'Summary',
1839 'fileuploadsummary' => 'Summary:',
1840 'filereuploadsummary' => 'File changes:',
1841 'filestatus' => 'Copyright status:',
1842 'filesource' => 'Source:',
1843 'uploadedfiles' => 'Uploaded files',
1844 'ignorewarning' => 'Ignore warning and save file anyway',
1845 'ignorewarnings' => 'Ignore any warnings',
1846 'minlength1' => 'File names must be at least one letter.',
1847 'illegalfilename' => 'The filename "$1" contains characters that are not allowed in page titles.
1848 Please rename the file and try uploading it again.',
1849 'badfilename' => 'File name has been changed to "$1".',
1850 'filetype-badmime' => 'Files of the MIME type "$1" are not allowed to be uploaded.',
1851 '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.',
1852 'filetype-unwanted-type' => "'''\".\$1\"''' is an unwanted file type.
1853 Preferred {{PLURAL:\$3|file type is|file types are}} \$2.",
1854 'filetype-banned-type' => "'''\".\$1\"''' is not a permitted file type.
1855 Permitted {{PLURAL:\$3|file type is|file types are}} \$2.",
1856 'filetype-missing' => 'The file has no extension (like ".jpg").',
1857 'large-file' => 'It is recommended that files are no larger than $1;
1858 this file is $2.',
1859 'largefileserver' => 'This file is bigger than the server is configured to allow.',
1860 'emptyfile' => 'The file you uploaded seems to be empty.
1861 This might be due to a typo in the file name.
1862 Please check whether you really want to upload this file.',
1863 'fileexists' => "A file with this name exists already, please check '''<tt>$1</tt>''' if you are not sure if you want to change it.",
1864 'filepageexists' => "The description page for this file has already been created at '''<tt>$1</tt>''', but no file with this name currently exists.
1865 The summary you enter will not appear on the description page.
1866 To make your summary appear there, you will need to manually edit it",
1867 'fileexists-extension' => "A file with a similar name exists:<br />
1868 Name of the uploading file: '''<tt>$1</tt>'''<br />
1869 Name of the existing file: '''<tt>$2</tt>'''<br />
1870 Please choose a different name.",
1871 'fileexists-thumb' => "<center>'''Existing file'''</center>",
1872 'fileexists-thumbnail-yes' => "The file seems to be an image of reduced size ''(thumbnail)''.
1873 Please check the file '''<tt>$1</tt>'''.<br />
1874 If the checked file is the same image of original size it is not necessary to upload an extra thumbnail.",
1875 'file-thumbnail-no' => "The filename begins with '''<tt>$1</tt>'''.
1876 It seems to be an image of reduced size ''(thumbnail)''.
1877 If you have this image in full resolution upload this one, otherwise change the file name please.",
1878 'fileexists-forbidden' => 'A file with this name already exists, and cannot be overwritten.
1879 If you still want to upload your file, please go back and use a new name. [[File:$1|thumb|center|$1]]',
1880 'fileexists-shared-forbidden' => 'A file with this name exists already in the shared file repository.
1881 If you still want to upload your file, please go back and use a new name. [[File:$1|thumb|center|$1]]',
1882 'file-exists-duplicate' => 'This file is a duplicate of the following {{PLURAL:$1|file|files}}:',
1883 'file-deleted-duplicate' => "A file identical to this file ([[$1]]) has previously been deleted.
1884 You should check that file's deletion history before proceeding to re-upload it.",
1885 'successfulupload' => 'Successful upload',
1886 'uploadwarning' => 'Upload warning',
1887 'savefile' => 'Save file',
1888 'uploadedimage' => 'uploaded "[[$1]]"',
1889 'overwroteimage' => 'uploaded a new version of "[[$1]]"',
1890 'uploaddisabled' => 'Uploads disabled',
1891 'uploaddisabledtext' => 'File uploads are disabled.',
1892 'php-uploaddisabledtext' => 'File uploads are disabled in PHP.
1893 Please check the file_uploads setting.',
1894 'uploadscripted' => 'This file contains HTML or script code that may be erroneously interpreted by a web browser.',
1895 'uploadcorrupt' => 'The file is corrupt or has an incorrect extension.
1896 Please check the file and upload again.',
1897 'uploadvirus' => 'The file contains a virus! Details: $1',
1898 'sourcefilename' => 'Source filename:',
1899 'destfilename' => 'Destination filename:',
1900 'upload-maxfilesize' => 'Maximum file size: $1',
1901 'watchthisupload' => 'Watch this file',
1902 'filewasdeleted' => 'A file of this name has been previously uploaded and subsequently deleted.
1903 You should check the $1 before proceeding to upload it again.',
1904 'upload-wasdeleted' => "'''Warning: You are uploading a file that was previously deleted.'''
1905
1906 You should consider whether it is appropriate to continue uploading this file.
1907 The deletion log for this file is provided here for convenience:",
1908 '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.
1909 Please choose a more descriptive name for your file.",
1910 'filename-prefix-blacklist' => ' #<!-- leave this line exactly as it is --> <pre>
1911 # Syntax is as follows:
1912 # * Everything from a "#" character to the end of the line is a comment
1913 # * Every non-blank line is a prefix for typical file names assigned automatically by digital cameras
1914 CIMG # Casio
1915 DSC_ # Nikon
1916 DSCF # Fuji
1917 DSCN # Nikon
1918 DUW # some mobile phones
1919 IMG # generic
1920 JD # Jenoptik
1921 MGP # Pentax
1922 PICT # misc.
1923 #</pre> <!-- leave this line exactly as it is -->', # only translate this message to other languages if you have to change it
1924
1925 'upload-proto-error' => 'Incorrect protocol',
1926 'upload-proto-error-text' => 'Remote upload requires URLs beginning with <code>http://</code> or <code>ftp://</code>.',
1927 'upload-file-error' => 'Internal error',
1928 'upload-file-error-text' => 'An internal error occurred when attempting to create a temporary file on the server.
1929 Please contact an [[Special:ListUsers/sysop|administrator]].',
1930 'upload-misc-error' => 'Unknown upload error',
1931 'upload-misc-error-text' => 'An unknown error occurred during the upload.
1932 Please verify that the URL is valid and accessible and try again.
1933 If the problem persists, contact an [[Special:ListUsers/sysop|administrator]].',
1934
1935 # Some likely curl errors. More could be added from <http://curl.haxx.se/libcurl/c/libcurl-errors.html>
1936 'upload-curl-error6' => 'Could not reach URL',
1937 'upload-curl-error6-text' => 'The URL provided could not be reached.
1938 Please double-check that the URL is correct and the site is up.',
1939 'upload-curl-error28' => 'Upload timeout',
1940 'upload-curl-error28-text' => 'The site took too long to respond.
1941 Please check the site is up, wait a short while and try again.
1942 You may want to try at a less busy time.',
1943
1944 'license' => 'Licensing:',
1945 'nolicense' => 'None selected',
1946 'licenses' => '-', # do not translate or duplicate this message to other languages
1947 'license-nopreview' => '(Preview not available)',
1948 'upload_source_url' => ' (a valid, publicly accessible URL)',
1949 'upload_source_file' => ' (a file on your computer)',
1950
1951 # Special:ListFiles
1952 'listfiles-summary' => 'This special page shows all uploaded files.
1953 By default the last uploaded files are shown at top of the list.
1954 A click on a column header changes the sorting.',
1955 'listfiles_search_for' => 'Search for media name:',
1956 'imgfile' => 'file',
1957 'listfiles' => 'File list',
1958 'listfiles_date' => 'Date',
1959 'listfiles_name' => 'Name',
1960 'listfiles_user' => 'User',
1961 'listfiles_size' => 'Size',
1962 'listfiles_description' => 'Description',
1963 'listfiles_count' => 'Versions',
1964
1965 # File description page
1966 'filehist' => 'File history',
1967 'filehist-help' => 'Click on a date/time to view the file as it appeared at that time.',
1968 'filehist-deleteall' => 'delete all',
1969 'filehist-deleteone' => 'delete',
1970 'filehist-revert' => 'revert',
1971 'filehist-current' => 'current',
1972 'filehist-datetime' => 'Date/Time',
1973 'filehist-thumb' => 'Thumbnail',
1974 'filehist-thumbtext' => 'Thumbnail for version as of $1',
1975 'filehist-nothumb' => 'No thumbnail',
1976 'filehist-user' => 'User',
1977 'filehist-dimensions' => 'Dimensions',
1978 'filehist-filesize' => 'File size',
1979 'filehist-comment' => 'Comment',
1980 'imagelinks' => 'File links',
1981 'linkstoimage' => 'The following {{PLURAL:$1|page links|$1 pages link}} to this file:',
1982 'linkstoimage-more' => 'More than $1 {{PLURAL:$1|page links|pages link}} to this file.
1983 The following list shows the {{PLURAL:$1|first page link|first $1 page links}} to this file only.
1984 A [[Special:WhatLinksHere/$2|full list]] is available.',
1985 'nolinkstoimage' => 'There are no pages that link to this file.',
1986 'morelinkstoimage' => 'View [[Special:WhatLinksHere/$1|more links]] to this file.',
1987 'redirectstofile' => 'The following {{PLURAL:$1|file redirects|$1 files redirect}} to this file:',
1988 'duplicatesoffile' => 'The following {{PLURAL:$1|file is a duplicate|$1 files are duplicates}} of this file ([[Special:FileDuplicateSearch/$2|more details]]):',
1989 'sharedupload' => 'This file is from $1 and may be used by other projects.',
1990 'sharedupload-desc-there' => 'This file is from $1 and may be used by other projects.
1991 Please see the [$2 file description page] for further information.',
1992 'sharedupload-desc-here' => 'This file is from $1 and may be used by other projects.
1993 The description on its [$2 file description page] there is shown below.',
1994 'shareddescriptionfollows' => '-', # do not translate or duplicate this message to other languages
1995 'noimage' => 'No file by this name exists, but you can $1.',
1996 'noimage-linktext' => 'upload one',
1997 'uploadnewversion-linktext' => 'Upload a new version of this file',
1998 'shared-repo-from' => 'from $1',
1999 'shared-repo' => 'a shared repository',
2000
2001 # File reversion
2002 'filerevert' => 'Revert $1',
2003 'filerevert-backlink' => '← $1', # only translate this message to other languages if you have to change it
2004 'filerevert-legend' => 'Revert file',
2005 'filerevert-intro' => "You are about to revert the file '''[[Media:$1|$1]]''' to the [$4 version as of $3, $2].",
2006 'filerevert-comment' => 'Comment:',
2007 'filerevert-defaultcomment' => 'Reverted to version as of $2, $1',
2008 'filerevert-submit' => 'Revert',
2009 'filerevert-success' => "'''[[Media:$1|$1]]''' has been reverted to the [$4 version as of $3, $2].",
2010 'filerevert-badversion' => 'There is no previous local version of this file with the provided timestamp.',
2011
2012 # File deletion
2013 'filedelete' => 'Delete $1',
2014 'filedelete-backlink' => '← $1', # only translate this message to other languages if you have to change it
2015 'filedelete-legend' => 'Delete file',
2016 'filedelete-intro' => "You are about to delete the file '''[[Media:$1|$1]]''' along with all of its history.",
2017 'filedelete-intro-old' => "You are deleting the version of '''[[Media:$1|$1]]''' as of [$4 $3, $2].",
2018 'filedelete-comment' => 'Reason for deletion:',
2019 'filedelete-submit' => 'Delete',
2020 'filedelete-success' => "'''$1''' has been deleted.",
2021 'filedelete-success-old' => "The version of '''[[Media:$1|$1]]''' as of $3, $2 has been deleted.",
2022 'filedelete-nofile' => "'''$1''' does not exist.",
2023 'filedelete-nofile-old' => "There is no archived version of '''$1''' with the specified attributes.",
2024 'filedelete-otherreason' => 'Other/additional reason:',
2025 'filedelete-reason-otherlist' => 'Other reason',
2026 'filedelete-reason-dropdown' => '*Common delete reasons
2027 ** Copyright violation
2028 ** Duplicated file',
2029 'filedelete-edit-reasonlist' => 'Edit delete reasons',
2030
2031 # MIME search
2032 'mimesearch' => 'MIME search',
2033 'mimesearch-summary' => 'This page enables the filtering of files for its MIME-type.
2034 Input: contenttype/subtype, e.g. <tt>image/jpeg</tt>.',
2035 'mimetype' => 'MIME type:',
2036 'download' => 'download',
2037
2038 # Unwatched pages
2039 'unwatchedpages' => 'Unwatched pages',
2040 'unwatchedpages-summary' => '', # do not translate or duplicate this message to other languages
2041
2042 # List redirects
2043 'listredirects' => 'List of redirects',
2044 'listredirects-summary' => '', # do not translate or duplicate this message to other languages
2045
2046 # Unused templates
2047 'unusedtemplates' => 'Unused templates',
2048 'unusedtemplates-summary' => '', # do not translate or duplicate this message to other languages
2049 'unusedtemplatestext' => 'This page lists all pages in the {{ns:template}} namespace which are not included in another page.
2050 Remember to check for other links to the templates before deleting them.',
2051 'unusedtemplateswlh' => 'other links',
2052
2053 # Random page
2054 'randompage' => 'Random page',
2055 'randompage-nopages' => 'There are no pages in the namespace "$1".',
2056 'randompage-url' => 'Special:Random', # do not translate or duplicate this message to other languages
2057
2058 # Random redirect
2059 'randomredirect' => 'Random redirect',
2060 'randomredirect-nopages' => 'There are no redirects in the namespace "$1".',
2061
2062 # Statistics
2063 'statistics' => 'Statistics',
2064 'statistics-summary' => '', # do not translate or duplicate this message to other languages
2065 'statistics-header-pages' => 'Page statistics',
2066 'statistics-header-edits' => 'Edit statistics',
2067 'statistics-header-views' => 'View statistics',
2068 'statistics-header-users' => 'User statistics',
2069 'statistics-articles' => 'Content pages',
2070 'statistics-pages' => 'Pages',
2071 'statistics-pages-desc' => 'All pages in the wiki, including talk pages, redirects, etc.',
2072 'statistics-files' => 'Uploaded files',
2073 'statistics-edits' => 'Page edits since {{SITENAME}} was set up',
2074 'statistics-edits-average' => 'Average edits per page',
2075 'statistics-views-total' => 'Views total',
2076 'statistics-views-peredit' => 'Views per edit',
2077 'statistics-jobqueue' => '[http://www.mediawiki.org/wiki/Manual:Job_queue Job queue] length',
2078 'statistics-users' => 'Registered [[Special:ListUsers|users]]',
2079 'statistics-users-active' => 'Active users',
2080 'statistics-users-active-desc' => 'Users who have performed an action in the last {{PLURAL:$1|day|$1 days}}',
2081 'statistics-mostpopular' => 'Most viewed pages',
2082 'statistics-footer' => '', # do not translate or duplicate this message to other languages
2083
2084 'disambiguations' => 'Disambiguation pages',
2085 'disambiguations-summary' => '', # do not translate or duplicate this message to other languages
2086 'disambiguationspage' => 'Template:disambig',
2087 'disambiguations-text' => "The following pages link to a '''disambiguation page'''.
2088 They should link to the appropriate topic instead.<br />
2089 A page is treated as disambiguation page if it uses a template which is linked from [[MediaWiki:Disambiguationspage]]",
2090
2091 'doubleredirects' => 'Double redirects',
2092 'doubleredirects-summary' => '', # do not translate or duplicate this message to other languages
2093 'doubleredirectstext' => 'This page lists pages which redirect to other redirect pages.
2094 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.',
2095 'double-redirect-fixed-move' => '[[$1]] has been moved.
2096 It now redirects to [[$2]].',
2097 'double-redirect-fixer' => 'Redirect fixer',
2098
2099 'brokenredirects' => 'Broken redirects',
2100 'brokenredirects-summary' => '', # do not translate or duplicate this message to other languages
2101 'brokenredirectstext' => 'The following redirects link to non-existent pages:',
2102 'brokenredirects-edit' => '(edit)',
2103 'brokenredirects-delete' => '(delete)',
2104
2105 'withoutinterwiki' => 'Pages without language links',
2106 'withoutinterwiki-summary' => 'The following pages do not link to other language versions.',
2107 'withoutinterwiki-legend' => 'Prefix',
2108 'withoutinterwiki-submit' => 'Show',
2109
2110 'fewestrevisions' => 'Pages with the fewest revisions',
2111 'fewestrevisions-summary' => '', # do not translate or duplicate this message to other languages
2112
2113 # Miscellaneous special pages
2114 'nbytes' => '$1 {{PLURAL:$1|byte|bytes}}',
2115 'ncategories' => '$1 {{PLURAL:$1|category|categories}}',
2116 'nlinks' => '$1 {{PLURAL:$1|link|links}}',
2117 'nmembers' => '$1 {{PLURAL:$1|member|members}}',
2118 'nrevisions' => '$1 {{PLURAL:$1|revision|revisions}}',
2119 'nviews' => '$1 {{PLURAL:$1|view|views}}',
2120 'specialpage-empty' => 'There are no results for this report.',
2121 'lonelypages' => 'Orphaned pages',
2122 'lonelypages-summary' => '', # do not translate or duplicate this message to other languages
2123 'lonelypagestext' => 'The following pages are not linked from or transcluded into other pages in {{SITENAME}}.',
2124 'uncategorizedpages' => 'Uncategorized pages',
2125 'uncategorizedpages-summary' => '', # do not translate or duplicate this message to other languages
2126 'uncategorizedcategories' => 'Uncategorized categories',
2127 'uncategorizedcategories-summary' => '', # do not translate or duplicate this message to other languages
2128 'uncategorizedimages' => 'Uncategorized files',
2129 'uncategorizedimages-summary' => '', # do not translate or duplicate this message to other languages
2130 'uncategorizedtemplates' => 'Uncategorized templates',
2131 'uncategorizedtemplates-summary' => '', # do not translate or duplicate this message to other languages
2132 'unusedcategories' => 'Unused categories',
2133 'unusedimages' => 'Unused files',
2134 'popularpages' => 'Popular pages',
2135 'popularpages-summary' => '', # do not translate or duplicate this message to other languages
2136 'wantedcategories' => 'Wanted categories',
2137 'wantedcategories-summary' => '', # do not translate or duplicate this message to other languages
2138 'wantedpages' => 'Wanted pages',
2139 'wantedpages-summary' => '', # do not translate or duplicate this message to other languages
2140 'wantedpages-badtitle' => 'Invalid title in result set: $1',
2141 'wantedfiles' => 'Wanted files',
2142 'wantedfiles-summary' => '', # do not translate or duplicate this message to other languages
2143 'wantedtemplates' => 'Wanted templates',
2144 'wantedtemplates-summary' => '', # do not translate or duplicate this message to other languages
2145 'mostlinked' => 'Most linked-to pages',
2146 'mostlinked-summary' => '', # do not translate or duplicate this message to other languages
2147 'mostlinkedcategories' => 'Most linked-to categories',
2148 'mostlinkedcategories-summary' => '', # do not translate or duplicate this message to other languages
2149 'mostlinkedtemplates' => 'Most linked-to templates',
2150 'mostlinkedtemplates-summary' => '', # do not translate or duplicate this message to other languages
2151 'mostcategories' => 'Pages with the most categories',
2152 'mostcategories-summary' => '', # do not translate or duplicate this message to other languages
2153 'mostimages' => 'Most linked-to files',
2154 'mostimages-summary' => '', # do not translate or duplicate this message to other languages
2155 'mostrevisions' => 'Pages with the most revisions',
2156 'mostrevisions-summary' => '', # do not translate or duplicate this message to other languages
2157 'prefixindex' => 'All pages with prefix',
2158 'prefixindex-summary' => '', # do not translate or duplicate this message to other languages
2159 'shortpages' => 'Short pages',
2160 'shortpages-summary' => '', # do not translate or duplicate this message to other languages
2161 'longpages' => 'Long pages',
2162 'longpages-summary' => '', # do not translate or duplicate this message to other languages
2163 'deadendpages' => 'Dead-end pages',
2164 'deadendpages-summary' => '', # do not translate or duplicate this message to other languages
2165 'deadendpagestext' => 'The following pages do not link to other pages in {{SITENAME}}.',
2166 'protectedpages' => 'Protected pages',
2167 'protectedpages-indef' => 'Indefinite protections only',
2168 'protectedpages-summary' => '', # do not translate or duplicate this message to other languages
2169 'protectedpages-cascade' => 'Cascading protections only',
2170 'protectedpagestext' => 'The following pages are protected from moving or editing',
2171 'protectedpagesempty' => 'No pages are currently protected with these parameters.',
2172 'protectedtitles' => 'Protected titles',
2173 'protectedtitles-summary' => '', # do not translate or duplicate this message to other languages
2174 'protectedtitlestext' => 'The following titles are protected from creation',
2175 'protectedtitlesempty' => 'No titles are currently protected with these parameters.',
2176 'listusers' => 'User list',
2177 'listusers-summary' => '', # do not translate or duplicate this message to other languages
2178 'listusers-editsonly' => 'Show only users with edits',
2179 'listusers-creationsort' => 'Sort by creation date',
2180 'usereditcount' => '$1 {{PLURAL:$1|edit|edits}}',
2181 'usercreated' => 'Created on $1 at $2',
2182 'newpages' => 'New pages',
2183 'newpages-summary' => '', # do not translate or duplicate this message to other languages
2184 'newpages-username' => 'Username:',
2185 'ancientpages' => 'Oldest pages',
2186 'ancientpages-summary' => '', # do not translate or duplicate this message to other languages
2187 'move' => 'Move',
2188 'movethispage' => 'Move this page',
2189 '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.',
2190 'unusedcategoriestext' => 'The following category pages exist, although no other page or category makes use of them.',
2191 'notargettitle' => 'No target',
2192 'notargettext' => 'You have not specified a target page or user to perform this function on.',
2193 'nopagetitle' => 'No such target page',
2194 'nopagetext' => 'The target page you have specified does not exist.',
2195 'pager-newer-n' => '{{PLURAL:$1|newer 1|newer $1}}',
2196 'pager-older-n' => '{{PLURAL:$1|older 1|older $1}}',
2197 'suppress' => 'Oversight',
2198
2199 # Book sources
2200 'booksources' => 'Book sources',
2201 'booksources-summary' => '', # do not translate or duplicate this message to other languages
2202 'booksources-search-legend' => 'Search for book sources',
2203 'booksources-isbn' => 'ISBN:', # only translate this message to other languages if you have to change it
2204 'booksources-go' => 'Go',
2205 '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:',
2206 'booksources-invalid-isbn' => 'The given ISBN does not appear to be valid; check for errors copying from the original source.',
2207
2208 # Magic words
2209 'rfcurl' => 'http://tools.ietf.org/html/rfc$1', # do not translate or duplicate this message to other languages
2210 '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
2211
2212 # Special:Log
2213 'specialloguserlabel' => 'User:',
2214 'speciallogtitlelabel' => 'Title:',
2215 'log' => 'Logs',
2216 'all-logs-page' => 'All public logs',
2217 'alllogstext' => 'Combined display of all available logs of {{SITENAME}}.
2218 You can narrow down the view by selecting a log type, the user name (case-sensitive), or the affected page (also case-sensitive).',
2219 'logempty' => 'No matching items in log.',
2220 'log-title-wildcard' => 'Search titles starting with this text',
2221
2222 # Special:AllPages
2223 'allpages' => 'All pages',
2224 'allpages-summary' => '', # do not translate or duplicate this message to other languages
2225 'alphaindexline' => '$1 to $2',
2226 'nextpage' => 'Next page ($1)',
2227 'prevpage' => 'Previous page ($1)',
2228 'allpagesfrom' => 'Display pages starting at:',
2229 'allpagesto' => 'Display pages ending at:',
2230 'allarticles' => 'All pages',
2231 'allinnamespace' => 'All pages ($1 namespace)',
2232 'allnotinnamespace' => 'All pages (not in $1 namespace)',
2233 'allpagesprev' => 'Previous',
2234 'allpagesnext' => 'Next',
2235 'allpagessubmit' => 'Go',
2236 'allpagesprefix' => 'Display pages with prefix:',
2237 'allpagesbadtitle' => 'The given page title was invalid or had an inter-language or inter-wiki prefix.
2238 It may contain one or more characters which cannot be used in titles.',
2239 'allpages-bad-ns' => '{{SITENAME}} does not have namespace "$1".',
2240
2241 # Special:Categories
2242 'categories' => 'Categories',
2243 'categories-summary' => '', # do not translate or duplicate this message to other languages
2244 'categoriespagetext' => 'The following categories contain pages or media.
2245 [[Special:UnusedCategories|Unused categories]] are not shown here.
2246 Also see [[Special:WantedCategories|wanted categories]].',
2247 'categoriesfrom' => 'Display categories starting at:',
2248 'special-categories-sort-count' => 'sort by count',
2249 'special-categories-sort-abc' => 'sort alphabetically',
2250
2251 # Special:DeletedContributions
2252 'deletedcontributions' => 'Deleted user contributions',
2253 'deletedcontributions-title' => 'Deleted user contributions',
2254
2255 # Special:LinkSearch
2256 'linksearch' => 'External links',
2257 'linksearch-pat' => 'Search pattern:',
2258 'linksearch-ns' => 'Namespace:',
2259 'linksearch-ok' => 'Search',
2260 'linksearch-text' => 'Wildcards such as "*.wikipedia.org" may be used.<br />
2261 Supported protocols: <tt>$1</tt>',
2262 'linksearch-line' => '$1 is linked from $2',
2263 'linksearch-error' => 'Wildcards may appear only at the start of the hostname.',
2264
2265 # Special:ListUsers
2266 'listusersfrom' => 'Display users starting at:',
2267 'listusers-submit' => 'Show',
2268 'listusers-noresult' => 'No user found.',
2269
2270 # Special:Log/newusers
2271 'newuserlogpage' => 'User creation log',
2272 'newuserlogpagetext' => 'This is a log of user creations.',
2273 'newuserlogentry' => '', # do not translate or duplicate this message to other languages
2274 'newuserlog-byemail' => 'password sent by e-mail',
2275 'newuserlog-create-entry' => 'New user account',
2276 'newuserlog-create2-entry' => 'created new account $1',
2277 'newuserlog-autocreate-entry' => 'Account created automatically',
2278
2279 # Special:ListGroupRights
2280 'listgrouprights' => 'User group rights',
2281 'listgrouprights-summary' => 'The following is a list of user groups defined on this wiki, with their associated access rights.
2282 There may be [[{{MediaWiki:Listgrouprights-helppage}}|additional information]] about individual rights.',
2283 'listgrouprights-group' => 'Group',
2284 'listgrouprights-rights' => 'Rights',
2285 'listgrouprights-helppage' => 'Help:Group rights',
2286 'listgrouprights-members' => '(list of members)',
2287 'listgrouprights-right-display' => '$1 ($2)', # only translate this message to other languages if you have to change it
2288 'listgrouprights-addgroup' => 'Can add {{PLURAL:$2|group|groups}}: $1',
2289 'listgrouprights-removegroup' => 'Can remove {{PLURAL:$2|group|groups}}: $1',
2290 'listgrouprights-addgroup-all' => 'Can add all groups',
2291 'listgrouprights-removegroup-all' => 'Can remove all groups',
2292 'listgrouprights-addgroup-self' => 'Can add {{PLURAL:$2|group|groups}} to own account: $1',
2293 'listgrouprights-removegroup-self' => 'Can remove {{PLURAL:$2|group|groups}} from own account: $1',
2294 'listgrouprights-addgroup-self-all' => 'Can add all groups to own account',
2295 'listgrouprights-removegroup-self-all' => 'Can remove all groups from own account',
2296
2297 # E-mail user
2298 'mailnologin' => 'No send address',
2299 '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.',
2300 'emailuser' => 'E-mail this user',
2301 'emailpage' => 'E-mail user',
2302 'emailpagetext' => 'You can use the form below to send an e-mail message to this user.
2303 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.',
2304 'usermailererror' => 'Mail object returned error:',
2305 'defemailsubject' => '{{SITENAME}} e-mail',
2306 'noemailtitle' => 'No e-mail address',
2307 'noemailtext' => 'This user has not specified a valid e-mail address.',
2308 'nowikiemailtitle' => 'No e-mail allowed',
2309 'nowikiemailtext' => 'This user has chosen not to receive e-mail from other users.',
2310 'email-legend' => 'Send an e-mail to another {{SITENAME}} user',
2311 'emailfrom' => 'From:',
2312 'emailto' => 'To:',
2313 'emailsubject' => 'Subject:',
2314 'emailmessage' => 'Message:',
2315 'emailsend' => 'Send',
2316 'emailccme' => 'E-mail me a copy of my message.',
2317 'emailccsubject' => 'Copy of your message to $1: $2',
2318 'emailsent' => 'E-mail sent',
2319 'emailsenttext' => 'Your e-mail message has been sent.',
2320 'emailuserfooter' => 'This e-mail was sent by $1 to $2 by the "E-mail user" function at {{SITENAME}}.',
2321
2322 # Watchlist
2323 'watchlist' => 'My watchlist',
2324 'mywatchlist' => 'My watchlist',
2325 'watchlistfor' => "(for '''$1''')",
2326 'nowatchlist' => 'You have no items on your watchlist.',
2327 'watchlistanontext' => 'Please $1 to view or edit items on your watchlist.',
2328 'watchnologin' => 'Not logged in',
2329 'watchnologintext' => 'You must be [[Special:UserLogin|logged in]] to modify your watchlist.',
2330 'addedwatch' => 'Added to watchlist',
2331 'addedwatchtext' => "The page \"[[:\$1]]\" has been added to your [[Special:Watchlist|watchlist]].
2332 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.",
2333 'removedwatch' => 'Removed from watchlist',
2334 'removedwatchtext' => 'The page "[[:$1]]" has been removed from [[Special:Watchlist|your watchlist]].',
2335 'watch' => 'Watch',
2336 'watchthispage' => 'Watch this page',
2337 'unwatch' => 'Unwatch',
2338 'unwatchthispage' => 'Stop watching',
2339 'notanarticle' => 'Not a content page',
2340 'notvisiblerev' => 'Revision has been deleted',
2341 'watchnochange' => 'None of your watched items were edited in the time period displayed.',
2342 'watchlist-details' => '{{PLURAL:$1|$1 page|$1 pages}} on your watchlist, not counting talk pages.',
2343 'wlheader-enotif' => '* E-mail notification is enabled.',
2344 'wlheader-showupdated' => "* Pages which have been changed since you last visited them are shown in '''bold'''",
2345 'watchmethod-recent' => 'checking recent edits for watched pages',
2346 'watchmethod-list' => 'checking watched pages for recent edits',
2347 'watchlistcontains' => 'Your watchlist contains $1 {{PLURAL:$1|page|pages}}.',
2348 'iteminvalidname' => "Problem with item '$1', invalid name…",
2349 'wlnote' => "Below {{PLURAL:$1|is the last change|are the last '''$1''' changes}} in the last {{PLURAL:$2|hour|'''$2''' hours}}.",
2350 'wlshowlast' => 'Show last $1 hours $2 days $3',
2351 'watchlist-options' => 'Watchlist options',
2352
2353 # Displayed when you click the "watch" button and it is in the process of watching
2354 'watching' => 'Watching…',
2355 'unwatching' => 'Unwatching…',
2356
2357 'enotif_mailer' => '{{SITENAME}} Notification Mailer',
2358 'enotif_reset' => 'Mark all pages visited',
2359 'enotif_newpagetext' => 'This is a new page.',
2360 'enotif_impersonal_salutation' => '{{SITENAME}} user',
2361 'changed' => 'changed',
2362 'created' => 'created',
2363 'enotif_subject' => '{{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED by $PAGEEDITOR',
2364 'enotif_lastvisited' => 'See $1 for all changes since your last visit.',
2365 'enotif_lastdiff' => 'See $1 to view this change.',
2366 'enotif_anon_editor' => 'anonymous user $1',
2367 'enotif_body' => 'Dear $WATCHINGUSERNAME,
2368
2369
2370 The {{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED on $PAGEEDITDATE by $PAGEEDITOR, see $PAGETITLE_URL for the current revision.
2371
2372 $NEWPAGE
2373
2374 Editor\'s summary: $PAGESUMMARY $PAGEMINOREDIT
2375
2376 Contact the editor:
2377 mail: $PAGEEDITOR_EMAIL
2378 wiki: $PAGEEDITOR_WIKI
2379
2380 There will be no other notifications in case of further changes unless you visit this page.
2381 You could also reset the notification flags for all your watched pages on your watchlist.
2382
2383 Your friendly {{SITENAME}} notification system
2384
2385 --
2386 To change your watchlist settings, visit
2387 {{fullurl:{{ns:special}}:Watchlist/edit}}
2388
2389 Feedback and further assistance:
2390 {{fullurl:{{MediaWiki:Helppage}}}}',
2391
2392 # Delete
2393 'deletepage' => 'Delete page',
2394 'confirm' => 'Confirm',
2395 'excontent' => "content was: '$1'",
2396 'excontentauthor' => "content was: '$1' (and the only contributor was '[[Special:Contributions/$2|$2]]')",
2397 'exbeforeblank' => "content before blanking was: '$1'",
2398 'exblank' => 'page was empty',
2399 'delete-confirm' => 'Delete "$1"',
2400 'delete-backlink' => '← $1', # only translate this message to other languages if you have to change it
2401 'delete-legend' => 'Delete',
2402 'historywarning' => "'''Warning:''' The page you are about to delete has a history:",
2403 'confirmdeletetext' => 'You are about to delete a page along with all of its history.
2404 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]].',
2405 'actioncomplete' => 'Action complete',
2406 'actionfailed' => 'Action failed',
2407 'deletedtext' => '"<nowiki>$1</nowiki>" has been deleted.
2408 See $2 for a record of recent deletions.',
2409 'deletedarticle' => 'deleted "[[$1]]"',
2410 'suppressedarticle' => 'suppressed "[[$1]]"',
2411 'dellogpage' => 'Deletion log',
2412 'dellogpagetext' => 'Below is a list of the most recent deletions.',
2413 'deletionlog' => 'deletion log',
2414 'reverted' => 'Reverted to earlier revision',
2415 'deletecomment' => 'Reason for deletion:',
2416 'deleteotherreason' => 'Other/additional reason:',
2417 'deletereasonotherlist' => 'Other reason',
2418 'deletereason-dropdown' => '*Common delete reasons
2419 ** Author request
2420 ** Copyright violation
2421 ** Vandalism',
2422 'delete-edit-reasonlist' => 'Edit deletion reasons',
2423 'delete-toobig' => 'This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.
2424 Deletion of such pages has been restricted to prevent accidental disruption of {{SITENAME}}.',
2425 'delete-warning-toobig' => 'This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.
2426 Deleting it may disrupt database operations of {{SITENAME}};
2427 proceed with caution.',
2428
2429 # Rollback
2430 'rollback' => 'Roll back edits',
2431 'rollback_short' => 'Rollback',
2432 'rollbacklink' => 'rollback',
2433 'rollbackfailed' => 'Rollback failed',
2434 'cantrollback' => 'Cannot revert edit;
2435 last contributor is only author of this page.',
2436 'alreadyrolled' => 'Cannot rollback last edit of [[:$1]] by [[User:$2|$2]] ([[User talk:$2|Talk]]{{int:pipe-separator}}[[Special:Contributions/$2|{{int:contribslink}}]]);
2437 someone else has edited or rolled back the page already.
2438
2439 The last edit to the page was by [[User:$3|$3]] ([[User talk:$3|Talk]]{{int:pipe-separator}}[[Special:Contributions/$3|{{int:contribslink}}]]).',
2440 'editcomment' => "The edit summary was: \"''\$1''\".",
2441 'revertpage' => 'Reverted edits by [[Special:Contributions/$2|$2]] ([[User talk:$2|Talk]]) to last revision by [[User:$1|$1]]',
2442 'rollback-success' => 'Reverted edits by $1;
2443 changed back to last revision by $2.',
2444 'sessionfailure' => 'There seems to be a problem with your login session;
2445 this action has been canceled as a precaution against session hijacking.
2446 Please hit "back" and reload the page you came from, then try again.',
2447
2448 # Protect
2449 'protectlogpage' => 'Protection log',
2450 'protectlogtext' => 'Below is a list of page locks and unlocks.
2451 See the [[Special:ProtectedPages|protected pages list]] for the list of currently operational page protections.',
2452 'protectedarticle' => 'protected "[[$1]]"',
2453 'modifiedarticleprotection' => 'changed protection level for "[[$1]]"',
2454 'unprotectedarticle' => 'unprotected "[[$1]]"',
2455 'movedarticleprotection' => 'moved protection settings from "[[$2]]" to "[[$1]]"',
2456 'protect-title' => 'Change protection level for "$1"',
2457 'prot_1movedto2' => '[[$1]] moved to [[$2]]',
2458 'protect-backlink' => '← $1', # only translate this message to other languages if you have to change it
2459 'protect-legend' => 'Confirm protection',
2460 'protectcomment' => 'Comment:',
2461 'protectexpiry' => 'Expires:',
2462 'protect_expiry_invalid' => 'Expiry time is invalid.',
2463 'protect_expiry_old' => 'Expiry time is in the past.',
2464 'protect-unchain' => 'Unlock move permissions',
2465 'protect-text' => "You may view and change the protection level here for the page '''<nowiki>$1</nowiki>'''.",
2466 'protect-locked-blocked' => "You cannot change protection levels while blocked.
2467 Here are the current settings for the page '''$1''':",
2468 'protect-locked-dblock' => "Protection levels cannot be changed due to an active database lock.
2469 Here are the current settings for the page '''$1''':",
2470 'protect-locked-access' => "Your account does not have permission to change page protection levels.
2471 Here are the current settings for the page '''$1''':",
2472 '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.
2473 You can change this page's protection level, but it will not affect the cascading protection.",
2474 'protect-default' => 'Allow all users',
2475 'protect-fallback' => 'Require "$1" permission',
2476 'protect-level-autoconfirmed' => 'Block new and unregistered users',
2477 'protect-level-sysop' => 'Administrators only',
2478 'protect-summary-cascade' => 'cascading',
2479 'protect-expiring' => 'expires $1 (UTC)',
2480 'protect-expiry-indefinite' => 'indefinite',
2481 'protect-cascade' => 'Protect pages included in this page (cascading protection)',
2482 'protect-cantedit' => 'You cannot change the protection levels of this page, because you do not have permission to edit it.',
2483 'protect-othertime' => 'Other time:',
2484 'protect-othertime-op' => 'other time',
2485 'protect-existing-expiry' => 'Existing expiry time: $3, $2',
2486 'protect-otherreason' => 'Other/additional reason:',
2487 'protect-otherreason-op' => 'other/additional reason',
2488 'protect-dropdown' => '*Common protection reasons
2489 ** Excessive vandalism
2490 ** Excessive spamming
2491 ** Counter-productive edit warring
2492 ** High traffic page',
2493 'protect-edit-reasonlist' => 'Edit protection reasons',
2494 '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',
2495 'restriction-type' => 'Permission:',
2496 'restriction-level' => 'Restriction level:',
2497 'minimum-size' => 'Min size',
2498 'maximum-size' => 'Max size:',
2499 'pagesize' => '(bytes)',
2500
2501 # Restrictions (nouns)
2502 'restriction-edit' => 'Edit',
2503 'restriction-move' => 'Move',
2504 'restriction-create' => 'Create',
2505 'restriction-upload' => 'Upload',
2506
2507 # Restriction levels
2508 'restriction-level-sysop' => 'fully protected',
2509 'restriction-level-autoconfirmed' => 'semi protected',
2510 'restriction-level-all' => 'any level',
2511
2512 # Undelete
2513 'undelete' => 'View deleted pages',
2514 'undeletepage' => 'View and restore deleted pages',
2515 'undeletepagetitle' => "'''The following consists of deleted revisions of [[:$1|$1]]'''.",
2516 'viewdeletedpage' => 'View deleted pages',
2517 '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.
2518 The archive may be periodically cleaned out.',
2519 'undelete-fieldset-title' => 'Restore revisions',
2520 'undeleteextrahelp' => "To restore the page's entire history, leave all checkboxes deselected and click '''''Restore'''''.
2521 To perform a selective restoration, check the boxes corresponding to the revisions to be restored, and click '''''Restore'''''.
2522 Clicking '''''Reset''''' will clear the comment field and all checkboxes.",
2523 'undeleterevisions' => '$1 {{PLURAL:$1|revision|revisions}} archived',
2524 'undeletehistory' => 'If you restore the page, all revisions will be restored to the history.
2525 If a new page with the same name has been created since the deletion, the restored revisions will appear in the prior history.',
2526 'undeleterevdel' => 'Undeletion will not be performed if it will result in the top page or file revision being partially deleted.
2527 In such cases, you must uncheck or unhide the newest deleted revision.',
2528 'undeletehistorynoadmin' => 'This page has been deleted.
2529 The reason for deletion is shown in the summary below, along with details of the users who had edited this page before deletion.
2530 The actual text of these deleted revisions is only available to administrators.',
2531 'undelete-revision' => 'Deleted revision of $1 (as of $4, at $5) by $3:',
2532 'undeleterevision-missing' => 'Invalid or missing revision.
2533 You may have a bad link, or the revision may have been restored or removed from the archive.',
2534 'undelete-nodiff' => 'No previous revision found.',
2535 'undeletebtn' => 'Restore',
2536 'undeletelink' => 'view/restore',
2537 'undeletereset' => 'Reset',
2538 'undeleteinvert' => 'Invert selection',
2539 'undeletecomment' => 'Comment:',
2540 'undeletedarticle' => 'restored "[[$1]]"',
2541 'undeletedrevisions' => '{{PLURAL:$1|1 revision|$1 revisions}} restored',
2542 'undeletedrevisions-files' => '{{PLURAL:$1|1 revision|$1 revisions}} and {{PLURAL:$2|1 file|$2 files}} restored',
2543 'undeletedfiles' => '{{PLURAL:$1|1 file|$1 files}} restored',
2544 'cannotundelete' => 'Undelete failed;
2545 someone else may have undeleted the page first.',
2546 'undeletedpage' => "<big>'''$1 has been restored'''</big>
2547
2548 Consult the [[Special:Log/delete|deletion log]] for a record of recent deletions and restorations.",
2549 'undelete-header' => 'See [[Special:Log/delete|the deletion log]] for recently deleted pages.',
2550 'undelete-search-box' => 'Search deleted pages',
2551 'undelete-search-prefix' => 'Show pages starting with:',
2552 'undelete-search-submit' => 'Search',
2553 'undelete-no-results' => 'No matching pages found in the deletion archive.',
2554 'undelete-filename-mismatch' => 'Cannot undelete file revision with timestamp $1: filename mismatch',
2555 'undelete-bad-store-key' => 'Cannot undelete file revision with timestamp $1: file was missing before deletion.',
2556 'undelete-cleanup-error' => 'Error deleting unused archive file "$1".',
2557 'undelete-missing-filearchive' => 'Unable to restore file archive ID $1 because it is not in the database.
2558 It may have already been undeleted.',
2559 'undelete-error-short' => 'Error undeleting file: $1',
2560 'undelete-error-long' => 'Errors were encountered while undeleting the file:
2561
2562 $1',
2563 'undelete-show-file-confirm' => 'Are you sure you want to view a deleted revision of the file "<nowiki>$1</nowiki>" from $2 at $3?',
2564 'undelete-show-file-submit' => 'Yes',
2565
2566 # Namespace form on various pages
2567 'namespace' => 'Namespace:',
2568 'invert' => 'Invert selection',
2569 'blanknamespace' => '(Main)',
2570
2571 # Contributions
2572 'contributions' => 'User contributions',
2573 'contributions-title' => 'User contributions for $1',
2574 'mycontris' => 'My contributions',
2575 'contribsub2' => 'For $1 ($2)',
2576 'nocontribs' => 'No changes were found matching these criteria.',
2577 'uctop' => '(top)',
2578 'month' => 'From month (and earlier):',
2579 'year' => 'From year (and earlier):',
2580
2581 'sp-contributions-newbies' => 'Show contributions of new accounts only',
2582 'sp-contributions-newbies-sub' => 'For new accounts',
2583 'sp-contributions-newbies-title' => 'User contributions for new accounts',
2584 'sp-contributions-blocklog' => 'block log',
2585 'sp-contributions-deleted' => 'deleted user contributions',
2586 'sp-contributions-logs' => 'logs',
2587 'sp-contributions-talk' => 'talk',
2588 'sp-contributions-userrights' => 'user rights management',
2589 'sp-contributions-search' => 'Search for contributions',
2590 'sp-contributions-username' => 'IP Address or username:',
2591 'sp-contributions-submit' => 'Search',
2592 'sp-contributions-explain' => '', # only translate this message to other languages if you have to change it
2593 'sp-contributions-footer' => '-', # do not translate or duplicate this message to other languages
2594 'sp-contributions-footer-anon' => '-', # do not translate or duplicate this message to other languages
2595
2596 # What links here
2597 'whatlinkshere' => 'What links here',
2598 'whatlinkshere-title' => 'Pages that link to "$1"',
2599 'whatlinkshere-summary' => '', # do not translate or duplicate this message to other languages
2600 'whatlinkshere-page' => 'Page:',
2601 'whatlinkshere-backlink' => '← $1', # only translate this message to other languages if you have to change it
2602 'linkshere' => "The following pages link to '''[[:$1]]''':",
2603 'nolinkshere' => "No pages link to '''[[:$1]]'''.",
2604 'nolinkshere-ns' => "No pages link to '''[[:$1]]''' in the chosen namespace.",
2605 'isredirect' => 'redirect page',
2606 'istemplate' => 'transclusion',
2607 'isimage' => 'image link',
2608 'whatlinkshere-prev' => '{{PLURAL:$1|previous|previous $1}}',
2609 'whatlinkshere-next' => '{{PLURAL:$1|next|next $1}}',
2610 'whatlinkshere-links' => '← links',
2611 'whatlinkshere-hideredirs' => '$1 redirects',
2612 'whatlinkshere-hidetrans' => '$1 transclusions',
2613 'whatlinkshere-hidelinks' => '$1 links',
2614 'whatlinkshere-hideimages' => '$1 image links',
2615 'whatlinkshere-filters' => 'Filters',
2616
2617 # Block/unblock
2618 'blockip' => 'Block user',
2619 'blockip-legend' => 'Block user',
2620 'blockiptext' => 'Use the form below to block write access from a specific IP address or username.
2621 This should be done only to prevent vandalism, and in accordance with [[{{MediaWiki:Policy-url}}|policy]].
2622 Fill in a specific reason below (for example, citing particular pages that were vandalized).',
2623 'ipaddress' => 'IP Address:',
2624 'ipadressorusername' => 'IP Address or username:',
2625 'ipbexpiry' => 'Expiry:',
2626 'ipbreason' => 'Reason:',
2627 'ipbreasonotherlist' => 'Other reason',
2628 'ipbreason-dropdown' => '*Common block reasons
2629 ** Inserting false information
2630 ** Removing content from pages
2631 ** Spamming links to external sites
2632 ** Inserting nonsense/gibberish into pages
2633 ** Intimidating behaviour/harassment
2634 ** Abusing multiple accounts
2635 ** Unacceptable username',
2636 'ipbanononly' => 'Block anonymous users only',
2637 'ipbcreateaccount' => 'Prevent account creation',
2638 'ipbemailban' => 'Prevent user from sending e-mail',
2639 'ipbenableautoblock' => 'Automatically block the last IP address used by this user, and any subsequent IPs they try to edit from',
2640 'ipbsubmit' => 'Block this user',
2641 'ipbother' => 'Other time:',
2642 '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',
2643 'ipbotheroption' => 'other',
2644 'ipbotherreason' => 'Other/additional reason:',
2645 'ipbhidename' => 'Hide username from edits and lists',
2646 'ipbwatchuser' => "Watch this user's user and talk pages",
2647 'ipballowusertalk' => 'Allow this user to edit own talk page while blocked',
2648 'ipb-change-block' => 'Re-block the user with these settings',
2649 'badipaddress' => 'Invalid IP address',
2650 'blockipsuccesssub' => 'Block succeeded',
2651 'blockipsuccesstext' => '[[Special:Contributions/$1|$1]] has been blocked.<br />
2652 See [[Special:IPBlockList|IP block list]] to review blocks.',
2653 'ipb-edit-dropdown' => 'Edit block reasons',
2654 'ipb-unblock-addr' => 'Unblock $1',
2655 'ipb-unblock' => 'Unblock a username or IP address',
2656 'ipb-blocklist-addr' => 'Existing blocks for $1',
2657 'ipb-blocklist' => 'View existing blocks',
2658 'ipb-blocklist-contribs' => 'Contributions for $1',
2659 'unblockip' => 'Unblock user',
2660 'unblockiptext' => 'Use the form below to restore write access to a previously blocked IP address or username.',
2661 'ipusubmit' => 'Remove this block',
2662 'unblocked' => '[[User:$1|$1]] has been unblocked',
2663 'unblocked-id' => 'Block $1 has been removed',
2664 'ipblocklist' => 'Blocked IP addresses and usernames',
2665 'ipblocklist-legend' => 'Find a blocked user',
2666 'ipblocklist-username' => 'Username or IP address:',
2667 'ipblocklist-sh-userblocks' => '$1 account blocks',
2668 'ipblocklist-sh-tempblocks' => '$1 temporary blocks',
2669 'ipblocklist-sh-addressblocks' => '$1 single IP blocks',
2670 'ipblocklist-summary' => '', # do not translate or duplicate this message to other languages
2671 'ipblocklist-submit' => 'Search',
2672 'blocklistline' => '$1, $2 blocked $3 ($4)',
2673 'infiniteblock' => 'infinite',
2674 'expiringblock' => 'expires $1',
2675 'anononlyblock' => 'anon. only',
2676 'noautoblockblock' => 'autoblock disabled',
2677 'createaccountblock' => 'account creation blocked',
2678 'emailblock' => 'e-mail blocked',
2679 'blocklist-nousertalk' => 'cannot edit own talk page',
2680 'ipblocklist-empty' => 'The blocklist is empty.',
2681 'ipblocklist-no-results' => 'The requested IP address or username is not blocked.',
2682 'blocklink' => 'block',
2683 'unblocklink' => 'unblock',
2684 'change-blocklink' => 'change block',
2685 'contribslink' => 'contribs',
2686 'autoblocker' => 'Autoblocked because your IP address has been recently used by "[[User:$1|$1]]".
2687 The reason given for $1\'s block is: "$2"',
2688 'blocklogpage' => 'Block log',
2689 'blocklog-fulllog' => 'Full block log',
2690 'blocklogentry' => 'blocked [[$1]] with an expiry time of $2 $3',
2691 'reblock-logentry' => 'changed block settings for [[$1]] with an expiry time of $2 $3',
2692 'blocklogtext' => 'This is a log of user blocking and unblocking actions.
2693 Automatically blocked IP addresses are not listed.
2694 See the [[Special:IPBlockList|IP block list]] for the list of currently operational bans and blocks.',
2695 'unblocklogentry' => 'unblocked $1',
2696 'block-log-flags-anononly' => 'anonymous users only',
2697 'block-log-flags-nocreate' => 'account creation disabled',
2698 'block-log-flags-noautoblock' => 'autoblock disabled',
2699 'block-log-flags-noemail' => 'e-mail blocked',
2700 'block-log-flags-nousertalk' => 'cannot edit own talk page',
2701 'block-log-flags-angry-autoblock' => 'enhanced autoblock enabled',
2702 'block-log-flags-hiddenname' => 'username hidden',
2703 'range_block_disabled' => 'The administrator ability to create range blocks is disabled.',
2704 'ipb_expiry_invalid' => 'Expiry time invalid.',
2705 'ipb_expiry_temp' => 'Hidden username blocks must be permanent.',
2706 'ipb_hide_invalid' => 'Unable to suppress this account; it may have too many edits.',
2707 'ipb_already_blocked' => '"$1" is already blocked',
2708 'ipb-needreblock' => '== Already blocked ==
2709 $1 is already blocked.
2710 Do you want to change the settings?',
2711 'ipb_cant_unblock' => 'Error: Block ID $1 not found.
2712 It may have been unblocked already.',
2713 'ipb_blocked_as_range' => 'Error: The IP $1 is not blocked directly and cannot be unblocked.
2714 It is, however, blocked as part of the range $2, which can be unblocked.',
2715 'ip_range_invalid' => 'Invalid IP range.',
2716 'blockme' => 'Block me',
2717 'proxyblocker' => 'Proxy blocker',
2718 'proxyblocker-disabled' => 'This function is disabled.',
2719 'proxyblockreason' => 'Your IP address has been blocked because it is an open proxy.
2720 Please contact your Internet service provider or tech support and inform them of this serious security problem.',
2721 'proxyblocksuccess' => 'Done.',
2722 'sorbs' => 'DNSBL', # only translate this message to other languages if you have to change it
2723 'sorbsreason' => 'Your IP address is listed as an open proxy in the DNSBL used by {{SITENAME}}.',
2724 'sorbs_create_account_reason' => 'Your IP address is listed as an open proxy in the DNSBL used by {{SITENAME}}.
2725 You cannot create an account',
2726 'cant-block-while-blocked' => 'You cannot block other users while you are blocked.',
2727
2728 # Developer tools
2729 'lockdb' => 'Lock database',
2730 'unlockdb' => 'Unlock database',
2731 '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.
2732 Please confirm that this is what you intend to do, and that you will unlock the database when your maintenance is done.',
2733 '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.
2734 Please confirm that this is what you intend to do.',
2735 'lockconfirm' => 'Yes, I really want to lock the database.',
2736 'unlockconfirm' => 'Yes, I really want to unlock the database.',
2737 'lockbtn' => 'Lock database',
2738 'unlockbtn' => 'Unlock database',
2739 'locknoconfirm' => 'You did not check the confirmation box.',
2740 'lockdbsuccesssub' => 'Database lock succeeded',
2741 'unlockdbsuccesssub' => 'Database lock removed',
2742 'lockdbsuccesstext' => 'The database has been locked.<br />
2743 Remember to [[Special:UnlockDB|remove the lock]] after your maintenance is complete.',
2744 'unlockdbsuccesstext' => 'The database has been unlocked.',
2745 'lockfilenotwritable' => 'The database lock file is not writable.
2746 To lock or unlock the database, this needs to be writable by the web server.',
2747 'databasenotlocked' => 'The database is not locked.',
2748
2749 # Move page
2750 'move-page' => 'Move $1',
2751 'move-page-backlink' => '← $1', # only translate this message to other languages if you have to change it
2752 'move-page-legend' => 'Move page',
2753 'movepagetext' => "Using the form below will rename a page, moving all of its history to the new name.
2754 The old title will become a redirect page to the new title.
2755 You can update redirects that point to the original title automatically.
2756 If you choose not to, be sure to check for [[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken redirects]].
2757 You are responsible for making sure that links continue to point where they are supposed to go.
2758
2759 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.
2760 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.
2761
2762 '''Warning!'''
2763 This can be a drastic and unexpected change for a popular page;
2764 please be sure you understand the consequences of this before proceeding.",
2765 'movepagetalktext' => "The associated talk page will be automatically moved along with it '''unless:'''
2766 *A non-empty talk page already exists under the new name, or
2767 *You uncheck the box below.
2768
2769 In those cases, you will have to move or merge the page manually if desired.",
2770 'movearticle' => 'Move page:',
2771 'movenologin' => 'Not logged in',
2772 'movenologintext' => 'You must be a registered user and [[Special:UserLogin|logged in]] to move a page.',
2773 'movenotallowed' => 'You do not have permission to move pages.',
2774 'movenotallowedfile' => 'You do not have permission to move files.',
2775 'cant-move-user-page' => 'You do not have permission to move user pages (apart from subpages).',
2776 'cant-move-to-user-page' => 'You do not have permission to move a page to a user page (except to a user subpage).',
2777 'newtitle' => 'To new title:',
2778 'move-watch' => 'Watch this page',
2779 'movepagebtn' => 'Move page',
2780 'pagemovedsub' => 'Move succeeded',
2781 'movepage-moved' => '<big>\'\'\'"$1" has been moved to "$2"\'\'\'</big>',
2782 'movepage-moved-redirect' => 'A redirect has been created.',
2783 'movepage-moved-noredirect' => 'The creation of a redirect has been suppressed.',
2784 'articleexists' => 'A page of that name already exists, or the name you have chosen is not valid.
2785 Please choose another name.',
2786 'cantmove-titleprotected' => 'You cannot move a page to this location, because the new title has been protected from creation',
2787 'talkexists' => "'''The page itself was moved successfully, but the talk page could not be moved because one already exists at the new title.
2788 Please merge them manually.'''",
2789 'movedto' => 'moved to',
2790 'movetalk' => 'Move associated talk page',
2791 'move-subpages' => 'Move subpages (up to $1)',
2792 'move-talk-subpages' => 'Move subpages of talk page (up to $1)',
2793 'movepage-page-exists' => 'The page $1 already exists and cannot be automatically overwritten.',
2794 'movepage-page-moved' => 'The page $1 has been moved to $2.',
2795 'movepage-page-unmoved' => 'The page $1 could not be moved to $2.',
2796 'movepage-max-pages' => 'The maximum of $1 {{PLURAL:$1|page|pages}} has been moved and no more will be moved automatically.',
2797 '1movedto2' => 'moved [[$1]] to [[$2]]',
2798 '1movedto2_redir' => 'moved [[$1]] to [[$2]] over redirect',
2799 'move-redirect-suppressed' => 'redirect suppressed',
2800 'movelogpage' => 'Move log',
2801 'movelogpagetext' => 'Below is a list of all page moves.',
2802 'movesubpage' => '{{PLURAL:$1|Subpage|Subpages}}',
2803 'movesubpagetext' => 'This page has $1 {{PLURAL:$1|subpage|subpages}} shown below.',
2804 'movenosubpage' => 'This page has no subpages.',
2805 'movereason' => 'Reason:',
2806 'revertmove' => 'revert',
2807 'delete_and_move' => 'Delete and move',
2808 'delete_and_move_text' => '== Deletion required ==
2809 The destination page "[[:$1]]" already exists.
2810 Do you want to delete it to make way for the move?',
2811 'delete_and_move_confirm' => 'Yes, delete the page',
2812 'delete_and_move_reason' => 'Deleted to make way for move',
2813 'selfmove' => 'Source and destination titles are the same;
2814 cannot move a page over itself.',
2815 'immobile-source-namespace' => 'Cannot move pages in namespace "$1"',
2816 'immobile-target-namespace' => 'Cannot move pages into namespace "$1"',
2817 'immobile-target-namespace-iw' => 'Interwiki link is not a valid target for page move.',
2818 'immobile-source-page' => 'This page is not movable.',
2819 'immobile-target-page' => 'Cannot move to that destination title.',
2820 'imagenocrossnamespace' => 'Cannot move file to non-file namespace',
2821 'imagetypemismatch' => 'The new file extension does not match its type',
2822 'imageinvalidfilename' => 'The target file name is invalid',
2823 'fix-double-redirects' => 'Update any redirects that point to the original title',
2824 'move-leave-redirect' => 'Leave a redirect behind',
2825 'protectedpagemovewarning' => "'''Warning:''' This page has been locked so that only users with administrator privileges can move it.",
2826 'semiprotectedpagemovewarning' => "'''Note:''' This page has been locked so that only registered users can move it.",
2827
2828 # Export
2829 'export' => 'Export pages',
2830 'exporttext' => 'You can export the text and editing history of a particular page or set of pages wrapped in some XML.
2831 This can be imported into another wiki using MediaWiki via the [[Special:Import|import page]].
2832
2833 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.
2834
2835 In the latter case you can also use a link, for example [[{{#Special:Export}}/{{MediaWiki:Mainpage}}]] for the page "[[{{MediaWiki:Mainpage}}]]".',
2836 'exportcuronly' => 'Include only the current revision, not the full history',
2837 'exportnohistory' => "----
2838 '''Note:''' Exporting the full history of pages through this form has been disabled due to performance reasons.",
2839 'export-submit' => 'Export',
2840 'export-addcattext' => 'Add pages from category:',
2841 'export-addcat' => 'Add',
2842 'export-addnstext' => 'Add pages from namespace:',
2843 'export-addns' => 'Add',
2844 'export-download' => 'Save as file',
2845 'export-templates' => 'Include templates',
2846 'export-pagelinks' => 'Include linked pages to a depth of:',
2847
2848 # Namespace 8 related
2849 'allmessages' => 'System messages',
2850 'allmessagesname' => 'Name',
2851 'allmessagesdefault' => 'Default text',
2852 'allmessagescurrent' => 'Current text',
2853 'allmessagestext' => 'This is a list of system messages available in the MediaWiki namespace.
2854 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.',
2855 'allmessagesnotsupportedDB' => "This page cannot be used because '''\$wgUseDatabaseMessages''' has been disabled.",
2856 'allmessagesfilter' => 'Message name filter:',
2857 'allmessagesmodified' => 'Show only modified',
2858
2859 # Thumbnails
2860 'thumbnail-more' => 'Enlarge',
2861 'filemissing' => 'File missing',
2862 'thumbnail_error' => 'Error creating thumbnail: $1',
2863 'djvu_page_error' => 'DjVu page out of range',
2864 'djvu_no_xml' => 'Unable to fetch XML for DjVu file',
2865 'thumbnail_invalid_params' => 'Invalid thumbnail parameters',
2866 'thumbnail_dest_directory' => 'Unable to create destination directory',
2867 'thumbnail_image-type' => 'Image type not supported',
2868 'thumbnail_gd-library' => 'Incomplete GD library configuration: missing function $1',
2869 'thumbnail_image-missing' => 'File seems to be missing: $1',
2870
2871 # Special:Import
2872 'import' => 'Import pages',
2873 'importinterwiki' => 'Transwiki import',
2874 'import-interwiki-text' => "Select a wiki and page title to import.
2875 Revision dates and editors' names will be preserved.
2876 All transwiki import actions are logged at the [[Special:Log/import|import log]].",
2877 'import-interwiki-source' => 'Source wiki/page:',
2878 'import-interwiki-history' => 'Copy all history revisions for this page',
2879 'import-interwiki-templates' => 'Include all templates',
2880 'import-interwiki-submit' => 'Import',
2881 'import-interwiki-namespace' => 'Destination namespace:',
2882 'import-upload-filename' => 'Filename:',
2883 'import-comment' => 'Comment:',
2884 'importtext' => 'Please export the file from the source wiki using the [[Special:Export|export utility]].
2885 Save it to your computer and upload it here.',
2886 'importstart' => 'Importing pages…',
2887 'import-revision-count' => '$1 {{PLURAL:$1|revision|revisions}}',
2888 'importnopages' => 'No pages to import.',
2889 'importfailed' => 'Import failed: <nowiki>$1</nowiki>',
2890 'importunknownsource' => 'Unknown import source type',
2891 'importcantopen' => 'Could not open import file',
2892 'importbadinterwiki' => 'Bad interwiki link',
2893 'importnotext' => 'Empty or no text',
2894 'importsuccess' => 'Import finished!',
2895 'importhistoryconflict' => 'Conflicting history revision exists (may have imported this page before)',
2896 'importnosources' => 'No transwiki import sources have been defined and direct history uploads are disabled.',
2897 'importnofile' => 'No import file was uploaded.',
2898 'importuploaderrorsize' => 'Upload of import file failed.
2899 The file is bigger than the allowed upload size.',
2900 'importuploaderrorpartial' => 'Upload of import file failed.
2901 The file was only partially uploaded.',
2902 'importuploaderrortemp' => 'Upload of import file failed.
2903 A temporary folder is missing.',
2904 'import-parse-failure' => 'XML import parse failure',
2905 'import-noarticle' => 'No page to import!',
2906 'import-nonewrevisions' => 'All revisions were previously imported.',
2907 'xml-error-string' => '$1 at line $2, col $3 (byte $4): $5',
2908 'import-upload' => 'Upload XML data',
2909 'import-token-mismatch' => 'Loss of session data.
2910 Please try again.',
2911 'import-invalid-interwiki' => 'Cannot import from the specified wiki.',
2912
2913 # Import log
2914 'importlogpage' => 'Import log',
2915 'importlogpagetext' => 'Administrative imports of pages with edit history from other wikis.',
2916 'import-logentry-upload' => 'imported [[$1]] by file upload',
2917 'import-logentry-upload-detail' => '$1 {{PLURAL:$1|revision|revisions}}',
2918 'import-logentry-interwiki' => 'transwikied $1',
2919 'import-logentry-interwiki-detail' => '$1 {{PLURAL:$1|revision|revisions}} from $2',
2920
2921 # Keyboard access keys for power users
2922 'accesskey-pt-userpage' => '.', # do not translate or duplicate this message to other languages
2923 'accesskey-pt-anonuserpage' => '.', # do not translate or duplicate this message to other languages
2924 'accesskey-pt-mytalk' => 'n', # do not translate or duplicate this message to other languages
2925 'accesskey-pt-anontalk' => 'n', # do not translate or duplicate this message to other languages
2926 'accesskey-pt-preferences' => '', # do not translate or duplicate this message to other languages
2927 'accesskey-pt-watchlist' => 'l', # do not translate or duplicate this message to other languages
2928 'accesskey-pt-mycontris' => 'y', # do not translate or duplicate this message to other languages
2929 'accesskey-pt-login' => 'o', # do not translate or duplicate this message to other languages
2930 'accesskey-pt-anonlogin' => 'o', # do not translate or duplicate this message to other languages
2931 'accesskey-pt-logout' => '', # do not translate or duplicate this message to other languages
2932 'accesskey-ca-talk' => 't', # do not translate or duplicate this message to other languages
2933 'accesskey-ca-edit' => 'e', # do not translate or duplicate this message to other languages
2934 'accesskey-ca-addsection' => '+', # do not translate or duplicate this message to other languages
2935 'accesskey-ca-viewsource' => 'e', # do not translate or duplicate this message to other languages
2936 'accesskey-ca-history' => 'h', # do not translate or duplicate this message to other languages
2937 'accesskey-ca-protect' => '=', # do not translate or duplicate this message to other languages
2938 'accesskey-ca-delete' => 'd', # do not translate or duplicate this message to other languages
2939 'accesskey-ca-undelete' => 'd', # do not translate or duplicate this message to other languages
2940 'accesskey-ca-move' => 'm', # do not translate or duplicate this message to other languages
2941 'accesskey-ca-watch' => 'w', # do not translate or duplicate this message to other languages
2942 'accesskey-ca-unwatch' => 'w', # do not translate or duplicate this message to other languages
2943 'accesskey-search' => 'f', # do not translate or duplicate this message to other languages
2944 'accesskey-search-go' => '', # do not translate or duplicate this message to other languages
2945 'accesskey-search-fulltext' => '', # do not translate or duplicate this message to other languages
2946 'accesskey-p-logo' => 'z', # do not translate or duplicate this message to other languages
2947 'accesskey-n-mainpage' => '', # do not translate or duplicate this message to other languages
2948 'accesskey-n-portal' => '', # do not translate or duplicate this message to other languages
2949 'accesskey-n-currentevents' => '', # do not translate or duplicate this message to other languages
2950 'accesskey-n-recentchanges' => 'r', # do not translate or duplicate this message to other languages
2951 'accesskey-n-randompage' => 'x', # do not translate or duplicate this message to other languages
2952 'accesskey-n-help' => '', # do not translate or duplicate this message to other languages
2953 'accesskey-t-whatlinkshere' => 'j', # do not translate or duplicate this message to other languages
2954 'accesskey-t-recentchangeslinked' => 'k', # do not translate or duplicate this message to other languages
2955 'accesskey-feed-rss' => '', # do not translate or duplicate this message to other languages
2956 'accesskey-feed-atom' => '', # do not translate or duplicate this message to other languages
2957 'accesskey-t-contributions' => '', # do not translate or duplicate this message to other languages
2958 'accesskey-t-emailuser' => '', # do not translate or duplicate this message to other languages
2959 'accesskey-t-permalink' => '', # do not translate or duplicate this message to other languages
2960 'accesskey-t-print' => 'p', # do not translate or duplicate this message to other languages
2961 'accesskey-t-upload' => 'u', # do not translate or duplicate this message to other languages
2962 'accesskey-t-specialpages' => 'q', # do not translate or duplicate this message to other languages
2963 'accesskey-ca-nstab-main' => 'c', # do not translate or duplicate this message to other languages
2964 'accesskey-ca-nstab-user' => 'c', # do not translate or duplicate this message to other languages
2965 'accesskey-ca-nstab-media' => 'c', # do not translate or duplicate this message to other languages
2966 'accesskey-ca-nstab-special' => '', # do not translate or duplicate this message to other languages
2967 'accesskey-ca-nstab-project' => 'a', # do not translate or duplicate this message to other languages
2968 'accesskey-ca-nstab-image' => 'c', # do not translate or duplicate this message to other languages
2969 'accesskey-ca-nstab-mediawiki' => 'c', # do not translate or duplicate this message to other languages
2970 'accesskey-ca-nstab-template' => 'c', # do not translate or duplicate this message to other languages
2971 'accesskey-ca-nstab-help' => 'c', # do not translate or duplicate this message to other languages
2972 'accesskey-ca-nstab-category' => 'c', # do not translate or duplicate this message to other languages
2973 'accesskey-minoredit' => 'i', # do not translate or duplicate this message to other languages
2974 'accesskey-save' => 's', # do not translate or duplicate this message to other languages
2975 'accesskey-preview' => 'p', # do not translate or duplicate this message to other languages
2976 'accesskey-diff' => 'v', # do not translate or duplicate this message to other languages
2977 'accesskey-compareselectedversions' => 'v', # do not translate or duplicate this message to other languages
2978 'accesskey-visualcomparison' => 'b', # do not translate or duplicate this message to other languages
2979 'accesskey-watch' => 'w', # do not translate or duplicate this message to other languages
2980 'accesskey-upload' => 's', # do not translate or duplicate this message to other languages
2981
2982 # Tooltip help for the actions
2983 'tooltip-pt-userpage' => 'Your user page',
2984 'tooltip-pt-anonuserpage' => "The user page for the ip you're editing as",
2985 'tooltip-pt-mytalk' => 'Your talk page',
2986 'tooltip-pt-anontalk' => 'Discussion about edits from this IP address',
2987 'tooltip-pt-preferences' => 'Your preferences',
2988 'tooltip-pt-watchlist' => 'The list of pages you are monitoring for changes',
2989 'tooltip-pt-mycontris' => 'List of your contributions',
2990 'tooltip-pt-login' => 'You are encouraged to log in; however, it is not mandatory',
2991 'tooltip-pt-anonlogin' => 'You are encouraged to log in; however, it is not mandatory',
2992 'tooltip-pt-logout' => 'Log out',
2993 'tooltip-ca-talk' => 'Discussion about the content page',
2994 'tooltip-ca-edit' => 'You can edit this page.
2995 Please use the preview button before saving',
2996 'tooltip-ca-addsection' => 'Start a new section',
2997 'tooltip-ca-viewsource' => 'This page is protected.
2998 You can view its source',
2999 'tooltip-ca-history' => 'Past revisions of this page',
3000 'tooltip-ca-protect' => 'Protect this page',
3001 'tooltip-ca-delete' => 'Delete this page',
3002 'tooltip-ca-undelete' => 'Restore the edits done to this page before it was deleted',
3003 'tooltip-ca-move' => 'Move this page',
3004 'tooltip-ca-watch' => 'Add this page to your watchlist',
3005 'tooltip-ca-unwatch' => 'Remove this page from your watchlist',
3006 'tooltip-search' => 'Search {{SITENAME}}',
3007 'tooltip-search-go' => 'Go to a page with this exact name if exists',
3008 'tooltip-search-fulltext' => 'Search the pages for this text',
3009 'tooltip-p-logo' => 'Visit the main page',
3010 'tooltip-n-mainpage' => 'Visit the main page',
3011 'tooltip-n-portal' => 'About the project, what you can do, where to find things',
3012 'tooltip-n-currentevents' => 'Find background information on current events',
3013 'tooltip-n-recentchanges' => 'The list of recent changes in the wiki',
3014 'tooltip-n-randompage' => 'Load a random page',
3015 'tooltip-n-help' => 'The place to find out',
3016 'tooltip-t-whatlinkshere' => 'List of all wiki pages that link here',
3017 'tooltip-t-recentchangeslinked' => 'Recent changes in pages linked from this page',
3018 'tooltip-feed-rss' => 'RSS feed for this page',
3019 'tooltip-feed-atom' => 'Atom feed for this page',
3020 'tooltip-t-contributions' => 'View the list of contributions of this user',
3021 'tooltip-t-emailuser' => 'Send an e-mail to this user',
3022 'tooltip-t-upload' => 'Upload files',
3023 'tooltip-t-specialpages' => 'List of all special pages',
3024 'tooltip-t-print' => 'Printable version of this page',
3025 'tooltip-t-permalink' => 'Permanent link to this revision of the page',
3026 'tooltip-ca-nstab-main' => 'View the content page',
3027 'tooltip-ca-nstab-user' => 'View the user page',
3028 'tooltip-ca-nstab-media' => 'View the media page',
3029 'tooltip-ca-nstab-special' => 'This is a special page, you cannot edit the page itself',
3030 'tooltip-ca-nstab-project' => 'View the project page',
3031 'tooltip-ca-nstab-image' => 'View the file page',
3032 'tooltip-ca-nstab-mediawiki' => 'View the system message',
3033 'tooltip-ca-nstab-template' => 'View the template',
3034 'tooltip-ca-nstab-help' => 'View the help page',
3035 'tooltip-ca-nstab-category' => 'View the category page',
3036 'tooltip-minoredit' => 'Mark this as a minor edit',
3037 'tooltip-save' => 'Save your changes',
3038 'tooltip-preview' => 'Preview your changes, please use this before saving!',
3039 'tooltip-diff' => 'Show which changes you made to the text',
3040 'tooltip-compareselectedversions' => 'See the differences between the two selected revisions of this page',
3041 'tooltip-watch' => 'Add this page to your watchlist',
3042 'tooltip-recreate' => 'Recreate the page even though it has been deleted',
3043 'tooltip-upload' => 'Start upload',
3044 'tooltip-rollback' => '"Rollback" reverts edit(s) to this page of the last contributor in one click',
3045 'tooltip-undo' => '"Undo" reverts this edit and opens the edit form in preview mode.
3046 It allows adding a reason in the summary.',
3047
3048 # Stylesheets
3049 'common.css' => '/* CSS placed here will be applied to all skins */', # only translate this message to other languages if you have to change it
3050 '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
3051 '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
3052 '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
3053 '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
3054 '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
3055 '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
3056 '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
3057 '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
3058 'print.css' => '/* CSS placed here will affect the print output */', # only translate this message to other languages if you have to change it
3059 '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
3060
3061 # Scripts
3062 '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
3063 '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
3064 '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
3065 '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
3066 '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
3067 '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
3068 '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
3069 '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
3070 '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
3071
3072 # Metadata
3073 'nodublincore' => 'Dublin Core RDF metadata disabled for this server.',
3074 'nocreativecommons' => 'Creative Commons RDF metadata disabled for this server.',
3075 'notacceptable' => 'The wiki server cannot provide data in a format your client can read.',
3076
3077 # Attribution
3078 'anonymous' => 'Anonymous {{PLURAL:$1|user|users}} of {{SITENAME}}',
3079 'siteuser' => '{{SITENAME}} user $1',
3080 'lastmodifiedatby' => 'This page was last modified $2, $1 by $3.',
3081 'othercontribs' => 'Based on work by $1.',
3082 'others' => 'others',
3083 'siteusers' => '{{SITENAME}} {{PLURAL:$2|user|users}} $1',
3084 'creditspage' => 'Page credits',
3085 'nocredits' => 'There is no credits info available for this page.',
3086
3087 # Spam protection
3088 'spamprotectiontitle' => 'Spam protection filter',
3089 'spamprotectiontext' => 'The page you wanted to save was blocked by the spam filter.
3090 This is probably caused by a link to a blacklisted external site.',
3091 'spamprotectionmatch' => 'The following text is what triggered our spam filter: $1',
3092 'spambot_username' => 'MediaWiki spam cleanup',
3093 'spam_reverting' => 'Reverting to last revision not containing links to $1',
3094 'spam_blanking' => 'All revisions contained links to $1, blanking',
3095
3096 # Info page
3097 'infosubtitle' => 'Information for page',
3098 'numedits' => 'Number of edits (page): $1',
3099 'numtalkedits' => 'Number of edits (discussion page): $1',
3100 'numwatchers' => 'Number of watchers: $1',
3101 'numauthors' => 'Number of distinct authors (page): $1',
3102 'numtalkauthors' => 'Number of distinct authors (discussion page): $1',
3103
3104 # Skin names
3105 'skinname-standard' => 'Classic', # only translate this message to other languages if you have to change it
3106 'skinname-nostalgia' => 'Nostalgia', # only translate this message to other languages if you have to change it
3107 'skinname-cologneblue' => 'Cologne Blue', # only translate this message to other languages if you have to change it
3108 'skinname-monobook' => 'MonoBook', # only translate this message to other languages if you have to change it
3109 'skinname-myskin' => 'MySkin', # only translate this message to other languages if you have to change it
3110 'skinname-chick' => 'Chick', # only translate this message to other languages if you have to change it
3111 'skinname-simple' => 'Simple', # only translate this message to other languages if you have to change it
3112 'skinname-modern' => 'Modern', # only translate this message to other languages if you have to change it
3113
3114 # Math options
3115 'mw_math_png' => 'Always render PNG',
3116 'mw_math_simple' => 'HTML if very simple or else PNG',
3117 'mw_math_html' => 'HTML if possible or else PNG',
3118 'mw_math_source' => 'Leave it as TeX (for text browsers)',
3119 'mw_math_modern' => 'Recommended for modern browsers',
3120 'mw_math_mathml' => 'MathML if possible (experimental)',
3121
3122 # Math errors
3123 'math_failure' => 'Failed to parse',
3124 'math_unknown_error' => 'unknown error',
3125 'math_unknown_function' => 'unknown function',
3126 'math_lexing_error' => 'lexing error',
3127 'math_syntax_error' => 'syntax error',
3128 'math_image_error' => 'PNG conversion failed;
3129 check for correct installation of latex, dvips, gs, and convert',
3130 'math_bad_tmpdir' => 'Cannot write to or create math temp directory',
3131 'math_bad_output' => 'Cannot write to or create math output directory',
3132 'math_notexvc' => 'Missing texvc executable;
3133 please see math/README to configure.',
3134
3135 # Patrolling
3136 'markaspatrolleddiff' => 'Mark as patrolled',
3137 'markaspatrolledlink' => '[$1]', # do not translate or duplicate this message to other languages
3138 'markaspatrolledtext' => 'Mark this page as patrolled',
3139 'markedaspatrolled' => 'Marked as patrolled',
3140 'markedaspatrolledtext' => 'The selected revision has been marked as patrolled.',
3141 'rcpatroldisabled' => 'Recent Changes Patrol disabled',
3142 'rcpatroldisabledtext' => 'The Recent Changes Patrol feature is currently disabled.',
3143 'markedaspatrollederror' => 'Cannot mark as patrolled',
3144 'markedaspatrollederrortext' => 'You need to specify a revision to mark as patrolled.',
3145 'markedaspatrollederror-noautopatrol' => 'You are not allowed to mark your own changes as patrolled.',
3146
3147 # Patrol log
3148 'patrol-log-page' => 'Patrol log',
3149 'patrol-log-header' => 'This is a log of patrolled revisions.',
3150 'patrol-log-line' => 'marked $1 of $2 patrolled $3',
3151 'patrol-log-auto' => '(automatic)',
3152 'patrol-log-diff' => 'revision $1',
3153 'log-show-hide-patrol' => '$1 patrol log',
3154
3155 # Image deletion
3156 'deletedrevision' => 'Deleted old revision $1',
3157 'filedeleteerror-short' => 'Error deleting file: $1',
3158 'filedeleteerror-long' => 'Errors were encountered while deleting the file:
3159
3160 $1',
3161 'filedelete-missing' => 'The file "$1" cannot be deleted, because it does not exist.',
3162 'filedelete-old-unregistered' => 'The specified file revision "$1" is not in the database.',
3163 'filedelete-current-unregistered' => 'The specified file "$1" is not in the database.',
3164 'filedelete-archive-read-only' => 'The archive directory "$1" is not writable by the webserver.',
3165
3166 # Browsing diffs
3167 'previousdiff' => '← Older edit',
3168 'nextdiff' => 'Newer edit →',
3169
3170 # Visual comparison
3171 'visual-comparison' => 'Visual comparison',
3172
3173 # Media information
3174 'mediawarning' => "'''Warning''': This file may contain malicious code, by executing it your system may be compromised.<hr />",
3175 'imagemaxsize' => "Image size limit:<br />''(for file description pages)''",
3176 'thumbsize' => 'Thumbnail size:',
3177 'widthheight' => '$1×$2', # only translate this message to other languages if you have to change it
3178 'widthheightpage' => '$1×$2, $3 {{PLURAL:$3|page|pages}}',
3179 'file-info' => '(file size: $1, MIME type: $2)',
3180 'file-info-size' => '($1 × $2 pixels, file size: $3, MIME type: $4)',
3181 'file-nohires' => '<small>No higher resolution available.</small>',
3182 'svg-long-desc' => '(SVG file, nominally $1 × $2 pixels, file size: $3)',
3183 'show-big-image' => 'Full resolution',
3184 'show-big-image-thumb' => '<small>Size of this preview: $1 × $2 pixels</small>',
3185
3186 # Special:NewFiles
3187 'newimages' => 'Gallery of new files',
3188 'imagelisttext' => "Below is a list of '''$1''' {{PLURAL:$1|file|files}} sorted $2.",
3189 'newimages-summary' => 'This special page shows the last uploaded files.',
3190 'newimages-legend' => 'Filter',
3191 'newimages-label' => 'Filename (or a part of it):',
3192 'showhidebots' => '($1 bots)',
3193 'noimages' => 'Nothing to see.',
3194 'ilsubmit' => 'Search',
3195 'bydate' => 'by date',
3196 'sp-newimages-showfrom' => 'Show new files starting from $2, $1',
3197
3198 # Video information, used by Language::formatTimePeriod() to format lengths in the above messages
3199 'video-dims' => '$1, $2×$3', # only translate this message to other languages if you have to change it
3200 'seconds-abbrev' => 's', # only translate this message to other languages if you have to change it
3201 'minutes-abbrev' => 'm', # only translate this message to other languages if you have to change it
3202 'hours-abbrev' => 'h', # only translate this message to other languages if you have to change it
3203
3204 # Bad image list
3205 'bad_image_list' => 'The format is as follows:
3206
3207 Only list items (lines starting with *) are considered.
3208 The first link on a line must be a link to a bad file.
3209 Any subsequent links on the same line are considered to be exceptions, i.e. pages where the file may occur inline.',
3210
3211 /*
3212 Short names for language variants used for language conversion links.
3213 To disable showing a particular link, set it to 'disable', e.g.
3214 'variantname-zh-sg' => 'disable',
3215 Variants for Chinese language
3216 */
3217 'variantname-zh-hans' => 'hans', # only translate this message to other languages if you have to change it
3218 'variantname-zh-hant' => 'hant', # only translate this message to other languages if you have to change it
3219 'variantname-zh-cn' => 'cn', # only translate this message to other languages if you have to change it
3220 'variantname-zh-tw' => 'tw', # only translate this message to other languages if you have to change it
3221 'variantname-zh-hk' => 'hk', # only translate this message to other languages if you have to change it
3222 'variantname-zh-mo' => 'mo', # only translate this message to other languages if you have to change it
3223 'variantname-zh-sg' => 'sg', # only translate this message to other languages if you have to change it
3224 'variantname-zh-my' => 'my', # only translate this message to other languages if you have to change it
3225 'variantname-zh' => 'zh', # only translate this message to other languages if you have to change it
3226
3227 # Variants for Gan language
3228 'variantname-gan-hans' => 'hans', # only translate this message to other languages if you have to change it
3229 'variantname-gan-hant' => 'hant', # only translate this message to other languages if you have to change it
3230 'variantname-gan' => 'gan', # only translate this message to other languages if you have to change it
3231
3232 # Variants for Serbian language
3233 'variantname-sr-ec' => 'sr-ec', # only translate this message to other languages if you have to change it
3234 'variantname-sr-el' => 'sr-el', # only translate this message to other languages if you have to change it
3235 'variantname-sr' => 'sr', # only translate this message to other languages if you have to change it
3236
3237 # Variants for Kazakh language
3238 'variantname-kk-kz' => 'kk-kz', # only translate this message to other languages if you have to change it
3239 'variantname-kk-tr' => 'kk-tr', # only translate this message to other languages if you have to change it
3240 'variantname-kk-cn' => 'kk-cn', # only translate this message to other languages if you have to change it
3241 'variantname-kk-cyrl' => 'kk-cyrl', # only translate this message to other languages if you have to change it
3242 'variantname-kk-latn' => 'kk-latn', # only translate this message to other languages if you have to change it
3243 'variantname-kk-arab' => 'kk-arab', # only translate this message to other languages if you have to change it
3244 'variantname-kk' => 'kk', # only translate this message to other languages if you have to change it
3245
3246 # Variants for Kurdish language
3247 'variantname-ku-arab' => 'ku-Arab', # only translate this message to other languages if you have to change it
3248 'variantname-ku-latn' => 'ku-Latn', # only translate this message to other languages if you have to change it
3249 'variantname-ku' => 'ku', # only translate this message to other languages if you have to change it
3250
3251 # Variants for Tajiki language
3252 'variantname-tg-cyrl' => 'tg-Cyrl', # only translate this message to other languages if you have to change it
3253 'variantname-tg-latn' => 'tg-Latn', # only translate this message to other languages if you have to change it
3254 'variantname-tg' => 'tg', # only translate this message to other languages if you have to change it
3255
3256 # Metadata
3257 'metadata' => 'Metadata',
3258 'metadata-help' => 'This file contains additional information, probably added from the digital camera or scanner used to create or digitize it.
3259 If the file has been modified from its original state, some details may not fully reflect the modified file.',
3260 'metadata-expand' => 'Show extended details',
3261 'metadata-collapse' => 'Hide extended details',
3262 'metadata-fields' => 'EXIF metadata fields listed in this message will be included on image page display when the metadata table is collapsed.
3263 Others will be hidden by default.
3264 * make
3265 * model
3266 * datetimeoriginal
3267 * exposuretime
3268 * fnumber
3269 * focallength',
3270
3271 # EXIF tags
3272 'exif-imagewidth' => 'Width',
3273 'exif-imagelength' => 'Height',
3274 'exif-bitspersample' => 'Bits per component',
3275 'exif-compression' => 'Compression scheme',
3276 'exif-photometricinterpretation' => 'Pixel composition',
3277 'exif-orientation' => 'Orientation',
3278 'exif-samplesperpixel' => 'Number of components',
3279 'exif-planarconfiguration' => 'Data arrangement',
3280 'exif-ycbcrsubsampling' => 'Subsampling ratio of Y to C',
3281 'exif-ycbcrpositioning' => 'Y and C positioning',
3282 'exif-xresolution' => 'Horizontal resolution',
3283 'exif-yresolution' => 'Vertical resolution',
3284 'exif-resolutionunit' => 'Unit of X and Y resolution',
3285 'exif-stripoffsets' => 'Image data location',
3286 'exif-rowsperstrip' => 'Number of rows per strip',
3287 'exif-stripbytecounts' => 'Bytes per compressed strip',
3288 'exif-jpeginterchangeformat' => 'Offset to JPEG SOI',
3289 'exif-jpeginterchangeformatlength' => 'Bytes of JPEG data',
3290 'exif-transferfunction' => 'Transfer function',
3291 'exif-whitepoint' => 'White point chromaticity',
3292 'exif-primarychromaticities' => 'Chromaticities of primarities',
3293 'exif-ycbcrcoefficients' => 'Color space transformation matrix coefficients',
3294 'exif-referenceblackwhite' => 'Pair of black and white reference values',
3295 'exif-datetime' => 'File change date and time',
3296 'exif-imagedescription' => 'Image title',
3297 'exif-make' => 'Camera manufacturer',
3298 'exif-model' => 'Camera model',
3299 'exif-software' => 'Software used',
3300 'exif-artist' => 'Author',
3301 'exif-copyright' => 'Copyright holder',
3302 'exif-exifversion' => 'Exif version',
3303 'exif-flashpixversion' => 'Supported Flashpix version',
3304 'exif-colorspace' => 'Color space',
3305 'exif-componentsconfiguration' => 'Meaning of each component',
3306 'exif-compressedbitsperpixel' => 'Image compression mode',
3307 'exif-pixelydimension' => 'Valid image width',
3308 'exif-pixelxdimension' => 'Valid image height',
3309 'exif-makernote' => 'Manufacturer notes',
3310 'exif-usercomment' => 'User comments',
3311 'exif-relatedsoundfile' => 'Related audio file',
3312 'exif-datetimeoriginal' => 'Date and time of data generation',
3313 'exif-datetimedigitized' => 'Date and time of digitizing',
3314 'exif-subsectime' => 'DateTime subseconds',
3315 'exif-subsectimeoriginal' => 'DateTimeOriginal subseconds',
3316 'exif-subsectimedigitized' => 'DateTimeDigitized subseconds',
3317 'exif-exposuretime' => 'Exposure time',
3318 'exif-exposuretime-format' => '$1 sec ($2)',
3319 'exif-fnumber' => 'F Number',
3320 'exif-fnumber-format' => 'f/$1', # only translate this message to other languages if you have to change it
3321 'exif-exposureprogram' => 'Exposure Program',
3322 'exif-spectralsensitivity' => 'Spectral sensitivity',
3323 'exif-isospeedratings' => 'ISO speed rating',
3324 'exif-oecf' => 'Optoelectronic conversion factor',
3325 'exif-shutterspeedvalue' => 'Shutter speed',
3326 'exif-aperturevalue' => 'Aperture',
3327 'exif-brightnessvalue' => 'Brightness',
3328 'exif-exposurebiasvalue' => 'Exposure bias',
3329 'exif-maxaperturevalue' => 'Maximum land aperture',
3330 'exif-subjectdistance' => 'Subject distance',
3331 'exif-meteringmode' => 'Metering mode',
3332 'exif-lightsource' => 'Light source',
3333 'exif-flash' => 'Flash',
3334 'exif-focallength' => 'Lens focal length',
3335 'exif-focallength-format' => '$1 mm', # only translate this message to other languages if you have to change it
3336 'exif-subjectarea' => 'Subject area',
3337 'exif-flashenergy' => 'Flash energy',
3338 'exif-spatialfrequencyresponse' => 'Spatial frequency response',
3339 'exif-focalplanexresolution' => 'Focal plane X resolution',
3340 'exif-focalplaneyresolution' => 'Focal plane Y resolution',
3341 'exif-focalplaneresolutionunit' => 'Focal plane resolution unit',
3342 'exif-subjectlocation' => 'Subject location',
3343 'exif-exposureindex' => 'Exposure index',
3344 'exif-sensingmethod' => 'Sensing method',
3345 'exif-filesource' => 'File source',
3346 'exif-scenetype' => 'Scene type',
3347 'exif-cfapattern' => 'CFA pattern',
3348 'exif-customrendered' => 'Custom image processing',
3349 'exif-exposuremode' => 'Exposure mode',
3350 'exif-whitebalance' => 'White Balance',
3351 'exif-digitalzoomratio' => 'Digital zoom ratio',
3352 'exif-focallengthin35mmfilm' => 'Focal length in 35 mm film',
3353 'exif-scenecapturetype' => 'Scene capture type',
3354 'exif-gaincontrol' => 'Scene control',
3355 'exif-contrast' => 'Contrast',
3356 'exif-saturation' => 'Saturation',
3357 'exif-sharpness' => 'Sharpness',
3358 'exif-devicesettingdescription' => 'Device settings description',
3359 'exif-subjectdistancerange' => 'Subject distance range',
3360 'exif-imageuniqueid' => 'Unique image ID',
3361 'exif-gpsversionid' => 'GPS tag version',
3362 'exif-gpslatituderef' => 'North or South Latitude',
3363 'exif-gpslatitude' => 'Latitude',
3364 'exif-gpslongituderef' => 'East or West Longitude',
3365 'exif-gpslongitude' => 'Longitude',
3366 'exif-gpsaltituderef' => 'Altitude reference',
3367 'exif-gpsaltitude' => 'Altitude',
3368 'exif-gpstimestamp' => 'GPS time (atomic clock)',
3369 'exif-gpssatellites' => 'Satellites used for measurement',
3370 'exif-gpsstatus' => 'Receiver status',
3371 'exif-gpsmeasuremode' => 'Measurement mode',
3372 'exif-gpsdop' => 'Measurement precision',
3373 'exif-gpsspeedref' => 'Speed unit',
3374 'exif-gpsspeed' => 'Speed of GPS receiver',
3375 'exif-gpstrackref' => 'Reference for direction of movement',
3376 'exif-gpstrack' => 'Direction of movement',
3377 'exif-gpsimgdirectionref' => 'Reference for direction of image',
3378 'exif-gpsimgdirection' => 'Direction of image',
3379 'exif-gpsmapdatum' => 'Geodetic survey data used',
3380 'exif-gpsdestlatituderef' => 'Reference for latitude of destination',
3381 'exif-gpsdestlatitude' => 'Latitude destination',
3382 'exif-gpsdestlongituderef' => 'Reference for longitude of destination',
3383 'exif-gpsdestlongitude' => 'Longitude of destination',
3384 'exif-gpsdestbearingref' => 'Reference for bearing of destination',
3385 'exif-gpsdestbearing' => 'Bearing of destination',
3386 'exif-gpsdestdistanceref' => 'Reference for distance to destination',
3387 'exif-gpsdestdistance' => 'Distance to destination',
3388 'exif-gpsprocessingmethod' => 'Name of GPS processing method',
3389 'exif-gpsareainformation' => 'Name of GPS area',
3390 'exif-gpsdatestamp' => 'GPS date',
3391 'exif-gpsdifferential' => 'GPS differential correction',
3392
3393 # Make & model, can be wikified in order to link to the camera and model name
3394 'exif-make-value' => '$1', # do not translate or duplicate this message to other languages
3395 'exif-model-value' => '$1', # do not translate or duplicate this message to other languages
3396 'exif-software-value' => '$1', # do not translate or duplicate this message to other languages
3397
3398 # EXIF attributes
3399 'exif-compression-1' => 'Uncompressed',
3400 'exif-compression-6' => 'JPEG', # only translate this message to other languages if you have to change it
3401
3402 'exif-photometricinterpretation-2' => 'RGB', # only translate this message to other languages if you have to change it
3403 'exif-photometricinterpretation-6' => 'YCbCr', # only translate this message to other languages if you have to change it
3404
3405 'exif-unknowndate' => 'Unknown date',
3406
3407 'exif-orientation-1' => 'Normal',
3408 'exif-orientation-2' => 'Flipped horizontally',
3409 'exif-orientation-3' => 'Rotated 180°',
3410 'exif-orientation-4' => 'Flipped vertically',
3411 'exif-orientation-5' => 'Rotated 90° CCW and flipped vertically',
3412 'exif-orientation-6' => 'Rotated 90° CW',
3413 'exif-orientation-7' => 'Rotated 90° CW and flipped vertically',
3414 'exif-orientation-8' => 'Rotated 90° CCW',
3415
3416 'exif-planarconfiguration-1' => 'chunky format',
3417 'exif-planarconfiguration-2' => 'planar format',
3418
3419 'exif-xyresolution-i' => '$1 dpi', # only translate this message to other languages if you have to change it
3420 'exif-xyresolution-c' => '$1 dpc', # only translate this message to other languages if you have to change it
3421
3422 'exif-colorspace-1' => 'sRGB', # only translate this message to other languages if you have to change it
3423 'exif-colorspace-ffff.h' => 'FFFF.H', # only translate this message to other languages if you have to change it
3424
3425 'exif-componentsconfiguration-0' => 'does not exist',
3426 'exif-componentsconfiguration-1' => 'Y', # only translate this message to other languages if you have to change it
3427 'exif-componentsconfiguration-2' => 'Cb', # only translate this message to other languages if you have to change it
3428 'exif-componentsconfiguration-3' => 'Cr', # only translate this message to other languages if you have to change it
3429 'exif-componentsconfiguration-4' => 'R', # only translate this message to other languages if you have to change it
3430 'exif-componentsconfiguration-5' => 'G', # only translate this message to other languages if you have to change it
3431 'exif-componentsconfiguration-6' => 'B', # only translate this message to other languages if you have to change it
3432
3433 'exif-exposureprogram-0' => 'Not defined',
3434 'exif-exposureprogram-1' => 'Manual',
3435 'exif-exposureprogram-2' => 'Normal program',
3436 'exif-exposureprogram-3' => 'Aperture priority',
3437 'exif-exposureprogram-4' => 'Shutter priority',
3438 'exif-exposureprogram-5' => 'Creative program (biased toward depth of field)',
3439 'exif-exposureprogram-6' => 'Action program (biased toward fast shutter speed)',
3440 'exif-exposureprogram-7' => 'Portrait mode (for closeup photos with the background out of focus)',
3441 'exif-exposureprogram-8' => 'Landscape mode (for landscape photos with the background in focus)',
3442
3443 'exif-subjectdistance-value' => '$1 meters',
3444
3445 'exif-meteringmode-0' => 'Unknown',
3446 'exif-meteringmode-1' => 'Average',
3447 'exif-meteringmode-2' => 'CenterWeightedAverage',
3448 'exif-meteringmode-3' => 'Spot',
3449 'exif-meteringmode-4' => 'MultiSpot',
3450 'exif-meteringmode-5' => 'Pattern',
3451 'exif-meteringmode-6' => 'Partial',
3452 'exif-meteringmode-255' => 'Other',
3453
3454 'exif-lightsource-0' => 'Unknown',
3455 'exif-lightsource-1' => 'Daylight',
3456 'exif-lightsource-2' => 'Fluorescent',
3457 'exif-lightsource-3' => 'Tungsten (incandescent light)',
3458 'exif-lightsource-4' => 'Flash',
3459 'exif-lightsource-9' => 'Fine weather',
3460 'exif-lightsource-10' => 'Cloudy weather',
3461 'exif-lightsource-11' => 'Shade',
3462 'exif-lightsource-12' => 'Daylight fluorescent (D 5700 – 7100K)',
3463 'exif-lightsource-13' => 'Day white fluorescent (N 4600 – 5400K)',
3464 'exif-lightsource-14' => 'Cool white fluorescent (W 3900 – 4500K)',
3465 'exif-lightsource-15' => 'White fluorescent (WW 3200 – 3700K)',
3466 'exif-lightsource-17' => 'Standard light A',
3467 'exif-lightsource-18' => 'Standard light B',
3468 'exif-lightsource-19' => 'Standard light C',
3469 'exif-lightsource-20' => 'D55', # only translate this message to other languages if you have to change it
3470 'exif-lightsource-21' => 'D65', # only translate this message to other languages if you have to change it
3471 'exif-lightsource-22' => 'D75', # only translate this message to other languages if you have to change it
3472 'exif-lightsource-23' => 'D50', # only translate this message to other languages if you have to change it
3473 'exif-lightsource-24' => 'ISO studio tungsten',
3474 'exif-lightsource-255' => 'Other light source',
3475
3476 # Flash modes
3477 'exif-flash-fired-0' => 'Flash did not fire',
3478 'exif-flash-fired-1' => 'Flash fired',
3479 'exif-flash-return-0' => 'no strobe return detection function',
3480 'exif-flash-return-2' => 'strobe return light not detected',
3481 'exif-flash-return-3' => 'strobe return light detected',
3482 'exif-flash-mode-1' => 'compulsory flash firing',
3483 'exif-flash-mode-2' => 'compulsory flash suppression',
3484 'exif-flash-mode-3' => 'auto mode',
3485 'exif-flash-function-1' => 'No flash function',
3486 'exif-flash-redeye-1' => 'red-eye reduction mode',
3487
3488 'exif-focalplaneresolutionunit-2' => 'inches',
3489
3490 'exif-sensingmethod-1' => 'Undefined',
3491 'exif-sensingmethod-2' => 'One-chip color area sensor',
3492 'exif-sensingmethod-3' => 'Two-chip color area sensor',
3493 'exif-sensingmethod-4' => 'Three-chip color area sensor',
3494 'exif-sensingmethod-5' => 'Color sequential area sensor',
3495 'exif-sensingmethod-7' => 'Trilinear sensor',
3496 'exif-sensingmethod-8' => 'Color sequential linear sensor',
3497
3498 'exif-filesource-3' => 'DSC', # only translate this message to other languages if you have to change it
3499
3500 'exif-scenetype-1' => 'A directly photographed image',
3501
3502 'exif-customrendered-0' => 'Normal process',
3503 'exif-customrendered-1' => 'Custom process',
3504
3505 'exif-exposuremode-0' => 'Auto exposure',
3506 'exif-exposuremode-1' => 'Manual exposure',
3507 'exif-exposuremode-2' => 'Auto bracket',
3508
3509 'exif-whitebalance-0' => 'Auto white balance',
3510 'exif-whitebalance-1' => 'Manual white balance',
3511
3512 'exif-scenecapturetype-0' => 'Standard',
3513 'exif-scenecapturetype-1' => 'Landscape',
3514 'exif-scenecapturetype-2' => 'Portrait',
3515 'exif-scenecapturetype-3' => 'Night scene',
3516
3517 'exif-gaincontrol-0' => 'None',
3518 'exif-gaincontrol-1' => 'Low gain up',
3519 'exif-gaincontrol-2' => 'High gain up',
3520 'exif-gaincontrol-3' => 'Low gain down',
3521 'exif-gaincontrol-4' => 'High gain down',
3522
3523 'exif-contrast-0' => 'Normal',
3524 'exif-contrast-1' => 'Soft',
3525 'exif-contrast-2' => 'Hard',
3526
3527 'exif-saturation-0' => 'Normal',
3528 'exif-saturation-1' => 'Low saturation',
3529 'exif-saturation-2' => 'High saturation',
3530
3531 'exif-sharpness-0' => 'Normal',
3532 'exif-sharpness-1' => 'Soft',
3533 'exif-sharpness-2' => 'Hard',
3534
3535 'exif-subjectdistancerange-0' => 'Unknown',
3536 'exif-subjectdistancerange-1' => 'Macro',
3537 'exif-subjectdistancerange-2' => 'Close view',
3538 'exif-subjectdistancerange-3' => 'Distant view',
3539
3540 # Pseudotags used for GPSLatitudeRef and GPSDestLatitudeRef
3541 'exif-gpslatitude-n' => 'North latitude',
3542 'exif-gpslatitude-s' => 'South latitude',
3543
3544 # Pseudotags used for GPSLongitudeRef and GPSDestLongitudeRef
3545 'exif-gpslongitude-e' => 'East longitude',
3546 'exif-gpslongitude-w' => 'West longitude',
3547
3548 # Pseudotags used for GPSAltitudeRef
3549 'exif-gpsaltitude-0' => 'Meters above sea level',
3550 'exif-gpsaltitude-1' => 'Meters below sea level',
3551
3552 'exif-gpsstatus-a' => 'Measurement in progress',
3553 'exif-gpsstatus-v' => 'Measurement interoperability',
3554
3555 'exif-gpsmeasuremode-2' => '2-dimensional measurement',
3556 'exif-gpsmeasuremode-3' => '3-dimensional measurement',
3557
3558 # Pseudotags used for GPSSpeedRef
3559 'exif-gpsspeed-k' => 'Kilometers per hour',
3560 'exif-gpsspeed-m' => 'Miles per hour',
3561 'exif-gpsspeed-n' => 'Knots',
3562
3563 # Pseudotags used for GPSDestDistanceRef
3564 'exif-gpsdestdistance-k' => 'Kilometers',
3565 'exif-gpsdestdistance-m' => 'Miles',
3566 'exif-gpsdestdistance-n' => 'Nautical miles',
3567
3568 # Pseudotags used for GPSTrackRef, GPSImgDirectionRef and GPSDestBearingRef
3569 'exif-gpsdirection-t' => 'True direction',
3570 'exif-gpsdirection-m' => 'Magnetic direction',
3571
3572 # External editor support
3573 'edit-externally' => 'Edit this file using an external application',
3574 'edit-externally-help' => '(See the [http://www.mediawiki.org/wiki/Manual:External_editors setup instructions] for more information)',
3575
3576 # 'all' in various places, this might be different for inflected languages
3577 'recentchangesall' => 'all',
3578 'imagelistall' => 'all',
3579 'watchlistall2' => 'all',
3580 'namespacesall' => 'all',
3581 'monthsall' => 'all',
3582
3583 # E-mail address confirmation
3584 'confirmemail' => 'Confirm e-mail address',
3585 'confirmemail_noemail' => 'You do not have a valid e-mail address set in your [[Special:Preferences|user preferences]].',
3586 'confirmemail_text' => '{{SITENAME}} requires that you validate your e-mail address before using e-mail features.
3587 Activate the button below to send a confirmation mail to your address.
3588 The mail will include a link containing a code;
3589 load the link in your browser to confirm that your e-mail address is valid.',
3590 'confirmemail_pending' => 'A confirmation code has already been e-mailed to you;
3591 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.',
3592 'confirmemail_send' => 'Mail a confirmation code',
3593 'confirmemail_sent' => 'Confirmation e-mail sent.',
3594 'confirmemail_oncreate' => 'A confirmation code was sent to your e-mail address.
3595 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.',
3596 'confirmemail_sendfailed' => '{{SITENAME}} could not send your confirmation mail.
3597 Please check your e-mail address for invalid characters.
3598
3599 Mailer returned: $1',
3600 'confirmemail_invalid' => 'Invalid confirmation code.
3601 The code may have expired.',
3602 'confirmemail_needlogin' => 'You need to $1 to confirm your e-mail address.',
3603 'confirmemail_success' => 'Your e-mail address has been confirmed.
3604 You may now [[Special:UserLogin|log in]] and enjoy the wiki.',
3605 'confirmemail_loggedin' => 'Your e-mail address has now been confirmed.',
3606 'confirmemail_error' => 'Something went wrong saving your confirmation.',
3607 'confirmemail_subject' => '{{SITENAME}} e-mail address confirmation',
3608 'confirmemail_body' => 'Someone, probably you, from IP address $1,
3609 has registered an account "$2" with this e-mail address on {{SITENAME}}.
3610
3611 To confirm that this account really does belong to you and activate
3612 e-mail features on {{SITENAME}}, open this link in your browser:
3613
3614 $3
3615
3616 If you did *not* register the account, follow this link
3617 to cancel the e-mail address confirmation:
3618
3619 $5
3620
3621 This confirmation code will expire at $4.',
3622 'confirmemail_invalidated' => 'E-mail address confirmation canceled',
3623 'invalidateemail' => 'Cancel e-mail confirmation',
3624
3625 # Scary transclusion
3626 'scarytranscludedisabled' => '[Interwiki transcluding is disabled]',
3627 'scarytranscludefailed' => '[Template fetch failed for $1]',
3628 'scarytranscludetoolong' => '[URL is too long]',
3629
3630 # Trackbacks
3631 'trackbackbox' => 'Trackbacks for this page:<br />
3632 $1',
3633 'trackback' => '; $4 $5: [$2 $1]', # only translate this message to other languages if you have to change it
3634 'trackbackexcerpt' => '; $4 $5: [$2 $1]: <nowiki>$3</nowiki>', # only translate this message to other languages if you have to change it
3635 'trackbackremove' => '([$1 Delete])',
3636 'trackbacklink' => 'Trackback',
3637 'trackbackdeleteok' => 'The trackback was successfully deleted.',
3638
3639 # Delete conflict
3640 'deletedwhileediting' => "'''Warning''': This page was deleted after you started editing!",
3641 'confirmrecreate' => "User [[User:$1|$1]] ([[User talk:$1|talk]]) deleted this page after you started editing with reason:
3642 : ''$2''
3643 Please confirm that you really want to recreate this page.",
3644 'recreate' => 'Recreate',
3645
3646 'unit-pixel' => 'px', # only translate this message to other languages if you have to change it
3647
3648 # action=purge
3649 'confirm_purge_button' => 'OK',
3650 'confirm-purge-top' => 'Clear the cache of this page?',
3651 'confirm-purge-bottom' => 'Purging a page clears the cache and forces the most current revision to appear.',
3652
3653 # Separators for various lists, etc.
3654 'catseparator' => '|', # only translate this message to other languages if you have to change it
3655 'semicolon-separator' => ';&#32;', # only translate this message to other languages if you have to change it
3656 'comma-separator' => ',&#32;', # only translate this message to other languages if you have to change it
3657 'colon-separator' => ':&#32;', # only translate this message to other languages if you have to change it
3658 'autocomment-prefix' => '-&#32;', # only translate this message to other languages if you have to change it
3659 'pipe-separator' => '&#32;|&#32;', # only translate this message to other languages if you have to change it
3660 'word-separator' => '&#32;', # only translate this message to other languages if you have to change it
3661 'ellipsis' => '…', # only translate this message to other languages if you have to change it
3662 'percent' => '$1%', # only translate this message to other languages if you have to change it
3663
3664 # Multipage image navigation
3665 'imgmultipageprev' => '← previous page',
3666 'imgmultipagenext' => 'next page →',
3667 'imgmultigo' => 'Go!',
3668 'imgmultigoto' => 'Go to page $1',
3669
3670 # Table pager
3671 'ascending_abbrev' => 'asc',
3672 'descending_abbrev' => 'desc',
3673 'table_pager_next' => 'Next page',
3674 'table_pager_prev' => 'Previous page',
3675 'table_pager_first' => 'First page',
3676 'table_pager_last' => 'Last page',
3677 'table_pager_limit' => 'Show $1 items per page',
3678 'table_pager_limit_submit' => 'Go',
3679 'table_pager_empty' => 'No results',
3680
3681 # Auto-summaries
3682 'autosumm-blank' => 'Blanked the page',
3683 'autosumm-replace' => "Replaced content with '$1'",
3684 'autoredircomment' => 'Redirected page to [[$1]]',
3685 'autosumm-new' => "Created page with '$1'",
3686
3687 # Autoblock whitelist
3688 'autoblock_whitelist' => 'AOL http://webmaster.info.aol.com/proxyinfo.html
3689 *64.12.96.0/19
3690 *149.174.160.0/20
3691 *152.163.240.0/21
3692 *152.163.248.0/22
3693 *152.163.252.0/23
3694 *152.163.96.0/22
3695 *152.163.100.0/23
3696 *195.93.32.0/22
3697 *195.93.48.0/22
3698 *195.93.64.0/19
3699 *195.93.96.0/19
3700 *195.93.16.0/20
3701 *198.81.0.0/22
3702 *198.81.16.0/20
3703 *198.81.8.0/23
3704 *202.67.64.128/25
3705 *205.188.192.0/20
3706 *205.188.208.0/23
3707 *205.188.112.0/20
3708 *205.188.146.144/30
3709 *207.200.112.0/21', # do not translate or duplicate this message to other languages
3710
3711 # Size units
3712 'size-bytes' => '$1 B', # only translate this message to other languages if you have to change it
3713 'size-kilobytes' => '$1 KB', # only translate this message to other languages if you have to change it
3714 'size-megabytes' => '$1 MB', # only translate this message to other languages if you have to change it
3715 'size-gigabytes' => '$1 GB', # only translate this message to other languages if you have to change it
3716
3717 # Live preview
3718 'livepreview-loading' => 'Loading…',
3719 'livepreview-ready' => 'Loading… Ready!',
3720 'livepreview-failed' => 'Live preview failed! Try normal preview.',
3721 'livepreview-error' => 'Failed to connect: $1 "$2".
3722 Try normal preview.',
3723
3724 # Friendlier slave lag warnings
3725 'lag-warn-normal' => 'Changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.',
3726 'lag-warn-high' => 'Due to high database server lag, changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.',
3727
3728 # Watchlist editor
3729 'watchlistedit-numitems' => 'Your watchlist contains {{PLURAL:$1|1 title|$1 titles}}, excluding talk pages.',
3730 'watchlistedit-noitems' => 'Your watchlist contains no titles.',
3731 'watchlistedit-normal-title' => 'Edit watchlist',
3732 'watchlistedit-normal-legend' => 'Remove titles from watchlist',
3733 'watchlistedit-normal-explain' => 'Titles on your watchlist are shown below.
3734 To remove a title, check the box next to it, and click Remove Titles.
3735 You can also [[Special:Watchlist/raw|edit the raw list]].',
3736 'watchlistedit-normal-submit' => 'Remove titles',
3737 'watchlistedit-normal-done' => '{{PLURAL:$1|1 title was|$1 titles were}} removed from your watchlist:',
3738 'watchlistedit-raw-title' => 'Edit raw watchlist',
3739 'watchlistedit-raw-legend' => 'Edit raw watchlist',
3740 'watchlistedit-raw-explain' => 'Titles on your watchlist are shown below, and can be edited by adding to and removing from the list;
3741 one title per line.
3742 When finished, click Update Watchlist.
3743 You can also [[Special:Watchlist/edit|use the standard editor]].',
3744 'watchlistedit-raw-titles' => 'Titles:',
3745 'watchlistedit-raw-submit' => 'Update Watchlist',
3746 'watchlistedit-raw-done' => 'Your watchlist has been updated.',
3747 'watchlistedit-raw-added' => '{{PLURAL:$1|1 title was|$1 titles were}} added:',
3748 'watchlistedit-raw-removed' => '{{PLURAL:$1|1 title was|$1 titles were}} removed:',
3749
3750 # Watchlist editing tools
3751 'watchlisttools-view' => 'View relevant changes',
3752 'watchlisttools-edit' => 'View and edit watchlist',
3753 'watchlisttools-raw' => 'Edit raw watchlist',
3754
3755 # Iranian month names
3756 'iranian-calendar-m1' => 'Farvardin', # only translate this message to other languages if you have to change it
3757 'iranian-calendar-m2' => 'Ordibehesht', # only translate this message to other languages if you have to change it
3758 'iranian-calendar-m3' => 'Khordad', # only translate this message to other languages if you have to change it
3759 'iranian-calendar-m4' => 'Tir', # only translate this message to other languages if you have to change it
3760 'iranian-calendar-m5' => 'Mordad', # only translate this message to other languages if you have to change it
3761 'iranian-calendar-m6' => 'Shahrivar', # only translate this message to other languages if you have to change it
3762 'iranian-calendar-m7' => 'Mehr', # only translate this message to other languages if you have to change it
3763 'iranian-calendar-m8' => 'Aban', # only translate this message to other languages if you have to change it
3764 'iranian-calendar-m9' => 'Azar', # only translate this message to other languages if you have to change it
3765 'iranian-calendar-m10' => 'Dey', # only translate this message to other languages if you have to change it
3766 'iranian-calendar-m11' => 'Bahman', # only translate this message to other languages if you have to change it
3767 'iranian-calendar-m12' => 'Esfand', # only translate this message to other languages if you have to change it
3768
3769 # Hijri month names
3770 'hijri-calendar-m1' => 'Muharram', # only translate this message to other languages if you have to change it
3771 'hijri-calendar-m2' => 'Safar', # only translate this message to other languages if you have to change it
3772 'hijri-calendar-m3' => "Rabi' al-awwal", # only translate this message to other languages if you have to change it
3773 'hijri-calendar-m4' => "Rabi' al-thani", # only translate this message to other languages if you have to change it
3774 'hijri-calendar-m5' => 'Jumada al-awwal', # only translate this message to other languages if you have to change it
3775 'hijri-calendar-m6' => 'Jumada al-thani', # only translate this message to other languages if you have to change it
3776 'hijri-calendar-m7' => 'Rajab', # only translate this message to other languages if you have to change it
3777 'hijri-calendar-m8' => "Sha'aban", # only translate this message to other languages if you have to change it
3778 'hijri-calendar-m9' => 'Ramadan', # only translate this message to other languages if you have to change it
3779 'hijri-calendar-m10' => 'Shawwal', # only translate this message to other languages if you have to change it
3780 'hijri-calendar-m11' => "Dhu al-Qi'dah", # only translate this message to other languages if you have to change it
3781 'hijri-calendar-m12' => 'Dhu al-Hijjah', # only translate this message to other languages if you have to change it
3782
3783 # Hebrew month names
3784 'hebrew-calendar-m1' => 'Tishrei', # only translate this message to other languages if you have to change it
3785 'hebrew-calendar-m2' => 'Cheshvan', # only translate this message to other languages if you have to change it
3786 'hebrew-calendar-m3' => 'Kislev', # only translate this message to other languages if you have to change it
3787 'hebrew-calendar-m4' => 'Tevet', # only translate this message to other languages if you have to change it
3788 'hebrew-calendar-m5' => 'Shevat', # only translate this message to other languages if you have to change it
3789 'hebrew-calendar-m6' => 'Adar', # only translate this message to other languages if you have to change it
3790 'hebrew-calendar-m6a' => 'Adar I', # only translate this message to other languages if you have to change it
3791 'hebrew-calendar-m6b' => 'Adar II', # only translate this message to other languages if you have to change it
3792 'hebrew-calendar-m7' => 'Nisan', # only translate this message to other languages if you have to change it
3793 'hebrew-calendar-m8' => 'Iyar', # only translate this message to other languages if you have to change it
3794 'hebrew-calendar-m9' => 'Sivan', # only translate this message to other languages if you have to change it
3795 'hebrew-calendar-m10' => 'Tamuz', # only translate this message to other languages if you have to change it
3796 'hebrew-calendar-m11' => 'Av', # only translate this message to other languages if you have to change it
3797 'hebrew-calendar-m12' => 'Elul', # only translate this message to other languages if you have to change it
3798 'hebrew-calendar-m1-gen' => 'Tishrei', # only translate this message to other languages if you have to change it
3799 'hebrew-calendar-m2-gen' => 'Cheshvan', # only translate this message to other languages if you have to change it
3800 'hebrew-calendar-m3-gen' => 'Kislev', # only translate this message to other languages if you have to change it
3801 'hebrew-calendar-m4-gen' => 'Tevet', # only translate this message to other languages if you have to change it
3802 'hebrew-calendar-m5-gen' => 'Shevat', # only translate this message to other languages if you have to change it
3803 'hebrew-calendar-m6-gen' => 'Adar', # only translate this message to other languages if you have to change it
3804 'hebrew-calendar-m6a-gen' => 'Adar I', # only translate this message to other languages if you have to change it
3805 'hebrew-calendar-m6b-gen' => 'Adar II', # only translate this message to other languages if you have to change it
3806 'hebrew-calendar-m7-gen' => 'Nisan', # only translate this message to other languages if you have to change it
3807 'hebrew-calendar-m8-gen' => 'Iyar', # only translate this message to other languages if you have to change it
3808 'hebrew-calendar-m9-gen' => 'Sivan', # only translate this message to other languages if you have to change it
3809 'hebrew-calendar-m10-gen' => 'Tamuz', # only translate this message to other languages if you have to change it
3810 'hebrew-calendar-m11-gen' => 'Av', # only translate this message to other languages if you have to change it
3811 'hebrew-calendar-m12-gen' => 'Elul', # only translate this message to other languages if you have to change it
3812
3813 # Signatures
3814 'signature' => '[[{{ns:user}}:$1|$2]]', # do not translate or duplicate this message to other languages
3815 'signature-anon' => '[[{{#special:Contributions}}/$1|$2]]', # do not translate or duplicate this message to other languages
3816 'timezone-utc' => 'UTC', # only translate this message to other languages if you have to change it
3817
3818 # Core parser functions
3819 'unknown_extension_tag' => 'Unknown extension tag "$1"',
3820 'duplicate-defaultsort' => '\'\'\'Warning:\'\'\' Default sort key "$2" overrides earlier default sort key "$1".',
3821
3822 # Special:Version
3823 'version' => 'Version',
3824 'version-extensions' => 'Installed extensions',
3825 'version-specialpages' => 'Special pages',
3826 'version-parserhooks' => 'Parser hooks',
3827 'version-variables' => 'Variables',
3828 'version-other' => 'Other',
3829 'version-mediahandlers' => 'Media handlers',
3830 'version-hooks' => 'Hooks',
3831 'version-extension-functions' => 'Extension functions',
3832 'version-parser-extensiontags' => 'Parser extension tags',
3833 'version-parser-function-hooks' => 'Parser function hooks',
3834 'version-skin-extension-functions' => 'Skin extension functions',
3835 'version-hook-name' => 'Hook name',
3836 'version-hook-subscribedby' => 'Subscribed by',
3837 'version-version' => '(Version $1)',
3838 'version-svn-revision' => '(r$2)', # only translate this message to other languages if you have to change it
3839 'version-license' => 'License',
3840 'version-software' => 'Installed software',
3841 'version-software-product' => 'Product',
3842 'version-software-version' => 'Version',
3843
3844 # Special:FilePath
3845 'filepath' => 'File path',
3846 'filepath-page' => 'File:',
3847 'filepath-submit' => 'Path',
3848 'filepath-summary' => 'This special page returns the complete path for a file.
3849 Images are shown in full resolution, other file types are started with their associated program directly.
3850
3851 Enter the file name without the "{{ns:file}}:" prefix.',
3852
3853 # Special:FileDuplicateSearch
3854 'fileduplicatesearch' => 'Search for duplicate files',
3855 'fileduplicatesearch-summary' => 'Search for duplicate files on base of its hash value.
3856
3857 Enter the filename without the "{{ns:file}}:" prefix.',
3858 'fileduplicatesearch-legend' => 'Search for a duplicate',
3859 'fileduplicatesearch-filename' => 'Filename:',
3860 'fileduplicatesearch-submit' => 'Search',
3861 'fileduplicatesearch-info' => '$1 × $2 pixel<br />File size: $3<br />MIME type: $4',
3862 'fileduplicatesearch-result-1' => 'The file "$1" has no identical duplication.',
3863 'fileduplicatesearch-result-n' => 'The file "$1" has {{PLURAL:$2|1 identical duplication|$2 identical duplications}}.',
3864
3865 # Special:SpecialPages
3866 'specialpages' => 'Special pages',
3867 'specialpages-summary' => '', # do not translate or duplicate this message to other languages
3868 'specialpages-note' => '----
3869 * Normal special pages.
3870 * <strong class="mw-specialpagerestricted">Restricted special pages.</strong>',
3871 'specialpages-group-maintenance' => 'Maintenance reports',
3872 'specialpages-group-other' => 'Other special pages',
3873 'specialpages-group-login' => 'Login / sign up',
3874 'specialpages-group-changes' => 'Recent changes and logs',
3875 'specialpages-group-media' => 'Media reports and uploads',
3876 'specialpages-group-users' => 'Users and rights',
3877 'specialpages-group-highuse' => 'High use pages',
3878 'specialpages-group-pages' => 'Lists of pages',
3879 'specialpages-group-pagetools' => 'Page tools',
3880 'specialpages-group-wiki' => 'Wiki data and tools',
3881 'specialpages-group-redirects' => 'Redirecting special pages',
3882 'specialpages-group-spam' => 'Spam tools',
3883
3884 # Special:BlankPage
3885 'blankpage' => 'Blank page',
3886 'intentionallyblankpage' => 'This page is intentionally left blank.',
3887
3888 # External image whitelist
3889 'external_image_whitelist' => ' #Leave this line exactly as it is<pre>
3890 #Put regular expression fragments (just the part that goes between the //) below
3891 #These will be matched with the URLs of external (hotlinked) images
3892 #Those that match will be displayed as images, otherwise only a link to the image will be shown
3893 #Lines beginning with # are treated as comments
3894 #This is case-insensitive
3895
3896 #Put all regex fragments above this line. Leave this line exactly as it is</pre>',
3897
3898 # Special:Tags
3899 'tags' => 'Valid change tags',
3900 'tag-filter' => '[[Special:Tags|Tag]] filter:',
3901 'tag-filter-submit' => 'Filter',
3902 'tags-title' => 'Tags',
3903 'tags-intro' => 'This page lists the tags that the software may mark an edit with, and their meaning.',
3904 'tags-tag' => 'Internal tag name',
3905 'tags-display-header' => 'Appearance on change lists',
3906 'tags-description-header' => 'Full description of meaning',
3907 'tags-hitcount-header' => 'Tagged changes',
3908 'tags-edit' => 'edit',
3909 'tags-hitcount' => '$1 {{PLURAL:$1|change|changes}}',
3910
3911 # Database error messages
3912 'dberr-header' => 'This wiki has a problem',
3913 'dberr-problems' => 'Sorry! This site is experiencing technical difficulties.',
3914 'dberr-again' => 'Try waiting a few minutes and reloading.',
3915 'dberr-info' => '(Cannot contact the database server: $1)',
3916 'dberr-usegoogle' => 'You can try searching via Google in the meantime.',
3917 'dberr-outofdate' => 'Note that their indexes of our content may be out of date.',
3918 'dberr-cachederror' => 'This is a cached copy of the requested page, and may not be up to date.',
3919
3920 # HTML forms
3921 'htmlform-invalid-input' => 'There are problems with some of your input',
3922 'htmlform-select-badoption' => 'The value you specified is not a valid option.',
3923 'htmlform-int-invalid' => 'The value you specified is not an integer.',
3924 'htmlform-int-toolow' => 'The value you specified is below the minimum of $1',
3925 'htmlform-int-toohigh' => 'The value you specified is above the maximum of $1',
3926 'htmlform-submit' => 'Submit',
3927 'htmlform-reset' => 'Undo changes',
3928 'htmlform-selectorother-other' => 'Other',
3929
3930 );