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