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