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