* fixed as per comment on r88008
[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 server default',
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 'fileexists' => "A file with this name exists already, please check '''<tt>[[:$1]]</tt>''' if you are not sure if you want to change it.
2141 [[$1|thumb]]",
2142 'filepageexists' => "The description page for this file has already been created at '''<tt>[[:$1]]</tt>''', but no file with this name currently exists.
2143 The summary you enter will not appear on the description page.
2144 To make your summary appear there, you will need to manually edit it.
2145 [[$1|thumb]]",
2146 'fileexists-extension' => "A file with a similar name exists: [[$2|thumb]]
2147 * Name of the uploading file: '''<tt>[[:$1]]</tt>'''
2148 * Name of the existing file: '''<tt>[[:$2]]</tt>'''
2149 Please choose a different name.",
2150 'fileexists-thumbnail-yes' => "The file seems to be an image of reduced size ''(thumbnail)''.
2151 [[$1|thumb]]
2152 Please check the file '''<tt>[[:$1]]</tt>'''.
2153 If the checked file is the same image of original size it is not necessary to upload an extra thumbnail.",
2154 'file-thumbnail-no' => "The filename begins with '''<tt>$1</tt>'''.
2155 It seems to be an image of reduced size ''(thumbnail)''.
2156 If you have this image in full resolution upload this one, otherwise change the file name please.",
2157 'fileexists-forbidden' => 'A file with this name already exists, and cannot be overwritten.
2158 If you still want to upload your file, please go back and use a new name.
2159 [[File:$1|thumb|center|$1]]',
2160 'fileexists-shared-forbidden' => 'A file with this name exists already in the shared file repository.
2161 If you still want to upload your file, please go back and use a new name.
2162 [[File:$1|thumb|center|$1]]',
2163 'file-exists-duplicate' => 'This file is a duplicate of the following {{PLURAL:$1|file|files}}:',
2164 'file-deleted-duplicate' => "A file identical to this file ([[:$1]]) has previously been deleted.
2165 You should check that file's deletion history before proceeding to re-upload it.",
2166 'uploadwarning' => 'Upload warning',
2167 'uploadwarning-text' => 'Please modify the file description below and try again.',
2168 'savefile' => 'Save file',
2169 'uploadedimage' => 'uploaded "[[$1]]"',
2170 'overwroteimage' => 'uploaded a new version of "[[$1]]"',
2171 'uploaddisabled' => 'Uploads disabled.',
2172 'copyuploaddisabled' => 'Upload by URL disabled.',
2173 'uploadfromurl-queued' => 'Your upload has been queued.',
2174 'uploaddisabledtext' => 'File uploads are disabled.',
2175 'php-uploaddisabledtext' => 'File uploads are disabled in PHP.
2176 Please check the file_uploads setting.',
2177 'uploadscripted' => 'This file contains HTML or script code that may be erroneously interpreted by a web browser.',
2178 'uploadvirus' => 'The file contains a virus!
2179 Details: $1',
2180 'uploadjava' => 'The file is a ZIP file which contains a Java .class file.
2181 Uploading Java files is not allowed, because they can cause security restrictions to be bypassed.',
2182 'upload-source' => 'Source file',
2183 'sourcefilename' => 'Source filename:',
2184 'sourceurl' => 'Source URL:',
2185 'destfilename' => 'Destination filename:',
2186 'upload-maxfilesize' => 'Maximum file size: $1',
2187 'upload-description' => 'File description',
2188 'upload-options' => 'Upload options',
2189 'watchthisupload' => 'Watch this file',
2190 'filewasdeleted' => 'A file of this name has been previously uploaded and subsequently deleted.
2191 You should check the $1 before proceeding to upload it again.',
2192 'upload-wasdeleted' => "'''Warning: You are uploading a file that was previously deleted.'''
2193
2194 You should consider whether it is appropriate to continue uploading this file.
2195 The deletion log for this file is provided here for convenience:",
2196 '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.
2197 Please choose a more descriptive name for your file.",
2198 'filename-prefix-blacklist' => ' #<!-- leave this line exactly as it is --> <pre>
2199 # Syntax is as follows:
2200 # * Everything from a "#" character to the end of the line is a comment
2201 # * Every non-blank line is a prefix for typical file names assigned automatically by digital cameras
2202 CIMG # Casio
2203 DSC_ # Nikon
2204 DSCF # Fuji
2205 DSCN # Nikon
2206 DUW # some mobile phones
2207 IMG # generic
2208 JD # Jenoptik
2209 MGP # Pentax
2210 PICT # misc.
2211 #</pre> <!-- leave this line exactly as it is -->', # only translate this message to other languages if you have to change it
2212 'upload-success-subj' => 'Successful upload',
2213 'upload-success-msg' => 'Your upload from [$2] was successful. It is available here: [[:{{ns:file}}:$1]]',
2214 'upload-failure-subj' => 'Upload problem',
2215 'upload-failure-msg' => 'There was a problem with your upload from [$2]:
2216
2217 $1',
2218 'upload-warning-subj' => 'Upload warning',
2219 '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.',
2220
2221 'upload-proto-error' => 'Incorrect protocol',
2222 'upload-proto-error-text' => 'Remote upload requires URLs beginning with <code>http://</code> or <code>ftp://</code>.',
2223 'upload-file-error' => 'Internal error',
2224 'upload-file-error-text' => 'An internal error occurred when attempting to create a temporary file on the server.
2225 Please contact an [[Special:ListUsers/sysop|administrator]].',
2226 'upload-misc-error' => 'Unknown upload error',
2227 'upload-misc-error-text' => 'An unknown error occurred during the upload.
2228 Please verify that the URL is valid and accessible and try again.
2229 If the problem persists, contact an [[Special:ListUsers/sysop|administrator]].',
2230 'upload-too-many-redirects' => 'The URL contained too many redirects',
2231 'upload-unknown-size' => 'Unknown size',
2232 'upload-http-error' => 'An HTTP error occured: $1',
2233
2234 # ZipDirectoryReader
2235 'zip-file-open-error' => 'An error was encountered when opening the file for ZIP checks.',
2236 'zip-wrong-format' => 'The specified file was not a ZIP file.',
2237 'zip-bad' => 'The file is a corrupt or otherwise unreadable ZIP file.
2238 It cannot be properly checked for security.',
2239 'zip-unsupported' => 'The file is a ZIP file which uses ZIP features not supported by MediaWiki.
2240 It cannot be properly checked for security.',
2241
2242 # Special:UploadStash
2243 'uploadstash' => 'Upload stash',
2244 '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.',
2245 'uploadstash-clear' => 'Clear stashed files',
2246 'uploadstash-nofiles' => 'You have no stashed files.',
2247 'uploadstash-badtoken' => 'Performing of that action was unsuccessful, perhaps because your editing credentials expired. Try again.',
2248 'uploadstash-errclear' => 'Clearing the files was unsuccessful.',
2249 'uploadstash-refresh' => 'Refresh the list of files',
2250
2251 # img_auth script messages
2252 'img-auth-accessdenied' => 'Access denied',
2253 'img-auth-nopathinfo' => 'Missing PATH_INFO.
2254 Your server is not set up to pass this information.
2255 It may be CGI-based and cannot support img_auth.
2256 See http://www.mediawiki.org/wiki/Manual:Image_Authorization.',
2257 'img-auth-notindir' => 'Requested path is not in the configured upload directory.',
2258 'img-auth-badtitle' => 'Unable to construct a valid title from "$1".',
2259 'img-auth-nologinnWL' => 'You are not logged in and "$1" is not in the whitelist.',
2260 'img-auth-nofile' => 'File "$1" does not exist.',
2261 'img-auth-isdir' => 'You are trying to access a directory "$1".
2262 Only file access is allowed.',
2263 'img-auth-streaming' => 'Streaming "$1".',
2264 'img-auth-public' => 'The function of img_auth.php is to output files from a private wiki.
2265 This wiki is configured as a public wiki.
2266 For optimal security, img_auth.php is disabled.',
2267 'img-auth-noread' => 'User does not have access to read "$1".',
2268 'img-auth-bad-query-string' => 'The URL has an invalid query string.',
2269
2270 # HTTP errors
2271 'http-invalid-url' => 'Invalid URL: $1',
2272 'http-invalid-scheme' => 'URLs with the "$1" scheme are not supported.',
2273 'http-request-error' => 'HTTP request failed due to unknown error.',
2274 'http-read-error' => 'HTTP read error.',
2275 'http-timed-out' => 'HTTP request timed out.',
2276 'http-curl-error' => 'Error fetching URL: $1',
2277 'http-host-unreachable' => 'Could not reach URL.',
2278 'http-bad-status' => 'There was a problem during the HTTP request: $1 $2',
2279
2280 # Some likely curl errors. More could be added from <http://curl.haxx.se/libcurl/c/libcurl-errors.html>
2281 'upload-curl-error6' => 'Could not reach URL',
2282 'upload-curl-error6-text' => 'The URL provided could not be reached.
2283 Please double-check that the URL is correct and the site is up.',
2284 'upload-curl-error28' => 'Upload timeout',
2285 'upload-curl-error28-text' => 'The site took too long to respond.
2286 Please check the site is up, wait a short while and try again.
2287 You may want to try at a less busy time.',
2288
2289 'license' => 'Licensing:',
2290 'license-header' => 'Licensing',
2291 'nolicense' => 'None selected',
2292 'licenses' => '-', # do not translate or duplicate this message to other languages
2293 'license-nopreview' => '(Preview not available)',
2294 'upload_source_url' => ' (a valid, publicly accessible URL)',
2295 'upload_source_file' => ' (a file on your computer)',
2296
2297 # Special:ListFiles
2298 'listfiles-summary' => 'This special page shows all uploaded files.
2299 By default the last uploaded files are shown at top of the list.
2300 A click on a column header changes the sorting.',
2301 'listfiles_search_for' => 'Search for media name:',
2302 'imgfile' => 'file',
2303 'listfiles' => 'File list',
2304 'listfiles_thumb' => 'Thumbnail',
2305 'listfiles_date' => 'Date',
2306 'listfiles_name' => 'Name',
2307 'listfiles_user' => 'User',
2308 'listfiles_size' => 'Size',
2309 'listfiles_description' => 'Description',
2310 'listfiles_count' => 'Versions',
2311
2312 # File description page
2313 'file-anchor-link' => 'File',
2314 'filehist' => 'File history',
2315 'filehist-help' => 'Click on a date/time to view the file as it appeared at that time.',
2316 'filehist-deleteall' => 'delete all',
2317 'filehist-deleteone' => 'delete',
2318 'filehist-revert' => 'revert',
2319 'filehist-current' => 'current',
2320 'filehist-datetime' => 'Date/Time',
2321 'filehist-thumb' => 'Thumbnail',
2322 'filehist-thumbtext' => 'Thumbnail for version as of $1',
2323 'filehist-nothumb' => 'No thumbnail',
2324 'filehist-user' => 'User',
2325 'filehist-dimensions' => 'Dimensions',
2326 'filehist-filesize' => 'File size',
2327 'filehist-comment' => 'Comment',
2328 'filehist-missing' => 'File missing',
2329 'imagelinks' => 'File links',
2330 'linkstoimage' => 'The following {{PLURAL:$1|page links|$1 pages link}} to this file:',
2331 'linkstoimage-more' => 'More than $1 {{PLURAL:$1|page links|pages link}} to this file.
2332 The following list shows the {{PLURAL:$1|first page link|first $1 page links}} to this file only.
2333 A [[Special:WhatLinksHere/$2|full list]] is available.',
2334 'nolinkstoimage' => 'There are no pages that link to this file.',
2335 'morelinkstoimage' => 'View [[Special:WhatLinksHere/$1|more links]] to this file.',
2336 'redirectstofile' => 'The following {{PLURAL:$1|file redirects|$1 files redirect}} to this file:',
2337 'duplicatesoffile' => 'The following {{PLURAL:$1|file is a duplicate|$1 files are duplicates}} of this file ([[Special:FileDuplicateSearch/$2|more details]]):',
2338 'sharedupload' => 'This file is from $1 and may be used by other projects.',
2339 'sharedupload-desc-there' => 'This file is from $1 and may be used by other projects.
2340 Please see the [$2 file description page] for further information.',
2341 'sharedupload-desc-here' => 'This file is from $1 and may be used by other projects.
2342 The description on its [$2 file description page] there is shown below.',
2343 'shareddescriptionfollows' => '-', # do not translate or duplicate this message to other languages
2344 'filepage-nofile' => 'No file by this name exists.',
2345 'filepage-nofile-link' => 'No file by this name exists, but you can [$1 upload it].',
2346 'uploadnewversion-linktext' => 'Upload a new version of this file',
2347 'shared-repo-from' => 'from $1',
2348 'shared-repo' => 'a shared repository',
2349 'shared-repo-name-wikimediacommons' => 'Wikimedia Commons', # only translate this message to other languages if you have to change it
2350 '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
2351
2352 # File reversion
2353 'filerevert' => 'Revert $1',
2354 'filerevert-backlink' => '← $1', # only translate this message to other languages if you have to change it
2355 'filerevert-legend' => 'Revert file',
2356 'filerevert-intro' => "You are about to revert the file '''[[Media:$1|$1]]''' to the [$4 version as of $3, $2].",
2357 'filerevert-comment' => 'Reason:',
2358 'filerevert-defaultcomment' => 'Reverted to version as of $2, $1',
2359 'filerevert-submit' => 'Revert',
2360 'filerevert-success' => "'''[[Media:$1|$1]]''' has been reverted to the [$4 version as of $3, $2].",
2361 'filerevert-badversion' => 'There is no previous local version of this file with the provided timestamp.',
2362
2363 # File deletion
2364 'filedelete' => 'Delete $1',
2365 'filedelete-backlink' => '← $1', # only translate this message to other languages if you have to change it
2366 'filedelete-legend' => 'Delete file',
2367 'filedelete-intro' => "You are about to delete the file '''[[Media:$1|$1]]''' along with all of its history.",
2368 'filedelete-intro-old' => "You are deleting the version of '''[[Media:$1|$1]]''' as of [$4 $3, $2].",
2369 'filedelete-comment' => 'Reason:',
2370 'filedelete-submit' => 'Delete',
2371 'filedelete-success' => "'''$1''' has been deleted.",
2372 'filedelete-success-old' => "The version of '''[[Media:$1|$1]]''' as of $3, $2 has been deleted.",
2373 'filedelete-nofile' => "'''$1''' does not exist.",
2374 'filedelete-nofile-old' => "There is no archived version of '''$1''' with the specified attributes.",
2375 'filedelete-otherreason' => 'Other/additional reason:',
2376 'filedelete-reason-otherlist' => 'Other reason',
2377 'filedelete-reason-dropdown' => '*Common delete reasons
2378 ** Copyright violation
2379 ** Duplicated file',
2380 'filedelete-edit-reasonlist' => 'Edit delete reasons',
2381 'filedelete-maintenance' => 'Deletion and restoration of files temporarily disabled during maintenance.',
2382
2383 # MIME search
2384 'mimesearch' => 'MIME search',
2385 'mimesearch-summary' => 'This page enables the filtering of files for their MIME type.
2386 Input: contenttype/subtype, e.g. <tt>image/jpeg</tt>.',
2387 'mimetype' => 'MIME type:',
2388 'download' => 'download',
2389
2390 # Unwatched pages
2391 'unwatchedpages' => 'Unwatched pages',
2392 'unwatchedpages-summary' => '', # do not translate or duplicate this message to other languages
2393
2394 # List redirects
2395 'listredirects' => 'List of redirects',
2396 'listredirects-summary' => '', # do not translate or duplicate this message to other languages
2397
2398 # Unused templates
2399 'unusedtemplates' => 'Unused templates',
2400 'unusedtemplates-summary' => '', # do not translate or duplicate this message to other languages
2401 'unusedtemplatestext' => 'This page lists all pages in the {{ns:template}} namespace which are not included in another page.
2402 Remember to check for other links to the templates before deleting them.',
2403 'unusedtemplateswlh' => 'other links',
2404
2405 # Random page
2406 'randompage' => 'Random page',
2407 'randompage-nopages' => 'There are no pages in the following {{PLURAL:$2|namespace|namespaces}}: $1.',
2408 'randompage-url' => 'Special:Random', # do not translate or duplicate this message to other languages
2409
2410 # Random redirect
2411 'randomredirect' => 'Random redirect',
2412 'randomredirect-nopages' => 'There are no redirects in the namespace "$1".',
2413
2414 # Statistics
2415 'statistics' => 'Statistics',
2416 'statistics-summary' => '', # do not translate or duplicate this message to other languages
2417 'statistics-header-pages' => 'Page statistics',
2418 'statistics-header-edits' => 'Edit statistics',
2419 'statistics-header-views' => 'View statistics',
2420 'statistics-header-users' => 'User statistics',
2421 'statistics-header-hooks' => 'Other statistics',
2422 'statistics-articles' => 'Content pages',
2423 'statistics-pages' => 'Pages',
2424 'statistics-pages-desc' => 'All pages in the wiki, including talk pages, redirects, etc.',
2425 'statistics-files' => 'Uploaded files',
2426 'statistics-edits' => 'Page edits since {{SITENAME}} was set up',
2427 'statistics-edits-average' => 'Average edits per page',
2428 'statistics-views-total' => 'Views total',
2429 'statistics-views-total-desc' => 'Views to non-existing pages and special pages are not included',
2430 'statistics-views-peredit' => 'Views per edit',
2431 'statistics-users' => 'Registered [[Special:ListUsers|users]]',
2432 'statistics-users-active' => 'Active users',
2433 'statistics-users-active-desc' => 'Users who have performed an action in the last {{PLURAL:$1|day|$1 days}}',
2434 'statistics-mostpopular' => 'Most viewed pages',
2435 'statistics-footer' => '', # do not translate or duplicate this message to other languages
2436
2437 'disambiguations' => 'Disambiguation pages',
2438 'disambiguations-summary' => '', # do not translate or duplicate this message to other languages
2439 'disambiguationspage' => 'Template:disambig',
2440 'disambiguations-text' => "The following pages link to a '''disambiguation page'''.
2441 They should link to the appropriate topic instead.<br />
2442 A page is treated as disambiguation page if it uses a template which is linked from [[MediaWiki:Disambiguationspage]]",
2443
2444 'doubleredirects' => 'Double redirects',
2445 'doubleredirects-summary' => '', # do not translate or duplicate this message to other languages
2446 'doubleredirectstext' => 'This page lists pages which redirect to other redirect pages.
2447 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.
2448 <del>Crossed out</del> entries have been solved.',
2449 'double-redirect-fixed-move' => '[[$1]] has been moved.
2450 It now redirects to [[$2]].',
2451 'double-redirect-fixed-maintenance' => 'Fixing double redirect from [[$1]] to [[$2]].',
2452 'double-redirect-fixer' => 'Redirect fixer',
2453
2454 'brokenredirects' => 'Broken redirects',
2455 'brokenredirects-summary' => '', # do not translate or duplicate this message to other languages
2456 'brokenredirectstext' => 'The following redirects link to non-existent pages:',
2457 'brokenredirects-edit' => 'edit',
2458 'brokenredirects-delete' => 'delete',
2459
2460 'withoutinterwiki' => 'Pages without language links',
2461 'withoutinterwiki-summary' => 'The following pages do not link to other language versions.',
2462 'withoutinterwiki-legend' => 'Prefix',
2463 'withoutinterwiki-submit' => 'Show',
2464
2465 'fewestrevisions' => 'Pages with the fewest revisions',
2466 'fewestrevisions-summary' => '', # do not translate or duplicate this message to other languages
2467
2468 # Miscellaneous special pages
2469 'nbytes' => '$1 {{PLURAL:$1|byte|bytes}}',
2470 'ncategories' => '$1 {{PLURAL:$1|category|categories}}',
2471 'nlinks' => '$1 {{PLURAL:$1|link|links}}',
2472 'nmembers' => '$1 {{PLURAL:$1|member|members}}',
2473 'nrevisions' => '$1 {{PLURAL:$1|revision|revisions}}',
2474 'nviews' => '$1 {{PLURAL:$1|view|views}}',
2475 'nimagelinks' => 'Used on $1 {{PLURAL:$1|page|pages}}',
2476 'ntransclusions' => 'used on $1 {{PLURAL:$1|page|pages}}',
2477 'specialpage-empty' => 'There are no results for this report.',
2478 'lonelypages' => 'Orphaned pages',
2479 'lonelypages-summary' => '', # do not translate or duplicate this message to other languages
2480 'lonelypagestext' => 'The following pages are not linked from or transcluded into other pages in {{SITENAME}}.',
2481 'uncategorizedpages' => 'Uncategorized pages',
2482 'uncategorizedpages-summary' => '', # do not translate or duplicate this message to other languages
2483 'uncategorizedcategories' => 'Uncategorized categories',
2484 'uncategorizedcategories-summary' => '', # do not translate or duplicate this message to other languages
2485 'uncategorizedimages' => 'Uncategorized files',
2486 'uncategorizedimages-summary' => '', # do not translate or duplicate this message to other languages
2487 'uncategorizedtemplates' => 'Uncategorized templates',
2488 'uncategorizedtemplates-summary' => '', # do not translate or duplicate this message to other languages
2489 'unusedcategories' => 'Unused categories',
2490 'unusedimages' => 'Unused files',
2491 'popularpages' => 'Popular pages',
2492 'popularpages-summary' => '', # do not translate or duplicate this message to other languages
2493 'wantedcategories' => 'Wanted categories',
2494 'wantedcategories-summary' => '', # do not translate or duplicate this message to other languages
2495 'wantedpages' => 'Wanted pages',
2496 'wantedpages-summary' => '', # do not translate or duplicate this message to other languages
2497 'wantedpages-badtitle' => 'Invalid title in result set: $1',
2498 'wantedfiles' => 'Wanted files',
2499 'wantedfiles-summary' => '', # do not translate or duplicate this message to other languages
2500 'wantedtemplates' => 'Wanted templates',
2501 'wantedtemplates-summary' => '', # do not translate or duplicate this message to other languages
2502 'mostlinked' => 'Most linked-to pages',
2503 'mostlinked-summary' => '', # do not translate or duplicate this message to other languages
2504 'mostlinkedcategories' => 'Most linked-to categories',
2505 'mostlinkedcategories-summary' => '', # do not translate or duplicate this message to other languages
2506 'mostlinkedtemplates' => 'Most linked-to templates',
2507 'mostlinkedtemplates-summary' => '', # do not translate or duplicate this message to other languages
2508 'mostcategories' => 'Pages with the most categories',
2509 'mostcategories-summary' => '', # do not translate or duplicate this message to other languages
2510 'mostimages' => 'Most linked-to files',
2511 'mostimages-summary' => '', # do not translate or duplicate this message to other languages
2512 'mostrevisions' => 'Pages with the most revisions',
2513 'mostrevisions-summary' => '', # do not translate or duplicate this message to other languages
2514 'prefixindex' => 'All pages with prefix',
2515 'prefixindex-summary' => '', # do not translate or duplicate this message to other languages
2516 'shortpages' => 'Short pages',
2517 'shortpages-summary' => '', # do not translate or duplicate this message to other languages
2518 'longpages' => 'Long pages',
2519 'longpages-summary' => '', # do not translate or duplicate this message to other languages
2520 'deadendpages' => 'Dead-end pages',
2521 'deadendpages-summary' => '', # do not translate or duplicate this message to other languages
2522 'deadendpagestext' => 'The following pages do not link to other pages in {{SITENAME}}.',
2523 'protectedpages' => 'Protected pages',
2524 'protectedpages-indef' => 'Indefinite protections only',
2525 'protectedpages-summary' => '', # do not translate or duplicate this message to other languages
2526 'protectedpages-cascade' => 'Cascading protections only',
2527 'protectedpagestext' => 'The following pages are protected from moving or editing',
2528 'protectedpagesempty' => 'No pages are currently protected with these parameters.',
2529 'protectedtitles' => 'Protected titles',
2530 'protectedtitles-summary' => '', # do not translate or duplicate this message to other languages
2531 'protectedtitlestext' => 'The following titles are protected from creation',
2532 'protectedtitlesempty' => 'No titles are currently protected with these parameters.',
2533 'listusers' => 'User list',
2534 'listusers-summary' => '', # do not translate or duplicate this message to other languages
2535 'listusers-editsonly' => 'Show only users with edits',
2536 'listusers-creationsort' => 'Sort by creation date',
2537 'usereditcount' => '$1 {{PLURAL:$1|edit|edits}}',
2538 'usercreated' => 'Created on $1 at $2',
2539 'newpages' => 'New pages',
2540 'newpages-summary' => '', # do not translate or duplicate this message to other languages
2541 'newpages-username' => 'Username:',
2542 'ancientpages' => 'Oldest pages',
2543 'ancientpages-summary' => '', # do not translate or duplicate this message to other languages
2544 'move' => 'Move',
2545 'movethispage' => 'Move this page',
2546 'unusedimagestext' => 'The following files exist but are not embedded in any page.
2547 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.',
2548 'unusedcategoriestext' => 'The following category pages exist, although no other page or category makes use of them.',
2549 'notargettitle' => 'No target',
2550 'notargettext' => 'You have not specified a target page or user to perform this function on.',
2551 'nopagetitle' => 'No such target page',
2552 'nopagetext' => 'The target page you have specified does not exist.',
2553 'pager-newer-n' => '{{PLURAL:$1|newer 1|newer $1}}',
2554 'pager-older-n' => '{{PLURAL:$1|older 1|older $1}}',
2555 'suppress' => 'Oversight',
2556 'querypage-disabled' => 'This special page is disabled for performance reasons.',
2557
2558 # Book sources
2559 'booksources' => 'Book sources',
2560 'booksources-summary' => '', # do not translate or duplicate this message to other languages
2561 'booksources-search-legend' => 'Search for book sources',
2562 'booksources-isbn' => 'ISBN:', # only translate this message to other languages if you have to change it
2563 'booksources-go' => 'Go',
2564 '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:',
2565 'booksources-invalid-isbn' => 'The given ISBN does not appear to be valid; check for errors copying from the original source.',
2566
2567 # Magic words
2568 'rfcurl' => 'http://tools.ietf.org/html/rfc$1', # do not translate or duplicate this message to other languages
2569 'pubmedurl' => 'http://www.ncbi.nlm.nih.gov/pubmed/$1?dopt=Abstract', # do not translate or duplicate this message to other languages
2570
2571 # Special:Log
2572 'specialloguserlabel' => 'User:',
2573 'speciallogtitlelabel' => 'Title:',
2574 'log' => 'Logs',
2575 'all-logs-page' => 'All public logs',
2576 'alllogstext' => 'Combined display of all available logs of {{SITENAME}}.
2577 You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).',
2578 'logempty' => 'No matching items in log.',
2579 'log-title-wildcard' => 'Search titles starting with this text',
2580
2581 # Special:AllPages
2582 'allpages' => 'All pages',
2583 'allpages-summary' => '', # do not translate or duplicate this message to other languages
2584 'alphaindexline' => '$1 to $2',
2585 'nextpage' => 'Next page ($1)',
2586 'prevpage' => 'Previous page ($1)',
2587 'allpagesfrom' => 'Display pages starting at:',
2588 'allpagesto' => 'Display pages ending at:',
2589 'allarticles' => 'All pages',
2590 'allinnamespace' => 'All pages ($1 namespace)',
2591 'allnotinnamespace' => 'All pages (not in $1 namespace)',
2592 'allpagesprev' => 'Previous',
2593 'allpagesnext' => 'Next',
2594 'allpagessubmit' => 'Go',
2595 'allpagesprefix' => 'Display pages with prefix:',
2596 'allpagesbadtitle' => 'The given page title was invalid or had an inter-language or inter-wiki prefix.
2597 It may contain one or more characters which cannot be used in titles.',
2598 'allpages-bad-ns' => '{{SITENAME}} does not have namespace "$1".',
2599
2600 # Special:Categories
2601 'categories' => 'Categories',
2602 'categories-summary' => '', # do not translate or duplicate this message to other languages
2603 'categoriespagetext' => 'The following {{PLURAL:$1|category contains|categories contain}} pages or media.
2604 [[Special:UnusedCategories|Unused categories]] are not shown here.
2605 Also see [[Special:WantedCategories|wanted categories]].',
2606 'categoriesfrom' => 'Display categories starting at:',
2607 'special-categories-sort-count' => 'sort by count',
2608 'special-categories-sort-abc' => 'sort alphabetically',
2609
2610 # Special:DeletedContributions
2611 'deletedcontributions' => 'Deleted user contributions',
2612 'deletedcontributions-title' => 'Deleted user contributions',
2613 'sp-deletedcontributions-contribs' => 'contributions',
2614
2615 # Special:LinkSearch
2616 'linksearch' => 'External links',
2617 'linksearch-pat' => 'Search pattern:',
2618 'linksearch-ns' => 'Namespace:',
2619 'linksearch-ok' => 'Search',
2620 'linksearch-text' => 'Wildcards such as "*.wikipedia.org" may be used.<br />
2621 Supported protocols: <tt>$1</tt>',
2622 'linksearch-line' => '$1 is linked from $2',
2623 'linksearch-error' => 'Wildcards may appear only at the start of the hostname.',
2624
2625 # Special:ListUsers
2626 'listusersfrom' => 'Display users starting at:',
2627 'listusers-submit' => 'Show',
2628 'listusers-noresult' => 'No user found.',
2629 'listusers-blocked' => '(blocked)',
2630
2631 # Special:ActiveUsers
2632 'activeusers' => 'Active users list',
2633 'activeusers-summary' => '', # do not translate or duplicate this message to other languages
2634 'activeusers-intro' => 'This is a list of users who had some kind of activity within the last $1 {{PLURAL:$1|day|days}}.',
2635 'activeusers-count' => '$1 {{PLURAL:$1|edit|edits}} in the last {{PLURAL:$3|day|$3 days}}',
2636 'activeusers-from' => 'Display users starting at:',
2637 'activeusers-hidebots' => 'Hide bots',
2638 'activeusers-hidesysops' => 'Hide administrators',
2639 'activeusers-noresult' => 'No users found.',
2640
2641 # Special:Log/newusers
2642 'newuserlogpage' => 'User creation log',
2643 'newuserlogpagetext' => 'This is a log of user creations.',
2644 'newuserlogentry' => '', # do not translate or duplicate this message to other languages
2645 'newuserlog-byemail' => 'password sent by e-mail',
2646 'newuserlog-create-entry' => 'New user account',
2647 'newuserlog-create2-entry' => 'created new account $1',
2648 'newuserlog-autocreate-entry' => 'Account created automatically',
2649
2650 # Special:ListGroupRights
2651 'listgrouprights' => 'User group rights',
2652 'listgrouprights-summary' => 'The following is a list of user groups defined on this wiki, with their associated access rights.
2653 There may be [[{{MediaWiki:Listgrouprights-helppage}}|additional information]] about individual rights.',
2654 'listgrouprights-key' => '* <span class="listgrouprights-granted">Granted right</span>
2655 * <span class="listgrouprights-revoked">Revoked right</span>',
2656 'listgrouprights-group' => 'Group',
2657 'listgrouprights-rights' => 'Rights',
2658 'listgrouprights-helppage' => 'Help:Group rights',
2659 'listgrouprights-members' => '(list of members)',
2660 '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
2661 '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
2662 'listgrouprights-addgroup' => 'Add {{PLURAL:$2|group|groups}}: $1',
2663 'listgrouprights-removegroup' => 'Remove {{PLURAL:$2|group|groups}}: $1',
2664 'listgrouprights-addgroup-all' => 'Add all groups',
2665 'listgrouprights-removegroup-all' => 'Remove all groups',
2666 'listgrouprights-addgroup-self' => 'Add {{PLURAL:$2|group|groups}} to own account: $1',
2667 'listgrouprights-removegroup-self' => 'Remove {{PLURAL:$2|group|groups}} from own account: $1',
2668 'listgrouprights-addgroup-self-all' => 'Add all groups to own account',
2669 'listgrouprights-removegroup-self-all' => 'Remove all groups from own account',
2670
2671 # E-mail user
2672 'mailnologin' => 'No send address',
2673 '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.',
2674 'emailuser' => 'E-mail this user',
2675 'emailpage' => 'E-mail user',
2676 'emailpagetext' => 'You can use the form below to send an e-mail message to this user.
2677 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.',
2678 'usermailererror' => 'Mail object returned error:',
2679 'defemailsubject' => '{{SITENAME}} e-mail',
2680 'usermaildisabled' => 'User e-mail disabled',
2681 'usermaildisabledtext' => 'You cannot send e-mail to other users on this wiki',
2682 'noemailtitle' => 'No e-mail address',
2683 'noemailtext' => 'This user has not specified a valid e-mail address.',
2684 'nowikiemailtitle' => 'No e-mail allowed',
2685 'nowikiemailtext' => 'This user has chosen not to receive e-mail from other users.',
2686 'emailnotarget' => 'Non-existent or invalid username for recipient.',
2687 'emailtarget' => 'Enter username of recipient',
2688 'emailusername' => 'Username:',
2689 'emailusernamesubmit' => 'Submit',
2690 'email-legend' => 'Send an e-mail to another {{SITENAME}} user',
2691 'emailfrom' => 'From:',
2692 'emailto' => 'To:',
2693 'emailsubject' => 'Subject:',
2694 'emailmessage' => 'Message:',
2695 'emailsend' => 'Send',
2696 'emailccme' => 'E-mail me a copy of my message.',
2697 'emailccsubject' => 'Copy of your message to $1: $2',
2698 'emailsent' => 'E-mail sent',
2699 'emailsenttext' => 'Your e-mail message has been sent.',
2700 'emailuserfooter' => 'This e-mail was sent by $1 to $2 by the "E-mail user" function at {{SITENAME}}.',
2701
2702 # User Messenger
2703 'usermessage-summary' => 'Leaving system message.',
2704 'usermessage-editor' => 'System messenger',
2705 'usermessage-template' => 'MediaWiki:UserMessage', # only translate this message to other languages if you have to change it
2706
2707 # Watchlist
2708 'watchlist' => 'My watchlist',
2709 'mywatchlist' => 'My watchlist',
2710 'watchlistfor2' => 'For $1 $2',
2711 'nowatchlist' => 'You have no items on your watchlist.',
2712 'watchlistanontext' => 'Please $1 to view or edit items on your watchlist.',
2713 'watchnologin' => 'Not logged in',
2714 'watchnologintext' => 'You must be [[Special:UserLogin|logged in]] to modify your watchlist.',
2715 'addedwatch' => 'Added to watchlist',
2716 'addedwatchtext' => "The page \"[[:\$1]]\" has been added to your [[Special:Watchlist|watchlist]].
2717 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.",
2718 'removedwatch' => 'Removed from watchlist',
2719 'removedwatchtext' => 'The page "[[:$1]]" has been removed from [[Special:Watchlist|your watchlist]].',
2720 'watch' => 'Watch',
2721 'watchthispage' => 'Watch this page',
2722 'unwatch' => 'Unwatch',
2723 'unwatchthispage' => 'Stop watching',
2724 'notanarticle' => 'Not a content page',
2725 'notvisiblerev' => 'The last revision by a different user has been deleted',
2726 'watchnochange' => 'None of your watched items were edited in the time period displayed.',
2727 'watchlist-details' => '{{PLURAL:$1|$1 page|$1 pages}} on your watchlist, not counting talk pages.',
2728 'wlheader-enotif' => '* E-mail notification is enabled.',
2729 'wlheader-showupdated' => "* Pages which have been changed since you last visited them are shown in '''bold'''",
2730 'watchmethod-recent' => 'checking recent edits for watched pages',
2731 'watchmethod-list' => 'checking watched pages for recent edits',
2732 'watchlistcontains' => 'Your watchlist contains $1 {{PLURAL:$1|page|pages}}.',
2733 'iteminvalidname' => "Problem with item '$1', invalid name...",
2734 'wlnote' => "Below {{PLURAL:$1|is the last change|are the last '''$1''' changes}} in the last {{PLURAL:$2|hour|'''$2''' hours}}.",
2735 'wlshowlast' => 'Show last $1 hours $2 days $3',
2736 'watchlist-options' => 'Watchlist options',
2737
2738 # Displayed when you click the "watch" button and it is in the process of watching
2739 'watching' => 'Watching...',
2740 'unwatching' => 'Unwatching...',
2741
2742 'enotif_mailer' => '{{SITENAME}} notification mailer',
2743 'enotif_reset' => 'Mark all pages visited',
2744 'enotif_newpagetext' => 'This is a new page.',
2745 'enotif_impersonal_salutation' => '{{SITENAME}} user',
2746 'changed' => 'changed',
2747 'created' => 'created',
2748 'enotif_subject' => '{{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED by $PAGEEDITOR',
2749 'enotif_lastvisited' => 'See $1 for all changes since your last visit.',
2750 'enotif_lastdiff' => 'See $1 to view this change.',
2751 'enotif_anon_editor' => 'anonymous user $1',
2752 'enotif_body' => 'Dear $WATCHINGUSERNAME,
2753
2754
2755 The {{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED on $PAGEEDITDATE by $PAGEEDITOR, see $PAGETITLE_URL for the current revision.
2756
2757 $NEWPAGE
2758
2759 Editor\'s summary: $PAGESUMMARY $PAGEMINOREDIT
2760
2761 Contact the editor:
2762 mail: $PAGEEDITOR_EMAIL
2763 wiki: $PAGEEDITOR_WIKI
2764
2765 There will be no other notifications in case of further changes unless you visit this page.
2766 You could also reset the notification flags for all your watched pages on your watchlist.
2767
2768 Your friendly {{SITENAME}} notification system
2769
2770 --
2771 To change your watchlist settings, visit
2772 {{fullurl:{{#special:Watchlist}}/edit}}
2773
2774 To delete the page from your watchlist, visit
2775 $UNWATCHURL
2776
2777 Feedback and further assistance:
2778 {{fullurl:{{MediaWiki:Helppage}}}}',
2779
2780 # Delete
2781 'deletepage' => 'Delete page',
2782 'confirm' => 'Confirm',
2783 'excontent' => 'content was: "$1"',
2784 'excontentauthor' => 'content was: "$1" (and the only contributor was "[[Special:Contributions/$2|$2]]")',
2785 'exbeforeblank' => 'content before blanking was: "$1"',
2786 'exblank' => 'page was empty',
2787 'delete-confirm' => 'Delete "$1"',
2788 'delete-backlink' => '← $1', # only translate this message to other languages if you have to change it
2789 'delete-legend' => 'Delete',
2790 'historywarning' => "'''Warning:''' The page you are about to delete has a history with approximately $1 {{PLURAL:$1|revision|revisions}}:",
2791 'confirmdeletetext' => 'You are about to delete a page along with all of its history.
2792 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]].',
2793 'actioncomplete' => 'Action complete',
2794 'actionfailed' => 'Action failed',
2795 'deletedtext' => '"<nowiki>$1</nowiki>" has been deleted.
2796 See $2 for a record of recent deletions.',
2797 'deletedarticle' => 'deleted "[[$1]]"',
2798 'suppressedarticle' => 'suppressed "[[$1]]"',
2799 'dellogpage' => 'Deletion log',
2800 'dellogpagetext' => 'Below is a list of the most recent deletions.',
2801 'deletionlog' => 'deletion log',
2802 'reverted' => 'Reverted to earlier revision',
2803 'deletecomment' => 'Reason:',
2804 'deleteotherreason' => 'Other/additional reason:',
2805 'deletereasonotherlist' => 'Other reason',
2806 'deletereason-dropdown' => '*Common delete reasons
2807 ** Author request
2808 ** Copyright violation
2809 ** Vandalism',
2810 'delete-edit-reasonlist' => 'Edit deletion reasons',
2811 'delete-toobig' => 'This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.
2812 Deletion of such pages has been restricted to prevent accidental disruption of {{SITENAME}}.',
2813 'delete-warning-toobig' => 'This page has a large edit history, over $1 {{PLURAL:$1|revision|revisions}}.
2814 Deleting it may disrupt database operations of {{SITENAME}};
2815 proceed with caution.',
2816
2817 # Rollback
2818 'rollback' => 'Roll back edits',
2819 'rollback_short' => 'Rollback',
2820 'rollbacklink' => 'rollback',
2821 'rollbackfailed' => 'Rollback failed',
2822 'cantrollback' => 'Cannot revert edit;
2823 last contributor is only author of this page.',
2824 'alreadyrolled' => 'Cannot rollback last edit of [[:$1]] by [[User:$2|$2]] ([[User talk:$2|talk]]{{int:pipe-separator}}[[Special:Contributions/$2|{{int:contribslink}}]]);
2825 someone else has edited or rolled back the page already.
2826
2827 The last edit to the page was by [[User:$3|$3]] ([[User talk:$3|talk]]{{int:pipe-separator}}[[Special:Contributions/$3|{{int:contribslink}}]]).',
2828 'editcomment' => "The edit summary was: \"''\$1''\".",
2829 'revertpage' => 'Reverted edits by [[Special:Contributions/$2|$2]] ([[User talk:$2|talk]]) to last revision by [[User:$1|$1]]',
2830 'revertpage-nouser' => 'Reverted edits by (username removed) to last revision by [[User:$1|$1]]',
2831 'rollback-success' => 'Reverted edits by $1;
2832 changed back to last revision by $2.',
2833
2834 # Edit tokens
2835 'sessionfailure-title' => 'Session failure',
2836 'sessionfailure' => 'There seems to be a problem with your login session;
2837 this action has been canceled as a precaution against session hijacking.
2838 Go back to the previous page, reload that page and then try again.',
2839
2840 # Protect
2841 'protectlogpage' => 'Protection log',
2842 'protectlogtext' => 'Below is a list of page protections and page unprotections.
2843 See the [[Special:ProtectedPages|protected pages list]] for the list of currently operational page protections.',
2844 'protectedarticle' => 'protected "[[$1]]"',
2845 'modifiedarticleprotection' => 'changed protection level for "[[$1]]"',
2846 'unprotectedarticle' => 'unprotected "[[$1]]"',
2847 'movedarticleprotection' => 'moved protection settings from "[[$2]]" to "[[$1]]"',
2848 'protect-title' => 'Change protection level for "$1"',
2849 'prot_1movedto2' => '[[$1]] moved to [[$2]]',
2850 'protect-backlink' => '← $1', # only translate this message to other languages if you have to change it
2851 'protect-legend' => 'Confirm protection',
2852 'protectcomment' => 'Reason:',
2853 'protectexpiry' => 'Expires:',
2854 'protect_expiry_invalid' => 'Expiry time is invalid.',
2855 'protect_expiry_old' => 'Expiry time is in the past.',
2856 'protect-unchain-permissions' => 'Unlock further protect options',
2857 'protect-text' => "You may view and change the protection level here for the page '''<nowiki>$1</nowiki>'''.",
2858 'protect-locked-blocked' => "You cannot change protection levels while blocked.
2859 Here are the current settings for the page '''$1''':",
2860 'protect-locked-dblock' => "Protection levels cannot be changed due to an active database lock.
2861 Here are the current settings for the page '''$1''':",
2862 'protect-locked-access' => "Your account does not have permission to change page protection levels.
2863 Here are the current settings for the page '''$1''':",
2864 '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.
2865 You can change this page's protection level, but it will not affect the cascading protection.",
2866 'protect-default' => 'Allow all users',
2867 'protect-fallback' => 'Require "$1" permission',
2868 'protect-level-autoconfirmed' => 'Block new and unregistered users',
2869 'protect-level-sysop' => 'Administrators only',
2870 'protect-summary-cascade' => 'cascading',
2871 'protect-expiring' => 'expires $1 (UTC)',
2872 'protect-expiry-indefinite' => 'indefinite',
2873 'protect-cascade' => 'Protect pages included in this page (cascading protection)',
2874 'protect-cantedit' => 'You cannot change the protection levels of this page, because you do not have permission to edit it.',
2875 'protect-othertime' => 'Other time:',
2876 'protect-othertime-op' => 'other time',
2877 'protect-existing-expiry' => 'Existing expiry time: $3, $2',
2878 'protect-otherreason' => 'Other/additional reason:',
2879 'protect-otherreason-op' => 'Other reason',
2880 'protect-dropdown' => '*Common protection reasons
2881 ** Excessive vandalism
2882 ** Excessive spamming
2883 ** Counter-productive edit warring
2884 ** High traffic page',
2885 'protect-edit-reasonlist' => 'Edit protection reasons',
2886 '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',
2887 'restriction-type' => 'Permission:',
2888 'restriction-level' => 'Restriction level:',
2889 'minimum-size' => 'Min size',
2890 'maximum-size' => 'Max size:',
2891 'pagesize' => '(bytes)',
2892
2893 # Restrictions (nouns)
2894 'restriction-edit' => 'Edit',
2895 'restriction-move' => 'Move',
2896 'restriction-create' => 'Create',
2897 'restriction-upload' => 'Upload',
2898
2899 # Restriction levels
2900 'restriction-level-sysop' => 'fully protected',
2901 'restriction-level-autoconfirmed' => 'semi protected',
2902 'restriction-level-all' => 'any level',
2903
2904 # Undelete
2905 'undelete' => 'View deleted pages',
2906 'undeletepage' => 'View and restore deleted pages',
2907 'undeletepagetitle' => "'''The following consists of deleted revisions of [[:$1|$1]]'''.",
2908 'viewdeletedpage' => 'View deleted pages',
2909 '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.
2910 The archive may be periodically cleaned out.',
2911 'undelete-fieldset-title' => 'Restore revisions',
2912 'undeleteextrahelp' => "To restore the page's entire history, leave all checkboxes deselected and click '''''{{int:undeletebtn}}'''''.
2913 To perform a selective restoration, check the boxes corresponding to the revisions to be restored, and click '''''{{int:undeletebtn}}'''''.
2914 Clicking '''''{{int:undeletereset}}''''' will clear the comment field and all checkboxes.",
2915 'undeleterevisions' => '$1 {{PLURAL:$1|revision|revisions}} archived',
2916 'undeletehistory' => 'If you restore the page, all revisions will be restored to the history.
2917 If a new page with the same name has been created since the deletion, the restored revisions will appear in the prior history.',
2918 'undeleterevdel' => 'Undeletion will not be performed if it will result in the top page or file revision being partially deleted.
2919 In such cases, you must uncheck or unhide the newest deleted revision.',
2920 'undeletehistorynoadmin' => 'This page has been deleted.
2921 The reason for deletion is shown in the summary below, along with details of the users who had edited this page before deletion.
2922 The actual text of these deleted revisions is only available to administrators.',
2923 'undelete-revision' => 'Deleted revision of $1 (as of $4, at $5) by $3:',
2924 'undeleterevision-missing' => 'Invalid or missing revision.
2925 You may have a bad link, or the revision may have been restored or removed from the archive.',
2926 'undelete-nodiff' => 'No previous revision found.',
2927 'undeletebtn' => 'Restore',
2928 'undeletelink' => 'view/restore',
2929 'undeleteviewlink' => 'view',
2930 'undeletereset' => 'Reset',
2931 'undeleteinvert' => 'Invert selection',
2932 'undeletecomment' => 'Reason:',
2933 'undeletedarticle' => 'restored "[[$1]]"',
2934 'undeletedrevisions' => '{{PLURAL:$1|1 revision|$1 revisions}} restored',
2935 'undeletedrevisions-files' => '{{PLURAL:$1|1 revision|$1 revisions}} and {{PLURAL:$2|1 file|$2 files}} restored',
2936 'undeletedfiles' => '{{PLURAL:$1|1 file|$1 files}} restored',
2937 'cannotundelete' => 'Undelete failed;
2938 someone else may have undeleted the page first.',
2939 'undeletedpage' => "'''$1 has been restored'''
2940
2941 Consult the [[Special:Log/delete|deletion log]] for a record of recent deletions and restorations.",
2942 'undelete-header' => 'See [[Special:Log/delete|the deletion log]] for recently deleted pages.',
2943 'undelete-search-box' => 'Search deleted pages',
2944 'undelete-search-prefix' => 'Show pages starting with:',
2945 'undelete-search-submit' => 'Search',
2946 'undelete-no-results' => 'No matching pages found in the deletion archive.',
2947 'undelete-filename-mismatch' => 'Cannot undelete file revision with timestamp $1: filename mismatch',
2948 'undelete-bad-store-key' => 'Cannot undelete file revision with timestamp $1: file was missing before deletion.',
2949 'undelete-cleanup-error' => 'Error deleting unused archive file "$1".',
2950 'undelete-missing-filearchive' => 'Unable to restore file archive ID $1 because it is not in the database.
2951 It may have already been undeleted.',
2952 'undelete-error-short' => 'Error undeleting file: $1',
2953 'undelete-error-long' => 'Errors were encountered while undeleting the file:
2954
2955 $1',
2956 'undelete-show-file-confirm' => 'Are you sure you want to view the deleted revision of the file "<nowiki>$1</nowiki>" from $2 at $3?',
2957 'undelete-show-file-submit' => 'Yes',
2958
2959 # Namespace form on various pages
2960 'namespace' => 'Namespace:',
2961 'invert' => 'Invert selection',
2962 'namespace_association' => 'Associated namespace',
2963 'blanknamespace' => '(Main)',
2964
2965 # Contributions
2966 'contributions' => 'User contributions',
2967 'contributions-title' => 'User contributions for $1',
2968 'mycontris' => 'My contributions',
2969 'contribsub2' => 'For $1 ($2)',
2970 'nocontribs' => 'No changes were found matching these criteria.',
2971 'uctop' => '(top)',
2972 'month' => 'From month (and earlier):',
2973 'year' => 'From year (and earlier):',
2974
2975 'sp-contributions-newbies' => 'Show contributions of new accounts only',
2976 'sp-contributions-newbies-sub' => 'For new accounts',
2977 'sp-contributions-newbies-title' => 'User contributions for new accounts',
2978 'sp-contributions-blocklog' => 'block log',
2979 'sp-contributions-deleted' => 'deleted user contributions',
2980 'sp-contributions-uploads' => 'uploads',
2981 'sp-contributions-logs' => 'logs',
2982 'sp-contributions-talk' => 'talk',
2983 'sp-contributions-userrights' => 'user rights management',
2984 'sp-contributions-blocked-notice' => 'This user is currently blocked.
2985 The latest block log entry is provided below for reference:',
2986 'sp-contributions-blocked-notice-anon' => 'This IP address is currently blocked.
2987 The latest block log entry is provided below for reference:',
2988 'sp-contributions-search' => 'Search for contributions',
2989 'sp-contributions-username' => 'IP address or username:',
2990 'sp-contributions-toponly' => 'Only show edits that are latest revisions',
2991 'sp-contributions-submit' => 'Search',
2992 'sp-contributions-explain' => '', # only translate this message to other languages if you have to change it
2993 'sp-contributions-footer' => '-', # do not translate or duplicate this message to other languages
2994 'sp-contributions-footer-anon' => '-', # do not translate or duplicate this message to other languages
2995 'sp-contributions-filtered' => 'contributions page filtered for namespace or RevisionDeleted edits',
2996 'sp-contributions-unfiltered' => 'contributions page unfiltered',
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
3171 # Move page
3172 'move-page' => 'Move $1',
3173 'move-page-legend' => 'Move page',
3174 'movepagetext' => "Using the form below will rename a page, moving all of its history to the new name.
3175 The old title will become a redirect page to the new title.
3176 You can update redirects that point to the original title automatically.
3177 If you choose not to, be sure to check for [[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken redirects]].
3178 You are responsible for making sure that links continue to point where they are supposed to go.
3179
3180 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.
3181 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.
3182
3183 '''Warning!'''
3184 This can be a drastic and unexpected change for a popular page;
3185 please be sure you understand the consequences of this before proceeding.",
3186 'movepagetext-noredirectfixer' => "Using the form below will rename a page, moving all of its history to the new name.
3187 The old title will become a redirect page to the new title.
3188 Be sure to check for [[Special:DoubleRedirects|double]] or [[Special:BrokenRedirects|broken redirects]].
3189 You are responsible for making sure that links continue to point where they are supposed to go.
3190
3191 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.
3192 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.
3193
3194 '''Warning!'''
3195 This can be a drastic and unexpected change for a popular page;
3196 please be sure you understand the consequences of this before proceeding.",
3197 'movepagetalktext' => "The associated talk page will be automatically moved along with it '''unless:'''
3198 *A non-empty talk page already exists under the new name, or
3199 *You uncheck the box below.
3200
3201 In those cases, you will have to move or merge the page manually if desired.",
3202 'movearticle' => 'Move page:',
3203 '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.",
3204 'movenologin' => 'Not logged in',
3205 'movenologintext' => 'You must be a registered user and [[Special:UserLogin|logged in]] to move a page.',
3206 'movenotallowed' => 'You do not have permission to move pages.',
3207 'movenotallowedfile' => 'You do not have permission to move files.',
3208 'cant-move-user-page' => 'You do not have permission to move user pages (apart from subpages).',
3209 'cant-move-to-user-page' => 'You do not have permission to move a page to a user page (except to a user subpage).',
3210 'newtitle' => 'To new title:',
3211 'move-watch' => 'Watch source page and target page',
3212 'movepagebtn' => 'Move page',
3213 'pagemovedsub' => 'Move succeeded',
3214 'movepage-moved' => '\'\'\'"$1" has been moved to "$2"\'\'\'',
3215 'movepage-moved-redirect' => 'A redirect has been created.',
3216 'movepage-moved-noredirect' => 'The creation of a redirect has been suppressed.',
3217 'articleexists' => 'A page of that name already exists, or the name you have chosen is not valid.
3218 Please choose another name.',
3219 'cantmove-titleprotected' => 'You cannot move a page to this location, because the new title has been protected from creation',
3220 'talkexists' => "'''The page itself was moved successfully, but the talk page could not be moved because one already exists at the new title.
3221 Please merge them manually.'''",
3222 'movedto' => 'moved to',
3223 'movetalk' => 'Move associated talk page',
3224 'move-subpages' => 'Move subpages (up to $1)',
3225 'move-talk-subpages' => 'Move subpages of talk page (up to $1)',
3226 'movepage-page-exists' => 'The page $1 already exists and cannot be automatically overwritten.',
3227 'movepage-page-moved' => 'The page $1 has been moved to $2.',
3228 'movepage-page-unmoved' => 'The page $1 could not be moved to $2.',
3229 'movepage-max-pages' => 'The maximum of $1 {{PLURAL:$1|page|pages}} has been moved and no more will be moved automatically.',
3230 '1movedto2' => 'moved [[$1]] to [[$2]]',
3231 '1movedto2_redir' => 'moved [[$1]] to [[$2]] over redirect',
3232 'move-redirect-suppressed' => 'redirect suppressed',
3233 'movelogpage' => 'Move log',
3234 'movelogpagetext' => 'Below is a list of all page moves.',
3235 'movesubpage' => '{{PLURAL:$1|Subpage|Subpages}}',
3236 'movesubpagetext' => 'This page has $1 {{PLURAL:$1|subpage|subpages}} shown below.',
3237 'movenosubpage' => 'This page has no subpages.',
3238 'movereason' => 'Reason:',
3239 'revertmove' => 'revert',
3240 'delete_and_move' => 'Delete and move',
3241 'delete_and_move_text' => '== Deletion required ==
3242 The destination page "[[:$1]]" already exists.
3243 Do you want to delete it to make way for the move?',
3244 'delete_and_move_confirm' => 'Yes, delete the page',
3245 'delete_and_move_reason' => 'Deleted to make way for move',
3246 'selfmove' => 'Source and destination titles are the same;
3247 cannot move a page over itself.',
3248 'immobile-source-namespace' => 'Cannot move pages in namespace "$1"',
3249 'immobile-target-namespace' => 'Cannot move pages into namespace "$1"',
3250 'immobile-target-namespace-iw' => 'Interwiki link is not a valid target for page move.',
3251 'immobile-source-page' => 'This page is not movable.',
3252 'immobile-target-page' => 'Cannot move to that destination title.',
3253 'imagenocrossnamespace' => 'Cannot move file to non-file namespace',
3254 'nonfile-cannot-move-to-file' => 'Cannot move non-file to file namespace',
3255 'imagetypemismatch' => 'The new file extension does not match its type',
3256 'imageinvalidfilename' => 'The target file name is invalid',
3257 'fix-double-redirects' => 'Update any redirects that point to the original title',
3258 'move-leave-redirect' => 'Leave a redirect behind',
3259 'protectedpagemovewarning' => "'''Warning:''' This page has been protected so that only users with administrator privileges can move it.
3260 The latest log entry is provided below for reference:",
3261 'semiprotectedpagemovewarning' => "'''Note:''' This page has been protected so that only registered users can move it.
3262 The latest log entry is provided below for reference:",
3263 'move-over-sharedrepo' => '== File exists ==
3264 [[:$1]] exists on a shared repository. Moving a file to this title will override the shared file.',
3265 'file-exists-sharedrepo' => 'The file name chosen is already in use on a shared repository.
3266 Please choose another name.',
3267
3268 # Export
3269 'export' => 'Export pages',
3270 'exporttext' => 'You can export the text and editing history of a particular page or set of pages wrapped in some XML.
3271 This can be imported into another wiki using MediaWiki via the [[Special:Import|import page]].
3272
3273 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.
3274
3275 In the latter case you can also use a link, for example [[{{#Special:Export}}/{{MediaWiki:Mainpage}}]] for the page "[[{{MediaWiki:Mainpage}}]]".',
3276 'exportcuronly' => 'Include only the current revision, not the full history',
3277 'exportnohistory' => "----
3278 '''Note:''' Exporting the full history of pages through this form has been disabled due to performance reasons.",
3279 'export-submit' => 'Export',
3280 'export-addcattext' => 'Add pages from category:',
3281 'export-addcat' => 'Add',
3282 'export-addnstext' => 'Add pages from namespace:',
3283 'export-addns' => 'Add',
3284 'export-download' => 'Save as file',
3285 'export-templates' => 'Include templates',
3286 'export-pagelinks' => 'Include linked pages to a depth of:',
3287
3288 # Namespace 8 related
3289 'allmessages' => 'System messages',
3290 'allmessagesname' => 'Name',
3291 'allmessagesdefault' => 'Default message text',
3292 'allmessagescurrent' => 'Current message text',
3293 'allmessagestext' => 'This is a list of system messages available in the MediaWiki namespace.
3294 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.',
3295 'allmessagesnotsupportedDB' => "This page cannot be used because '''\$wgUseDatabaseMessages''' has been disabled.",
3296 'allmessages-filter-legend' => 'Filter',
3297 'allmessages-filter' => 'Filter by customisation state:',
3298 'allmessages-filter-unmodified' => 'Unmodified',
3299 'allmessages-filter-all' => 'All',
3300 'allmessages-filter-modified' => 'Modified',
3301 'allmessages-prefix' => 'Filter by prefix:',
3302 'allmessages-language' => 'Language:',
3303 'allmessages-filter-submit' => 'Go',
3304
3305 # Thumbnails
3306 'thumbnail-more' => 'Enlarge',
3307 'filemissing' => 'File missing',
3308 'thumbnail_error' => 'Error creating thumbnail: $1',
3309 'djvu_page_error' => 'DjVu page out of range',
3310 'djvu_no_xml' => 'Unable to fetch XML for DjVu file',
3311 'thumbnail_invalid_params' => 'Invalid thumbnail parameters',
3312 'thumbnail_dest_directory' => 'Unable to create destination directory',
3313 'thumbnail_image-type' => 'Image type not supported',
3314 'thumbnail_gd-library' => 'Incomplete GD library configuration: missing function $1',
3315 'thumbnail_image-missing' => 'File seems to be missing: $1',
3316
3317 # Special:Import
3318 'import' => 'Import pages',
3319 'importinterwiki' => 'Transwiki import',
3320 'import-interwiki-text' => "Select a wiki and page title to import.
3321 Revision dates and editors' names will be preserved.
3322 All transwiki import actions are logged at the [[Special:Log/import|import log]].",
3323 'import-interwiki-source' => 'Source wiki/page:',
3324 'import-interwiki-history' => 'Copy all history revisions for this page',
3325 'import-interwiki-templates' => 'Include all templates',
3326 'import-interwiki-submit' => 'Import',
3327 'import-interwiki-namespace' => 'Destination namespace:',
3328 'import-upload-filename' => 'Filename:',
3329 'import-comment' => 'Comment:',
3330 'importtext' => 'Please export the file from the source wiki using the [[Special:Export|export utility]].
3331 Save it to your computer and upload it here.',
3332 'importstart' => 'Importing pages...',
3333 'import-revision-count' => '$1 {{PLURAL:$1|revision|revisions}}',
3334 'importnopages' => 'No pages to import.',
3335 'imported-log-entries' => 'Imported $1 {{PLURAL:$1|log entry|log entries}}.',
3336 'importfailed' => 'Import failed: <nowiki>$1</nowiki>',
3337 'importunknownsource' => 'Unknown import source type',
3338 'importcantopen' => 'Could not open import file',
3339 'importbadinterwiki' => 'Bad interwiki link',
3340 'importnotext' => 'Empty or no text',
3341 'importsuccess' => 'Import finished!',
3342 'importhistoryconflict' => 'Conflicting history revision exists (may have imported this page before)',
3343 'importnosources' => 'No transwiki import sources have been defined and direct history uploads are disabled.',
3344 'importnofile' => 'No import file was uploaded.',
3345 'importuploaderrorsize' => 'Upload of import file failed.
3346 The file is bigger than the allowed upload size.',
3347 'importuploaderrorpartial' => 'Upload of import file failed.
3348 The file was only partially uploaded.',
3349 'importuploaderrortemp' => 'Upload of import file failed.
3350 A temporary folder is missing.',
3351 'import-parse-failure' => 'XML import parse failure',
3352 'import-noarticle' => 'No page to import!',
3353 'import-nonewrevisions' => 'All revisions were previously imported.',
3354 'xml-error-string' => '$1 at line $2, col $3 (byte $4): $5',
3355 'import-upload' => 'Upload XML data',
3356 'import-token-mismatch' => 'Loss of session data.
3357 Please try again.',
3358 'import-invalid-interwiki' => 'Cannot import from the specified wiki.',
3359
3360 # Import log
3361 'importlogpage' => 'Import log',
3362 'importlogpagetext' => 'Administrative imports of pages with edit history from other wikis.',
3363 'import-logentry-upload' => 'imported [[$1]] by file upload',
3364 'import-logentry-upload-detail' => '$1 {{PLURAL:$1|revision|revisions}}',
3365 'import-logentry-interwiki' => 'transwikied $1',
3366 'import-logentry-interwiki-detail' => '$1 {{PLURAL:$1|revision|revisions}} from $2',
3367
3368 # Keyboard access keys for power users
3369 'accesskey-pt-userpage' => '.', # do not translate or duplicate this message to other languages
3370 'accesskey-pt-anonuserpage' => '.', # do not translate or duplicate this message to other languages
3371 'accesskey-pt-mytalk' => 'n', # do not translate or duplicate this message to other languages
3372 'accesskey-pt-anontalk' => 'n', # do not translate or duplicate this message to other languages
3373 'accesskey-pt-preferences' => '', # do not translate or duplicate this message to other languages
3374 'accesskey-pt-watchlist' => 'l', # do not translate or duplicate this message to other languages
3375 'accesskey-pt-mycontris' => 'y', # do not translate or duplicate this message to other languages
3376 'accesskey-pt-login' => 'o', # do not translate or duplicate this message to other languages
3377 'accesskey-pt-anonlogin' => 'o', # do not translate or duplicate this message to other languages
3378 'accesskey-pt-logout' => '', # do not translate or duplicate this message to other languages
3379 'accesskey-ca-talk' => 't', # do not translate or duplicate this message to other languages
3380 'accesskey-ca-edit' => 'e', # do not translate or duplicate this message to other languages
3381 'accesskey-ca-addsection' => '+', # do not translate or duplicate this message to other languages
3382 'accesskey-ca-viewsource' => 'e', # do not translate or duplicate this message to other languages
3383 'accesskey-ca-history' => 'h', # do not translate or duplicate this message to other languages
3384 'accesskey-ca-protect' => '=', # do not translate or duplicate this message to other languages
3385 'accesskey-ca-unprotect' => '=', # do not translate or duplicate this message to other languages
3386 'accesskey-ca-delete' => 'd', # do not translate or duplicate this message to other languages
3387 'accesskey-ca-undelete' => 'd', # do not translate or duplicate this message to other languages
3388 'accesskey-ca-move' => 'm', # do not translate or duplicate this message to other languages
3389 'accesskey-ca-watch' => 'w', # do not translate or duplicate this message to other languages
3390 'accesskey-ca-unwatch' => 'w', # do not translate or duplicate this message to other languages
3391 'accesskey-search' => 'f', # do not translate or duplicate this message to other languages
3392 'accesskey-search-go' => '', # do not translate or duplicate this message to other languages
3393 'accesskey-search-fulltext' => '', # do not translate or duplicate this message to other languages
3394 'accesskey-p-logo' => '', # do not translate or duplicate this message to other languages
3395 'accesskey-n-mainpage' => 'z', # do not translate or duplicate this message to other languages
3396 'accesskey-n-mainpage-description' => 'z', # do not translate or duplicate this message to other languages
3397 'accesskey-n-portal' => '', # do not translate or duplicate this message to other languages
3398 'accesskey-n-currentevents' => '', # do not translate or duplicate this message to other languages
3399 'accesskey-n-recentchanges' => 'r', # do not translate or duplicate this message to other languages
3400 'accesskey-n-randompage' => 'x', # do not translate or duplicate this message to other languages
3401 'accesskey-n-help' => '', # do not translate or duplicate this message to other languages
3402 'accesskey-t-whatlinkshere' => 'j', # do not translate or duplicate this message to other languages
3403 'accesskey-t-recentchangeslinked' => 'k', # do not translate or duplicate this message to other languages
3404 'accesskey-feed-rss' => '', # do not translate or duplicate this message to other languages
3405 'accesskey-feed-atom' => '', # do not translate or duplicate this message to other languages
3406 'accesskey-t-contributions' => '', # do not translate or duplicate this message to other languages
3407 'accesskey-t-emailuser' => '', # do not translate or duplicate this message to other languages
3408 'accesskey-t-permalink' => '', # do not translate or duplicate this message to other languages
3409 'accesskey-t-print' => 'p', # do not translate or duplicate this message to other languages
3410 'accesskey-t-upload' => 'u', # do not translate or duplicate this message to other languages
3411 'accesskey-t-specialpages' => 'q', # do not translate or duplicate this message to other languages
3412 'accesskey-ca-nstab-main' => 'c', # do not translate or duplicate this message to other languages
3413 'accesskey-ca-nstab-user' => 'c', # do not translate or duplicate this message to other languages
3414 'accesskey-ca-nstab-media' => 'c', # do not translate or duplicate this message to other languages
3415 'accesskey-ca-nstab-special' => '', # do not translate or duplicate this message to other languages
3416 'accesskey-ca-nstab-project' => 'a', # do not translate or duplicate this message to other languages
3417 'accesskey-ca-nstab-image' => 'c', # do not translate or duplicate this message to other languages
3418 'accesskey-ca-nstab-mediawiki' => 'c', # do not translate or duplicate this message to other languages
3419 'accesskey-ca-nstab-template' => 'c', # do not translate or duplicate this message to other languages
3420 'accesskey-ca-nstab-help' => 'c', # do not translate or duplicate this message to other languages
3421 'accesskey-ca-nstab-category' => 'c', # do not translate or duplicate this message to other languages
3422 'accesskey-minoredit' => 'i', # do not translate or duplicate this message to other languages
3423 'accesskey-save' => 's', # do not translate or duplicate this message to other languages
3424 'accesskey-preview' => 'p', # do not translate or duplicate this message to other languages
3425 'accesskey-diff' => 'v', # do not translate or duplicate this message to other languages
3426 'accesskey-compareselectedversions' => 'v', # do not translate or duplicate this message to other languages
3427 'accesskey-watch' => 'w', # do not translate or duplicate this message to other languages
3428 'accesskey-upload' => 's', # do not translate or duplicate this message to other languages
3429 'accesskey-preferences-save' => 's', # do not translate or duplicate this message to other languages
3430 'accesskey-summary' => 'b', # do not translate or duplicate this message to other languages
3431 'accesskey-userrights-set' => 's', # do not translate or duplicate this message to other languages
3432 'accesskey-blockip-block' => 's', # do not translate or duplicate this message to other languages
3433 'accesskey-export' => 's', # do not translate or duplicate this message to other languages
3434 'accesskey-import' => 's', # do not translate or duplicate this message to other languages
3435
3436 # Tooltip help for the actions
3437 'tooltip-pt-userpage' => 'Your user page',
3438 'tooltip-pt-anonuserpage' => 'The user page for the IP address you are editing as',
3439 'tooltip-pt-mytalk' => 'Your talk page',
3440 'tooltip-pt-anontalk' => 'Discussion about edits from this IP address',
3441 'tooltip-pt-preferences' => 'Your preferences',
3442 'tooltip-pt-watchlist' => 'The list of pages you are monitoring for changes',
3443 'tooltip-pt-mycontris' => 'List of your contributions',
3444 'tooltip-pt-login' => 'You are encouraged to log in; however, it is not mandatory',
3445 'tooltip-pt-anonlogin' => 'You are encouraged to log in; however, it is not mandatory',
3446 'tooltip-pt-logout' => 'Log out',
3447 'tooltip-ca-talk' => 'Discussion about the content page',
3448 'tooltip-ca-edit' => 'You can edit this page. Please use the preview button before saving',
3449 'tooltip-ca-addsection' => 'Start a new section',
3450 'tooltip-ca-viewsource' => 'This page is protected.
3451 You can view its source',
3452 'tooltip-ca-history' => 'Past revisions of this page',
3453 'tooltip-ca-protect' => 'Protect this page',
3454 'tooltip-ca-unprotect' => 'Unprotect this page',
3455 'tooltip-ca-delete' => 'Delete this page',
3456 'tooltip-ca-undelete' => 'Restore the edits done to this page before it was deleted',
3457 'tooltip-ca-move' => 'Move this page',
3458 'tooltip-ca-watch' => 'Add this page to your watchlist',
3459 'tooltip-ca-unwatch' => 'Remove this page from your watchlist',
3460 'tooltip-search' => 'Search {{SITENAME}}',
3461 'tooltip-search-go' => 'Go to a page with this exact name if exists',
3462 'tooltip-search-fulltext' => 'Search the pages for this text',
3463 'tooltip-p-logo' => 'Visit the main page',
3464 'tooltip-n-mainpage' => 'Visit the main page',
3465 'tooltip-n-mainpage-description' => 'Visit the main page',
3466 'tooltip-n-portal' => 'About the project, what you can do, where to find things',
3467 'tooltip-n-currentevents' => 'Find background information on current events',
3468 'tooltip-n-recentchanges' => 'The list of recent changes in the wiki',
3469 'tooltip-n-randompage' => 'Load a random page',
3470 'tooltip-n-help' => 'The place to find out',
3471 'tooltip-t-whatlinkshere' => 'List of all wiki pages that link here',
3472 'tooltip-t-recentchangeslinked' => 'Recent changes in pages linked from this page',
3473 'tooltip-feed-rss' => 'RSS feed for this page',
3474 'tooltip-feed-atom' => 'Atom feed for this page',
3475 'tooltip-t-contributions' => 'View the list of contributions of this user',
3476 'tooltip-t-emailuser' => 'Send an e-mail to this user',
3477 'tooltip-t-upload' => 'Upload files',
3478 'tooltip-t-specialpages' => 'List of all special pages',
3479 'tooltip-t-print' => 'Printable version of this page',
3480 'tooltip-t-permalink' => 'Permanent link to this revision of the page',
3481 'tooltip-ca-nstab-main' => 'View the content page',
3482 'tooltip-ca-nstab-user' => 'View the user page',
3483 'tooltip-ca-nstab-media' => 'View the media page',
3484 'tooltip-ca-nstab-special' => 'This is a special page, you cannot edit the page itself',
3485 'tooltip-ca-nstab-project' => 'View the project page',
3486 'tooltip-ca-nstab-image' => 'View the file page',
3487 'tooltip-ca-nstab-mediawiki' => 'View the system message',
3488 'tooltip-ca-nstab-template' => 'View the template',
3489 'tooltip-ca-nstab-help' => 'View the help page',
3490 'tooltip-ca-nstab-category' => 'View the category page',
3491 'tooltip-minoredit' => 'Mark this as a minor edit',
3492 'tooltip-save' => 'Save your changes',
3493 'tooltip-preview' => 'Preview your changes, please use this before saving!',
3494 'tooltip-diff' => 'Show which changes you made to the text',
3495 'tooltip-compareselectedversions' => 'See the differences between the two selected revisions of this page',
3496 'tooltip-watch' => 'Add this page to your watchlist',
3497 'tooltip-recreate' => 'Recreate the page even though it has been deleted',
3498 'tooltip-upload' => 'Start upload',
3499 'tooltip-rollback' => '"Rollback" reverts edit(s) to this page of the last contributor in one click',
3500 'tooltip-undo' => '"Undo" reverts this edit and opens the edit form in preview mode. It allows adding a reason in the summary.',
3501 'tooltip-preferences-save' => 'Save preferences',
3502 'tooltip-summary' => 'Enter a short summary',
3503
3504 # Stylesheets
3505 'common.css' => '/* CSS placed here will be applied to all skins */', # only translate this message to other languages if you have to change it
3506 '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
3507 '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
3508 '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
3509 '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
3510 '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
3511 '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
3512 '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
3513 '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
3514 '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
3515 'print.css' => '/* CSS placed here will affect the print output */', # only translate this message to other languages if you have to change it
3516 '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
3517 'noscript.css' => '/* CSS placed here will affect users with JavaScript disabled */', # only translate this message to other languages if you have to change it
3518 'group-autoconfirmed.css' => '/* CSS placed here will affect autoconfirmed users only */', # only translate this message to other languages if you have to change it
3519 'group-bot.css' => '/* CSS placed here will affect bots only */', # only translate this message to other languages if you have to change it
3520 'group-sysop.css' => '/* CSS placed here will affect sysops only */', # only translate this message to other languages if you have to change it
3521 'group-bureaucrat.css' => '/* CSS placed here will affect bureaucrats only */', # only translate this message to other languages if you have to change it
3522
3523 # Scripts
3524 '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
3525 '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
3526 '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
3527 '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
3528 '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
3529 '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
3530 '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
3531 '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
3532 '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
3533 '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
3534 '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
3535 '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
3536 '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
3537 '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
3538
3539 # Metadata
3540 'nodublincore' => 'Dublin Core RDF metadata disabled for this server.',
3541 'nocreativecommons' => 'Creative Commons RDF metadata disabled for this server.',
3542 'notacceptable' => 'The wiki server cannot provide data in a format your client can read.',
3543
3544 # Attribution
3545 'anonymous' => 'Anonymous {{PLURAL:$1|user|users}} of {{SITENAME}}',
3546 'siteuser' => '{{SITENAME}} user $1',
3547 'anonuser' => '{{SITENAME}} anonymous user $1',
3548 'lastmodifiedatby' => 'This page was last modified $2, $1 by $3.',
3549 'othercontribs' => 'Based on work by $1.',
3550 'others' => 'others',
3551 'siteusers' => '{{SITENAME}} {{PLURAL:$2|user|users}} $1',
3552 'anonusers' => '{{SITENAME}} anonymous {{PLURAL:$2|user|users}} $1',
3553 'creditspage' => 'Page credits',
3554 'nocredits' => 'There is no credits info available for this page.',
3555
3556 # Spam protection
3557 'spamprotectiontitle' => 'Spam protection filter',
3558 'spamprotectiontext' => 'The text you wanted to save was blocked by the spam filter.
3559 This is probably caused by a link to a blacklisted external site.',
3560 'spamprotectionmatch' => 'The following text is what triggered our spam filter: $1',
3561 'spambot_username' => 'MediaWiki spam cleanup',
3562 'spam_reverting' => 'Reverting to last revision not containing links to $1',
3563 'spam_blanking' => 'All revisions contained links to $1, blanking',
3564
3565 # Info page
3566 'infosubtitle' => 'Information for page',
3567 'numedits' => 'Number of edits (page): $1',
3568 'numtalkedits' => 'Number of edits (discussion page): $1',
3569 'numwatchers' => 'Number of watchers: $1',
3570 'numauthors' => 'Number of distinct authors (page): $1',
3571 'numtalkauthors' => 'Number of distinct authors (discussion page): $1',
3572
3573 # Skin names
3574 'skinname-standard' => 'Classic', # only translate this message to other languages if you have to change it
3575 'skinname-nostalgia' => 'Nostalgia', # only translate this message to other languages if you have to change it
3576 'skinname-cologneblue' => 'Cologne Blue', # only translate this message to other languages if you have to change it
3577 'skinname-monobook' => 'MonoBook', # only translate this message to other languages if you have to change it
3578 'skinname-myskin' => 'MySkin', # only translate this message to other languages if you have to change it
3579 'skinname-chick' => 'Chick', # only translate this message to other languages if you have to change it
3580 'skinname-simple' => 'Simple', # only translate this message to other languages if you have to change it
3581 'skinname-modern' => 'Modern', # only translate this message to other languages if you have to change it
3582 'skinname-vector' => 'Vector', # only translate this message to other languages if you have to change it
3583
3584 # Patrolling
3585 'markaspatrolleddiff' => 'Mark as patrolled',
3586 'markaspatrolledlink' => '[$1]', # do not translate or duplicate this message to other languages
3587 'markaspatrolledtext' => 'Mark this page as patrolled',
3588 'markedaspatrolled' => 'Marked as patrolled',
3589 'markedaspatrolledtext' => 'The selected revision of [[:$1]] has been marked as patrolled.',
3590 'rcpatroldisabled' => 'Recent changes patrol disabled',
3591 'rcpatroldisabledtext' => 'The recent changes patrol feature is currently disabled.',
3592 'markedaspatrollederror' => 'Cannot mark as patrolled',
3593 'markedaspatrollederrortext' => 'You need to specify a revision to mark as patrolled.',
3594 'markedaspatrollederror-noautopatrol' => 'You are not allowed to mark your own changes as patrolled.',
3595
3596 # Patrol log
3597 'patrol-log-page' => 'Patrol log',
3598 'patrol-log-header' => 'This is a log of patrolled revisions.',
3599 'patrol-log-line' => 'marked $1 of $2 patrolled $3',
3600 'patrol-log-auto' => '(automatic)',
3601 'patrol-log-diff' => 'revision $1',
3602 'log-show-hide-patrol' => '$1 patrol log',
3603
3604 # Image deletion
3605 'deletedrevision' => 'Deleted old revision $1',
3606 'filedeleteerror-short' => 'Error deleting file: $1',
3607 'filedeleteerror-long' => 'Errors were encountered while deleting the file:
3608
3609 $1',
3610 'filedelete-missing' => 'The file "$1" cannot be deleted, because it does not exist.',
3611 'filedelete-old-unregistered' => 'The specified file revision "$1" is not in the database.',
3612 'filedelete-current-unregistered' => 'The specified file "$1" is not in the database.',
3613 'filedelete-archive-read-only' => 'The archive directory "$1" is not writable by the webserver.',
3614
3615 # Browsing diffs
3616 'previousdiff' => '← Older edit',
3617 'nextdiff' => 'Newer edit →',
3618
3619 # Media information
3620 'mediawarning' => "'''Warning''': This file type may contain malicious code.
3621 By executing it, your system may be compromised.",
3622 'imagemaxsize' => "Image size limit:<br />''(for file description pages)''",
3623 'thumbsize' => 'Thumbnail size:',
3624 'widthheight' => '$1×$2', # only translate this message to other languages if you have to change it
3625 'widthheightpage' => '$1×$2, $3 {{PLURAL:$3|page|pages}}',
3626 'file-info' => 'file size: $1, MIME type: $2',
3627 'file-info-size' => '$1 × $2 pixels, file size: $3, MIME type: $4',
3628 'file-info-size-pages' => '$1 × $2 pixels, file size: $3, MIME type: $4, $5 {{PLURAL:$5|page|pages}}',
3629 'file-nohires' => '<small>No higher resolution available.</small>',
3630 'svg-long-desc' => 'SVG file, nominally $1 × $2 pixels, file size: $3',
3631 'show-big-image' => 'Full resolution',
3632 'show-big-image-preview' => '<small>Size of this preview: $1.</small>',
3633 'show-big-image-other' => '<small>Other resolutions: $1.</small>',
3634 'show-big-image-size' => '$1 × $2 pixels',
3635 'file-info-gif-looped' => 'looped',
3636 'file-info-gif-frames' => '$1 {{PLURAL:$1|frame|frames}}',
3637 'file-info-png-looped' => 'looped',
3638 'file-info-png-repeat' => 'played $1 {{PLURAL:$1|time|times}}',
3639 'file-info-png-frames' => '$1 {{PLURAL:$1|frame|frames}}',
3640
3641 # Special:NewFiles
3642 'newimages' => 'Gallery of new files',
3643 'imagelisttext' => "Below is a list of '''$1''' {{PLURAL:$1|file|files}} sorted $2.",
3644 'newimages-summary' => 'This special page shows the last uploaded files.',
3645 'newimages-legend' => 'Filter',
3646 'newimages-label' => 'Filename (or a part of it):',
3647 'showhidebots' => '($1 bots)',
3648 'noimages' => 'Nothing to see.',
3649 'ilsubmit' => 'Search',
3650 'bydate' => 'by date',
3651 'sp-newimages-showfrom' => 'Show new files starting from $2, $1',
3652
3653 # Video information, used by Language::formatTimePeriod() to format lengths in the above messages
3654 'video-dims' => '$1, $2×$3', # only translate this message to other languages if you have to change it
3655 'seconds-abbrev' => 's', # only translate this message to other languages if you have to change it
3656 'minutes-abbrev' => 'm', # only translate this message to other languages if you have to change it
3657 'hours-abbrev' => 'h', # only translate this message to other languages if you have to change it
3658
3659 # Bad image list
3660 'bad_image_list' => 'The format is as follows:
3661
3662 Only list items (lines starting with *) are considered.
3663 The first link on a line must be a link to a bad file.
3664 Any subsequent links on the same line are considered to be exceptions, i.e. pages where the file may occur inline.',
3665
3666 /*
3667 Short names for language variants used for language conversion links.
3668 To disable showing a particular link, set it to 'disable', e.g.
3669 'variantname-zh-sg' => 'disable',
3670 Variants for Chinese language
3671 */
3672 'variantname-zh-hans' => 'hans', # only translate this message to other languages if you have to change it
3673 'variantname-zh-hant' => 'hant', # only translate this message to other languages if you have to change it
3674 'variantname-zh-cn' => 'cn', # only translate this message to other languages if you have to change it
3675 'variantname-zh-tw' => 'tw', # only translate this message to other languages if you have to change it
3676 'variantname-zh-hk' => 'hk', # only translate this message to other languages if you have to change it
3677 'variantname-zh-mo' => 'mo', # only translate this message to other languages if you have to change it
3678 'variantname-zh-sg' => 'sg', # only translate this message to other languages if you have to change it
3679 'variantname-zh-my' => 'my', # only translate this message to other languages if you have to change it
3680 'variantname-zh' => 'zh', # only translate this message to other languages if you have to change it
3681
3682 # Variants for Gan language
3683 'variantname-gan-hans' => 'hans', # only translate this message to other languages if you have to change it
3684 'variantname-gan-hant' => 'hant', # only translate this message to other languages if you have to change it
3685 'variantname-gan' => 'gan', # only translate this message to other languages if you have to change it
3686
3687 # Variants for Serbian language
3688 'variantname-sr-ec' => 'sr-ec', # only translate this message to other languages if you have to change it
3689 'variantname-sr-el' => 'sr-el', # only translate this message to other languages if you have to change it
3690 'variantname-sr' => 'sr', # only translate this message to other languages if you have to change it
3691
3692 # Variants for Kazakh language
3693 'variantname-kk-kz' => 'kk-kz', # only translate this message to other languages if you have to change it
3694 'variantname-kk-tr' => 'kk-tr', # only translate this message to other languages if you have to change it
3695 'variantname-kk-cn' => 'kk-cn', # only translate this message to other languages if you have to change it
3696 'variantname-kk-cyrl' => 'kk-cyrl', # only translate this message to other languages if you have to change it
3697 'variantname-kk-latn' => 'kk-latn', # only translate this message to other languages if you have to change it
3698 'variantname-kk-arab' => 'kk-arab', # only translate this message to other languages if you have to change it
3699 'variantname-kk' => 'kk', # only translate this message to other languages if you have to change it
3700
3701 # Variants for Kurdish language
3702 'variantname-ku-arab' => 'ku-Arab', # only translate this message to other languages if you have to change it
3703 'variantname-ku-latn' => 'ku-Latn', # only translate this message to other languages if you have to change it
3704 'variantname-ku' => 'ku', # only translate this message to other languages if you have to change it
3705
3706 # Variants for Tajiki language
3707 'variantname-tg-cyrl' => 'tg-Cyrl', # only translate this message to other languages if you have to change it
3708 'variantname-tg-latn' => 'tg-Latn', # only translate this message to other languages if you have to change it
3709 'variantname-tg' => 'tg', # only translate this message to other languages if you have to change it
3710
3711 # Variants for Inuktitut language
3712 'variantname-ike-cans' => 'ike-Cans', # only translate this message to other languages if you have to change it
3713 'variantname-ike-latn' => 'ike-Latn', # only translate this message to other languages if you have to change it
3714 'variantname-iu' => 'iu', # only translate this message to other languages if you have to change it
3715
3716 # Metadata
3717 'metadata' => 'Metadata',
3718 'metadata-help' => 'This file contains additional information, probably added from the digital camera or scanner used to create or digitize it.
3719 If the file has been modified from its original state, some details may not fully reflect the modified file.',
3720 'metadata-expand' => 'Show extended details',
3721 'metadata-collapse' => 'Hide extended details',
3722 'metadata-fields' => 'Image metadata fields listed in this message will be included on image page display when the metadata table is collapsed.
3723 Others will be hidden by default.
3724 * make
3725 * model
3726 * datetimeoriginal
3727 * exposuretime
3728 * fnumber
3729 * isospeedratings
3730 * focallength
3731 * artist
3732 * copyright
3733 * imagedescription
3734 * gpslatitude
3735 * gpslongitude
3736 * gpsaltitude',
3737 'metadata-langitem' => "'''$2:''' $1", # only translate this message to other languages if you have to change it
3738 'metadata-langitem-default' => '$1', # only translate this message to other languages if you have to change it
3739
3740 # EXIF tags
3741 'exif-imagewidth' => 'Width',
3742 'exif-imagelength' => 'Height',
3743 'exif-bitspersample' => 'Bits per component',
3744 'exif-compression' => 'Compression scheme',
3745 'exif-photometricinterpretation' => 'Pixel composition',
3746 'exif-orientation' => 'Orientation',
3747 'exif-samplesperpixel' => 'Number of components',
3748 'exif-planarconfiguration' => 'Data arrangement',
3749 'exif-ycbcrsubsampling' => 'Subsampling ratio of Y to C',
3750 'exif-ycbcrpositioning' => 'Y and C positioning',
3751 'exif-xresolution' => 'Horizontal resolution',
3752 'exif-yresolution' => 'Vertical resolution',
3753 'exif-stripoffsets' => 'Image data location',
3754 'exif-rowsperstrip' => 'Number of rows per strip',
3755 'exif-stripbytecounts' => 'Bytes per compressed strip',
3756 'exif-jpeginterchangeformat' => 'Offset to JPEG SOI',
3757 'exif-jpeginterchangeformatlength' => 'Bytes of JPEG data',
3758 'exif-whitepoint' => 'White point chromaticity',
3759 'exif-primarychromaticities' => 'Chromaticities of primarities',
3760 'exif-ycbcrcoefficients' => 'Color space transformation matrix coefficients',
3761 'exif-referenceblackwhite' => 'Pair of black and white reference values',
3762 'exif-datetime' => 'File change date and time',
3763 'exif-imagedescription' => 'Image title',
3764 'exif-make' => 'Camera manufacturer',
3765 'exif-model' => 'Camera model',
3766 'exif-software' => 'Software used',
3767 'exif-artist' => 'Author',
3768 'exif-copyright' => 'Copyright holder',
3769 'exif-exifversion' => 'Exif version',
3770 'exif-flashpixversion' => 'Supported Flashpix version',
3771 'exif-colorspace' => 'Color space',
3772 'exif-componentsconfiguration' => 'Meaning of each component',
3773 'exif-compressedbitsperpixel' => 'Image compression mode',
3774 'exif-pixelydimension' => 'Image width',
3775 'exif-pixelxdimension' => 'Image height',
3776 'exif-usercomment' => 'User comments',
3777 'exif-relatedsoundfile' => 'Related audio file',
3778 'exif-datetimeoriginal' => 'Date and time of data generation',
3779 'exif-datetimedigitized' => 'Date and time of digitizing',
3780 'exif-subsectime' => 'DateTime subseconds',
3781 'exif-subsectimeoriginal' => 'DateTimeOriginal subseconds',
3782 'exif-subsectimedigitized' => 'DateTimeDigitized subseconds',
3783 'exif-exposuretime' => 'Exposure time',
3784 'exif-exposuretime-format' => '$1 sec ($2)',
3785 'exif-fnumber' => 'F Number',
3786 'exif-fnumber-format' => 'f/$1', # only translate this message to other languages if you have to change it
3787 'exif-exposureprogram' => 'Exposure Program',
3788 'exif-spectralsensitivity' => 'Spectral sensitivity',
3789 'exif-isospeedratings' => 'ISO speed rating',
3790 'exif-shutterspeedvalue' => 'APEX shutter speed',
3791 'exif-aperturevalue' => 'APEX aperture',
3792 'exif-brightnessvalue' => 'APEX brightness',
3793 'exif-exposurebiasvalue' => 'APEX exposure bias',
3794 'exif-maxaperturevalue' => 'Maximum land aperture',
3795 'exif-subjectdistance' => 'Subject distance',
3796 'exif-meteringmode' => 'Metering mode',
3797 'exif-lightsource' => 'Light source',
3798 'exif-flash' => 'Flash',
3799 'exif-focallength' => 'Lens focal length',
3800 'exif-focallength-format' => '$1 mm', # only translate this message to other languages if you have to change it
3801 'exif-subjectarea' => 'Subject area',
3802 'exif-flashenergy' => 'Flash energy',
3803 'exif-focalplanexresolution' => 'Focal plane X resolution',
3804 'exif-focalplaneyresolution' => 'Focal plane Y resolution',
3805 'exif-focalplaneresolutionunit' => 'Focal plane resolution unit',
3806 'exif-subjectlocation' => 'Subject location',
3807 'exif-exposureindex' => 'Exposure index',
3808 'exif-sensingmethod' => 'Sensing method',
3809 'exif-filesource' => 'File source',
3810 'exif-scenetype' => 'Scene type',
3811 'exif-customrendered' => 'Custom image processing',
3812 'exif-exposuremode' => 'Exposure mode',
3813 'exif-whitebalance' => 'White balance',
3814 'exif-digitalzoomratio' => 'Digital zoom ratio',
3815 'exif-focallengthin35mmfilm' => 'Focal length in 35 mm film',
3816 'exif-scenecapturetype' => 'Scene capture type',
3817 'exif-gaincontrol' => 'Scene control',
3818 'exif-contrast' => 'Contrast',
3819 'exif-saturation' => 'Saturation',
3820 'exif-sharpness' => 'Sharpness',
3821 'exif-devicesettingdescription' => 'Device settings description',
3822 'exif-subjectdistancerange' => 'Subject distance range',
3823 'exif-imageuniqueid' => 'Unique image ID',
3824 'exif-gpsversionid' => 'GPS tag version',
3825 'exif-gpslatituderef' => 'North or south latitude',
3826 'exif-gpslatitude' => 'Latitude',
3827 'exif-gpslongituderef' => 'East or west longitude',
3828 'exif-gpslongitude' => 'Longitude',
3829 'exif-gpsaltituderef' => 'Altitude reference',
3830 'exif-gpsaltitude' => 'Altitude',
3831 'exif-gpstimestamp' => 'GPS time (atomic clock)',
3832 'exif-gpssatellites' => 'Satellites used for measurement',
3833 'exif-gpsstatus' => 'Receiver status',
3834 'exif-gpsmeasuremode' => 'Measurement mode',
3835 'exif-gpsdop' => 'Measurement precision',
3836 'exif-gpsspeedref' => 'Speed unit',
3837 'exif-gpsspeed' => 'Speed of GPS receiver',
3838 'exif-gpstrackref' => 'Reference for direction of movement',
3839 'exif-gpstrack' => 'Direction of movement',
3840 'exif-gpsimgdirectionref' => 'Reference for direction of image',
3841 'exif-gpsimgdirection' => 'Direction of image',
3842 'exif-gpsmapdatum' => 'Geodetic survey data used',
3843 'exif-gpsdestlatituderef' => 'Reference for latitude of destination',
3844 'exif-gpsdestlatitude' => 'Latitude destination',
3845 'exif-gpsdestlongituderef' => 'Reference for longitude of destination',
3846 'exif-gpsdestlongitude' => 'Longitude of destination',
3847 'exif-gpsdestbearingref' => 'Reference for bearing of destination',
3848 'exif-gpsdestbearing' => 'Bearing of destination',
3849 'exif-gpsdestdistanceref' => 'Reference for distance to destination',
3850 'exif-gpsdestdistance' => 'Distance to destination',
3851 'exif-gpsprocessingmethod' => 'Name of GPS processing method',
3852 'exif-gpsareainformation' => 'Name of GPS area',
3853 'exif-gpsdatestamp' => 'GPS date',
3854 'exif-gpsdifferential' => 'GPS differential correction',
3855 'exif-coordinate-format' => '$1° $2 $3 $4', # only translate this message to other languages if you have to change it
3856 'exif-jpegfilecomment' => 'JPEG file comment',
3857 'exif-keywords' => 'Keywords',
3858 'exif-worldregioncreated' => 'World region that the picture was taken in',
3859 'exif-countrycreated' => 'Country that the picture was taken in',
3860 'exif-countrycodecreated' => 'Code for the country that the picture was taken in',
3861 'exif-provinceorstatecreated' => 'Province or state that the picture was taken in',
3862 'exif-citycreated' => 'City that the picture was taken in',
3863 'exif-sublocationcreated' => 'Sublocation of the city that the picture was taken in',
3864 'exif-worldregiondest' => 'World region shown',
3865 'exif-countrydest' => 'Country shown',
3866 'exif-countrycodedest' => 'Code for country shown',
3867 'exif-provinceorstatedest' => 'Province or state shown',
3868 'exif-citydest' => 'City shown',
3869 'exif-sublocationdest' => 'Sublocation of city shown',
3870 'exif-objectname' => 'Short title',
3871 'exif-specialinstructions' => 'Special instructions',
3872 'exif-headline' => 'Headline',
3873 'exif-credit' => 'Credit/Provider',
3874 'exif-source' => 'Source',
3875 'exif-editstatus' => 'Editorial status of image',
3876 'exif-urgency' => 'Urgency',
3877 'exif-fixtureidentifier' => 'Fixture name',
3878 'exif-locationdest' => 'Location depicted',
3879 'exif-locationdestcode' => 'Code of location depicted',
3880 'exif-objectcycle' => 'Time of day that media is intended for',
3881 'exif-contact' => 'Contact information',
3882 'exif-writer' => 'Writer',
3883 'exif-languagecode' => 'Language',
3884 'exif-iimversion' => 'IIM version',
3885 'exif-iimcategory' => 'Category',
3886 'exif-iimsupplementalcategory' => 'Supplemental categories',
3887 'exif-datetimeexpires' => 'Do not use after',
3888 'exif-datetimereleased' => 'Released on',
3889 'exif-originaltransmissionref' => 'Original transmission location code',
3890 'exif-identifier' => 'Identifier',
3891 'exif-lens' => 'Lens used',
3892 'exif-serialnumber' => 'Serial number of camera',
3893 'exif-cameraownername' => 'Owner of camera',
3894 'exif-label' => 'Label',
3895 'exif-datetimemetadata' => 'Date metadata was last modified',
3896 'exif-nickname' => 'Informal name of image',
3897 'exif-rating' => 'Rating (out of 5)',
3898 'exif-rightscertificate' => 'Rights management certificate',
3899 'exif-copyrighted' => 'Copyright status',
3900 'exif-copyrightowner' => 'Copyright owner',
3901 'exif-usageterms' => 'Usage terms',
3902 'exif-webstatement' => 'Online copyright statement',
3903 'exif-originaldocumentid' => 'Unique ID of original document',
3904 'exif-licenseurl' => 'URL for copyright license',
3905 'exif-morepermissionsurl' => 'Alternative licensing information',
3906 'exif-attributionurl' => 'When re-using this work, please link to',
3907 'exif-preferredattributionname' => 'When re-using this work, please credit',
3908 'exif-pngfilecomment' => 'PNG file comment',
3909 'exif-disclaimer' => 'Disclaimer',
3910 'exif-contentwarning' => 'Content warning',
3911 'exif-giffilecomment' => 'GIF file comment',
3912 'exif-intellectualgenre' => 'Type of item',
3913 'exif-subjectnewscode' => 'Subject code',
3914 'exif-scenecode' => 'IPTC scene code',
3915 'exif-event' => 'Event depicted',
3916 'exif-organisationinimage' => 'Organization depicted',
3917 'exif-personinimage' => 'Person depicted',
3918 'exif-originalimageheight' => 'Height of image before it was cropped',
3919 'exif-originalimagewidth' => 'Width of image before it was cropped',
3920
3921 # Make & model, can be wikified in order to link to the camera and model name
3922 'exif-make-value' => '$1', # do not translate or duplicate this message to other languages
3923 'exif-model-value' => '$1', # do not translate or duplicate this message to other languages
3924 'exif-software-value' => '$1', # do not translate or duplicate this message to other languages
3925 'exif-software-version-value' => '$1 (Version $2)', # do not translate or duplicate this message to other languages
3926 'exif-contact-value' => '$1
3927
3928 $2
3929 <div class="adr">
3930 $3
3931
3932 $4, $5, $6 $7
3933 </div>
3934 $8', # only translate this message to other languages if you have to change it
3935 'exif-subjectnewscode-value' => '$2 ($1)', # only translate this message to other languages if you have to change it
3936
3937 # EXIF attributes
3938 'exif-compression-1' => 'Uncompressed',
3939 'exif-compression-2' => 'CCITT Group 3 1-Dimensional Modified Huffman run length encoding',
3940 'exif-compression-3' => 'CCITT Group 3 fax encoding',
3941 'exif-compression-4' => 'CCITT Group 4 fax encoding',
3942 'exif-compression-5' => 'LZW', # only translate this message to other languages if you have to change it
3943 'exif-compression-6' => 'JPEG (old)', # only translate this message to other languages if you have to change it
3944 'exif-compression-7' => 'JPEG', # only translate this message to other languages if you have to change it
3945 'exif-compression-8' => 'Deflate (Adobe)', # only translate this message to other languages if you have to change it
3946 'exif-compression-32773' => 'PackBits (Macintosh RLE)', # only translate this message to other languages if you have to change it
3947 'exif-compression-32946' => 'Deflate (PKZIP)', # only translate this message to other languages if you have to change it
3948 'exif-compression-34712' => 'JPEG2000', # only translate this message to other languages if you have to change it
3949
3950 'exif-copyrighted-true' => 'Copyrighted',
3951 'exif-copyrighted-false' => 'Public domain',
3952
3953 'exif-photometricinterpretation-2' => 'RGB', # only translate this message to other languages if you have to change it
3954 'exif-photometricinterpretation-6' => 'YCbCr', # only translate this message to other languages if you have to change it
3955
3956 'exif-unknowndate' => 'Unknown date',
3957
3958 'exif-orientation-1' => 'Normal',
3959 'exif-orientation-2' => 'Flipped horizontally',
3960 'exif-orientation-3' => 'Rotated 180°',
3961 'exif-orientation-4' => 'Flipped vertically',
3962 'exif-orientation-5' => 'Rotated 90° CCW and flipped vertically',
3963 'exif-orientation-6' => 'Rotated 90° CW',
3964 'exif-orientation-7' => 'Rotated 90° CW and flipped vertically',
3965 'exif-orientation-8' => 'Rotated 90° CCW',
3966
3967 'exif-planarconfiguration-1' => 'chunky format',
3968 'exif-planarconfiguration-2' => 'planar format',
3969
3970 'exif-xyresolution-i' => '$1 dpi', # only translate this message to other languages if you have to change it
3971 'exif-xyresolution-c' => '$1 dpc', # only translate this message to other languages if you have to change it
3972
3973 'exif-colorspace-1' => 'sRGB', # only translate this message to other languages if you have to change it
3974 'exif-colorspace-65535' => 'Uncalibrated',
3975
3976 'exif-componentsconfiguration-0' => 'does not exist',
3977 'exif-componentsconfiguration-1' => 'Y', # only translate this message to other languages if you have to change it
3978 'exif-componentsconfiguration-2' => 'Cb', # only translate this message to other languages if you have to change it
3979 'exif-componentsconfiguration-3' => 'Cr', # only translate this message to other languages if you have to change it
3980 'exif-componentsconfiguration-4' => 'R', # only translate this message to other languages if you have to change it
3981 'exif-componentsconfiguration-5' => 'G', # only translate this message to other languages if you have to change it
3982 'exif-componentsconfiguration-6' => 'B', # only translate this message to other languages if you have to change it
3983
3984 'exif-exposureprogram-0' => 'Not defined',
3985 'exif-exposureprogram-1' => 'Manual',
3986 'exif-exposureprogram-2' => 'Normal program',
3987 'exif-exposureprogram-3' => 'Aperture priority',
3988 'exif-exposureprogram-4' => 'Shutter priority',
3989 'exif-exposureprogram-5' => 'Creative program (biased toward depth of field)',
3990 'exif-exposureprogram-6' => 'Action program (biased toward fast shutter speed)',
3991 'exif-exposureprogram-7' => 'Portrait mode (for closeup photos with the background out of focus)',
3992 'exif-exposureprogram-8' => 'Landscape mode (for landscape photos with the background in focus)',
3993
3994 'exif-subjectdistance-value' => '$1 meters',
3995
3996 'exif-meteringmode-0' => 'Unknown',
3997 'exif-meteringmode-1' => 'Average',
3998 'exif-meteringmode-2' => 'Center weighted average',
3999 'exif-meteringmode-3' => 'Spot',
4000 'exif-meteringmode-4' => 'Multi-Spot',
4001 'exif-meteringmode-5' => 'Pattern',
4002 'exif-meteringmode-6' => 'Partial',
4003 'exif-meteringmode-255' => 'Other',
4004
4005 'exif-lightsource-0' => 'Unknown',
4006 'exif-lightsource-1' => 'Daylight',
4007 'exif-lightsource-2' => 'Fluorescent',
4008 'exif-lightsource-3' => 'Tungsten (incandescent light)',
4009 'exif-lightsource-4' => 'Flash',
4010 'exif-lightsource-9' => 'Fine weather',
4011 'exif-lightsource-10' => 'Cloudy weather',
4012 'exif-lightsource-11' => 'Shade',
4013 'exif-lightsource-12' => 'Daylight fluorescent (D 5700 – 7100K)',
4014 'exif-lightsource-13' => 'Day white fluorescent (N 4600 – 5400K)',
4015 'exif-lightsource-14' => 'Cool white fluorescent (W 3900 – 4500K)',
4016 'exif-lightsource-15' => 'White fluorescent (WW 3200 – 3700K)',
4017 'exif-lightsource-17' => 'Standard light A',
4018 'exif-lightsource-18' => 'Standard light B',
4019 'exif-lightsource-19' => 'Standard light C',
4020 'exif-lightsource-20' => 'D55', # only translate this message to other languages if you have to change it
4021 'exif-lightsource-21' => 'D65', # only translate this message to other languages if you have to change it
4022 'exif-lightsource-22' => 'D75', # only translate this message to other languages if you have to change it
4023 'exif-lightsource-23' => 'D50', # only translate this message to other languages if you have to change it
4024 'exif-lightsource-24' => 'ISO studio tungsten',
4025 'exif-lightsource-255' => 'Other light source',
4026
4027 # Flash modes
4028 'exif-flash-fired-0' => 'Flash did not fire',
4029 'exif-flash-fired-1' => 'Flash fired',
4030 'exif-flash-return-0' => 'no strobe return detection function',
4031 'exif-flash-return-2' => 'strobe return light not detected',
4032 'exif-flash-return-3' => 'strobe return light detected',
4033 'exif-flash-mode-1' => 'compulsory flash firing',
4034 'exif-flash-mode-2' => 'compulsory flash suppression',
4035 'exif-flash-mode-3' => 'auto mode',
4036 'exif-flash-function-1' => 'No flash function',
4037 'exif-flash-redeye-1' => 'red-eye reduction mode',
4038
4039 'exif-focalplaneresolutionunit-2' => 'inches',
4040
4041 'exif-sensingmethod-1' => 'Undefined',
4042 'exif-sensingmethod-2' => 'One-chip color area sensor',
4043 'exif-sensingmethod-3' => 'Two-chip color area sensor',
4044 'exif-sensingmethod-4' => 'Three-chip color area sensor',
4045 'exif-sensingmethod-5' => 'Color sequential area sensor',
4046 'exif-sensingmethod-7' => 'Trilinear sensor',
4047 'exif-sensingmethod-8' => 'Color sequential linear sensor',
4048
4049 'exif-filesource-3' => 'Digital still camera',
4050
4051 'exif-scenetype-1' => 'A directly photographed image',
4052
4053 'exif-customrendered-0' => 'Normal process',
4054 'exif-customrendered-1' => 'Custom process',
4055
4056 'exif-exposuremode-0' => 'Auto exposure',
4057 'exif-exposuremode-1' => 'Manual exposure',
4058 'exif-exposuremode-2' => 'Auto bracket',
4059
4060 'exif-whitebalance-0' => 'Auto white balance',
4061 'exif-whitebalance-1' => 'Manual white balance',
4062
4063 'exif-scenecapturetype-0' => 'Standard',
4064 'exif-scenecapturetype-1' => 'Landscape',
4065 'exif-scenecapturetype-2' => 'Portrait',
4066 'exif-scenecapturetype-3' => 'Night scene',
4067
4068 'exif-gaincontrol-0' => 'None',
4069 'exif-gaincontrol-1' => 'Low gain up',
4070 'exif-gaincontrol-2' => 'High gain up',
4071 'exif-gaincontrol-3' => 'Low gain down',
4072 'exif-gaincontrol-4' => 'High gain down',
4073
4074 'exif-contrast-0' => 'Normal',
4075 'exif-contrast-1' => 'Soft',
4076 'exif-contrast-2' => 'Hard',
4077
4078 'exif-saturation-0' => 'Normal',
4079 'exif-saturation-1' => 'Low saturation',
4080 'exif-saturation-2' => 'High saturation',
4081
4082 'exif-sharpness-0' => 'Normal',
4083 'exif-sharpness-1' => 'Soft',
4084 'exif-sharpness-2' => 'Hard',
4085
4086 'exif-subjectdistancerange-0' => 'Unknown',
4087 'exif-subjectdistancerange-1' => 'Macro',
4088 'exif-subjectdistancerange-2' => 'Close view',
4089 'exif-subjectdistancerange-3' => 'Distant view',
4090
4091 # Pseudotags used for GPSLatitudeRef and GPSDestLatitudeRef
4092 'exif-gpslatitude-n' => 'North latitude',
4093 'exif-gpslatitude-s' => 'South latitude',
4094
4095 # Pseudotags used for GPSLongitudeRef and GPSDestLongitudeRef
4096 'exif-gpslongitude-e' => 'East longitude',
4097 'exif-gpslongitude-w' => 'West longitude',
4098
4099 # Pseudotags used for GPSAltitudeRef
4100 'exif-gpsaltitude-above-sealevel' => '$1 {{PLURAL:$1|meter|meters}} above sea level',
4101 'exif-gpsaltitude-below-sealevel' => '$1 {{PLURAL:$1|meter|meters}} below sea level',
4102
4103 'exif-gpsstatus-a' => 'Measurement in progress',
4104 'exif-gpsstatus-v' => 'Measurement interoperability',
4105
4106 'exif-gpsmeasuremode-2' => '2-dimensional measurement',
4107 'exif-gpsmeasuremode-3' => '3-dimensional measurement',
4108
4109 # Pseudotags used for GPSSpeedRef
4110 'exif-gpsspeed-k' => 'Kilometers per hour',
4111 'exif-gpsspeed-m' => 'Miles per hour',
4112 'exif-gpsspeed-n' => 'Knots',
4113
4114 # Pseudotags used for GPSDestDistanceRef
4115 'exif-gpsdestdistance-k' => 'Kilometres',
4116 'exif-gpsdestdistance-m' => 'Miles',
4117 'exif-gpsdestdistance-n' => 'Nautical miles',
4118
4119 'exif-gpsdop-excellent' => 'Excellent ($1)',
4120 'exif-gpsdop-good' => 'Good ($1)',
4121 'exif-gpsdop-moderate' => 'Moderate ($1)',
4122 'exif-gpsdop-fair' => 'Fair ($1)',
4123 'exif-gpsdop-poor' => 'Poor ($1)',
4124
4125 'exif-objectcycle-a' => 'Morning only',
4126 'exif-objectcycle-p' => 'Evening only',
4127 'exif-objectcycle-b' => 'Both morning and evening',
4128
4129 # Pseudotags used for GPSTrackRef, GPSImgDirectionRef and GPSDestBearingRef
4130 'exif-gpsdirection-t' => 'True direction',
4131 'exif-gpsdirection-m' => 'Magnetic direction',
4132
4133 'exif-ycbcrpositioning-1' => 'Centered',
4134 'exif-ycbcrpositioning-2' => 'Co-sited',
4135
4136 'exif-dc-contributor' => 'Contributors',
4137 'exif-dc-coverage' => 'Spatial or temporal scope of media',
4138 'exif-dc-date' => 'Date(s)',
4139 'exif-dc-publisher' => 'Publisher',
4140 'exif-dc-relation' => 'Related media',
4141 'exif-dc-rights' => 'Rights',
4142 'exif-dc-source' => 'Source media',
4143 'exif-dc-type' => 'Type of media',
4144
4145 'exif-rating-rejected' => 'Rejected',
4146
4147 'exif-isospeedratings-overflow' => 'Greater than 65535',
4148
4149 'exif-maxaperturevalue-value' => '$1 APEX (f/$2)', # only translate this message to other languages if you have to change it
4150
4151 'exif-iimcategory-ace' => 'Arts, culture and entertainment',
4152 'exif-iimcategory-clj' => 'Crime and law',
4153 'exif-iimcategory-dis' => 'Disasters and accidents',
4154 'exif-iimcategory-fin' => 'Economy and business',
4155 'exif-iimcategory-edu' => 'Education',
4156 'exif-iimcategory-evn' => 'Environment',
4157 'exif-iimcategory-hth' => 'Health',
4158 'exif-iimcategory-hum' => 'Human interest',
4159 'exif-iimcategory-lab' => 'Labour',
4160 'exif-iimcategory-lif' => 'Lifestyle and leisure',
4161 'exif-iimcategory-pol' => 'Politics',
4162 'exif-iimcategory-rel' => 'Religion and belief',
4163 'exif-iimcategory-sci' => 'Science and technology',
4164 'exif-iimcategory-soi' => 'Social issues',
4165 'exif-iimcategory-spo' => 'Sports',
4166 'exif-iimcategory-war' => 'War, conflict and unrest',
4167 'exif-iimcategory-wea' => 'Weather',
4168
4169 'exif-urgency-normal' => 'Normal ($1)',
4170 'exif-urgency-low' => 'Low ($1)',
4171 'exif-urgency-high' => 'High ($1)',
4172 'exif-urgency-other' => 'User-defined priority ($1)',
4173
4174 # External editor support
4175 'edit-externally' => 'Edit this file using an external application',
4176 'edit-externally-help' => '(See the [http://www.mediawiki.org/wiki/Manual:External_editors setup instructions] for more information)',
4177
4178 # 'all' in various places, this might be different for inflected languages
4179 'watchlistall2' => 'all',
4180 'namespacesall' => 'all',
4181 'monthsall' => 'all',
4182 'limitall' => 'all',
4183
4184 # E-mail address confirmation
4185 'confirmemail' => 'Confirm e-mail address',
4186 'confirmemail_noemail' => 'You do not have a valid e-mail address set in your [[Special:Preferences|user preferences]].',
4187 'confirmemail_text' => '{{SITENAME}} requires that you validate your e-mail address before using e-mail features.
4188 Activate the button below to send a confirmation mail to your address.
4189 The mail will include a link containing a code;
4190 load the link in your browser to confirm that your e-mail address is valid.',
4191 'confirmemail_pending' => 'A confirmation code has already been e-mailed to you;
4192 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.',
4193 'confirmemail_send' => 'Mail a confirmation code',
4194 'confirmemail_sent' => 'Confirmation e-mail sent.',
4195 'confirmemail_oncreate' => 'A confirmation code was sent to your e-mail address.
4196 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.',
4197 'confirmemail_sendfailed' => '{{SITENAME}} could not send your confirmation mail.
4198 Please check your e-mail address for invalid characters.
4199
4200 Mailer returned: $1',
4201 'confirmemail_invalid' => 'Invalid confirmation code.
4202 The code may have expired.',
4203 'confirmemail_needlogin' => 'You need to $1 to confirm your e-mail address.',
4204 'confirmemail_success' => 'Your e-mail address has been confirmed.
4205 You may now [[Special:UserLogin|log in]] and enjoy the wiki.',
4206 'confirmemail_loggedin' => 'Your e-mail address has now been confirmed.',
4207 'confirmemail_error' => 'Something went wrong saving your confirmation.',
4208 'confirmemail_subject' => '{{SITENAME}} e-mail address confirmation',
4209 'confirmemail_body' => 'Someone, probably you, from IP address $1,
4210 has registered an account "$2" with this e-mail address on {{SITENAME}}.
4211
4212 To confirm that this account really does belong to you and activate
4213 e-mail features on {{SITENAME}}, open this link in your browser:
4214
4215 $3
4216
4217 If you did *not* register the account, follow this link
4218 to cancel the e-mail address confirmation:
4219
4220 $5
4221
4222 This confirmation code will expire at $4.',
4223 'confirmemail_body_changed' => 'Someone, probably you, from IP address $1,
4224 has changed the e-mail address of the account "$2" to this address on {{SITENAME}}.
4225
4226 To confirm that this account really does belong to you and reactivate
4227 e-mail features on {{SITENAME}}, open this link in your browser:
4228
4229 $3
4230
4231 If the account does *not* belong to you, follow this link
4232 to cancel the e-mail address confirmation:
4233
4234 $5
4235
4236 This confirmation code will expire at $4.',
4237 'confirmemail_body_set' => 'Someone, probably you, from IP address $1,
4238 has set the e-mail address of the account "$2" to this address on {{SITENAME}}.
4239
4240 To confirm that this account really does belong to you and reactivate
4241 e-mail features on {{SITENAME}}, open this link in your browser:
4242
4243 $3
4244
4245 If the account does *not* belong to you, follow this link
4246 to cancel the e-mail address confirmation:
4247
4248 $5
4249
4250 This confirmation code will expire at $4.',
4251 'confirmemail_invalidated' => 'E-mail address confirmation canceled',
4252 'invalidateemail' => 'Cancel e-mail confirmation',
4253
4254 # Scary transclusion
4255 'scarytranscludedisabled' => '[Interwiki transcluding is disabled]',
4256 'scarytranscludefailed' => '[Template fetch failed for $1]',
4257 'scarytranscludetoolong' => '[URL is too long]',
4258
4259 # Trackbacks
4260 'trackbackbox' => 'Trackbacks for this page:<br />
4261 $1',
4262 'trackback' => '; $4 $5: [$2 $1]', # only translate this message to other languages if you have to change it
4263 'trackbackexcerpt' => '; $4 $5: [$2 $1]: <nowiki>$3</nowiki>', # only translate this message to other languages if you have to change it
4264 'trackbackremove' => '([$1 Delete])',
4265 'trackbacklink' => 'Trackback',
4266 'trackbackdeleteok' => 'The trackback was successfully deleted.',
4267
4268 # Delete conflict
4269 'deletedwhileediting' => "'''Warning''': This page was deleted after you started editing!",
4270 'confirmrecreate' => "User [[User:$1|$1]] ([[User talk:$1|talk]]) deleted this page after you started editing with reason:
4271 : ''$2''
4272 Please confirm that you really want to recreate this page.",
4273 '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.',
4274 'recreate' => 'Recreate',
4275
4276 'unit-pixel' => 'px', # only translate this message to other languages if you have to change it
4277
4278 # action=purge
4279 'confirm_purge_button' => 'OK',
4280 'confirm-purge-top' => 'Clear the cache of this page?',
4281 'confirm-purge-bottom' => 'Purging a page clears the cache and forces the most current revision to appear.',
4282
4283 # Separators for various lists, etc.
4284 'catseparator' => '|', # only translate this message to other languages if you have to change it
4285 'semicolon-separator' => ';&#32;', # only translate this message to other languages if you have to change it
4286 'comma-separator' => ',&#32;', # only translate this message to other languages if you have to change it
4287 'colon-separator' => ':&#32;', # only translate this message to other languages if you have to change it
4288 'autocomment-prefix' => '-&#32;', # only translate this message to other languages if you have to change it
4289 'pipe-separator' => '&#32;|&#32;', # only translate this message to other languages if you have to change it
4290 'word-separator' => '&#32;', # only translate this message to other languages if you have to change it
4291 'ellipsis' => '...', # only translate this message to other languages if you have to change it
4292 'percent' => '$1%', # only translate this message to other languages if you have to change it
4293 'parentheses' => '($1)', # only translate this message to other languages if you have to change it
4294
4295 # Multipage image navigation
4296 'imgmultipageprev' => '← previous page',
4297 'imgmultipagenext' => 'next page →',
4298 'imgmultigo' => 'Go!',
4299 'imgmultigoto' => 'Go to page $1',
4300
4301 # Table pager
4302 'ascending_abbrev' => 'asc',
4303 'descending_abbrev' => 'desc',
4304 'table_pager_next' => 'Next page',
4305 'table_pager_prev' => 'Previous page',
4306 'table_pager_first' => 'First page',
4307 'table_pager_last' => 'Last page',
4308 'table_pager_limit' => 'Show $1 items per page',
4309 'table_pager_limit_label' => 'Items per page:',
4310 'table_pager_limit_submit' => 'Go',
4311 'table_pager_empty' => 'No results',
4312
4313 # Auto-summaries
4314 'autosumm-blank' => 'Blanked the page',
4315 'autosumm-replace' => 'Replaced content with "$1"',
4316 'autoredircomment' => 'Redirected page to [[$1]]',
4317 'autosumm-new' => 'Created page with "$1"',
4318
4319 # Autoblock whitelist
4320 'autoblock_whitelist' => 'AOL http://webmaster.info.aol.com/proxyinfo.html
4321 *64.12.96.0/19
4322 *149.174.160.0/20
4323 *152.163.240.0/21
4324 *152.163.248.0/22
4325 *152.163.252.0/23
4326 *152.163.96.0/22
4327 *152.163.100.0/23
4328 *195.93.32.0/22
4329 *195.93.48.0/22
4330 *195.93.64.0/19
4331 *195.93.96.0/19
4332 *195.93.16.0/20
4333 *198.81.0.0/22
4334 *198.81.16.0/20
4335 *198.81.8.0/23
4336 *202.67.64.128/25
4337 *205.188.192.0/20
4338 *205.188.208.0/23
4339 *205.188.112.0/20
4340 *205.188.146.144/30
4341 *207.200.112.0/21', # do not translate or duplicate this message to other languages
4342
4343 # Size units
4344 'size-bytes' => '$1 B', # only translate this message to other languages if you have to change it
4345 'size-kilobytes' => '$1 KB', # only translate this message to other languages if you have to change it
4346 'size-megabytes' => '$1 MB', # only translate this message to other languages if you have to change it
4347 'size-gigabytes' => '$1 GB', # only translate this message to other languages if you have to change it
4348
4349 # Live preview
4350 'livepreview-loading' => 'Loading...',
4351 'livepreview-ready' => 'Loading... Ready!',
4352 'livepreview-failed' => 'Live preview failed!
4353 Try normal preview.',
4354 'livepreview-error' => 'Failed to connect: $1 "$2".
4355 Try normal preview.',
4356
4357 # Friendlier slave lag warnings
4358 'lag-warn-normal' => 'Changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.',
4359 'lag-warn-high' => 'Due to high database server lag, changes newer than $1 {{PLURAL:$1|second|seconds}} may not be shown in this list.',
4360
4361 # Watchlist editor
4362 'watchlistedit-numitems' => 'Your watchlist contains {{PLURAL:$1|1 title|$1 titles}}, excluding talk pages.',
4363 'watchlistedit-noitems' => 'Your watchlist contains no titles.',
4364 'watchlistedit-normal-title' => 'Edit watchlist',
4365 'watchlistedit-normal-legend' => 'Remove titles from watchlist',
4366 'watchlistedit-normal-explain' => 'Titles on your watchlist are shown below.
4367 To remove a title, check the box next to it, and click "{{int:Watchlistedit-normal-submit}}".
4368 You can also [[Special:EditWatchlist/raw|edit the raw list]].',
4369 'watchlistedit-normal-submit' => 'Remove titles',
4370 'watchlistedit-normal-done' => '{{PLURAL:$1|1 title was|$1 titles were}} removed from your watchlist:',
4371 'watchlistedit-raw-title' => 'Edit raw watchlist',
4372 'watchlistedit-raw-legend' => 'Edit raw watchlist',
4373 'watchlistedit-raw-explain' => 'Titles on your watchlist are shown below, and can be edited by adding to and removing from the list;
4374 one title per line.
4375 When finished, click "{{int:Watchlistedit-raw-submit}}".
4376 You can also [[Special:EditWatchlist|use the standard editor]].',
4377 'watchlistedit-raw-titles' => 'Titles:',
4378 'watchlistedit-raw-submit' => 'Update watchlist',
4379 'watchlistedit-raw-done' => 'Your watchlist has been updated.',
4380 'watchlistedit-raw-added' => '{{PLURAL:$1|1 title was|$1 titles were}} added:',
4381 'watchlistedit-raw-removed' => '{{PLURAL:$1|1 title was|$1 titles were}} removed:',
4382
4383 # Watchlist editing tools
4384 'watchlisttools-view' => 'View relevant changes',
4385 'watchlisttools-edit' => 'View and edit watchlist',
4386 'watchlisttools-raw' => 'Edit raw watchlist',
4387
4388 # Iranian month names
4389 'iranian-calendar-m1' => 'Farvardin', # only translate this message to other languages if you have to change it
4390 'iranian-calendar-m2' => 'Ordibehesht', # only translate this message to other languages if you have to change it
4391 'iranian-calendar-m3' => 'Khordad', # only translate this message to other languages if you have to change it
4392 'iranian-calendar-m4' => 'Tir', # only translate this message to other languages if you have to change it
4393 'iranian-calendar-m5' => 'Mordad', # only translate this message to other languages if you have to change it
4394 'iranian-calendar-m6' => 'Shahrivar', # only translate this message to other languages if you have to change it
4395 'iranian-calendar-m7' => 'Mehr', # only translate this message to other languages if you have to change it
4396 'iranian-calendar-m8' => 'Aban', # only translate this message to other languages if you have to change it
4397 'iranian-calendar-m9' => 'Azar', # only translate this message to other languages if you have to change it
4398 'iranian-calendar-m10' => 'Dey', # only translate this message to other languages if you have to change it
4399 'iranian-calendar-m11' => 'Bahman', # only translate this message to other languages if you have to change it
4400 'iranian-calendar-m12' => 'Esfand', # only translate this message to other languages if you have to change it
4401
4402 # Hijri month names
4403 'hijri-calendar-m1' => 'Muharram', # only translate this message to other languages if you have to change it
4404 'hijri-calendar-m2' => 'Safar', # only translate this message to other languages if you have to change it
4405 'hijri-calendar-m3' => "Rabi' al-awwal", # only translate this message to other languages if you have to change it
4406 'hijri-calendar-m4' => "Rabi' al-thani", # only translate this message to other languages if you have to change it
4407 'hijri-calendar-m5' => 'Jumada al-awwal', # only translate this message to other languages if you have to change it
4408 'hijri-calendar-m6' => 'Jumada al-thani', # only translate this message to other languages if you have to change it
4409 'hijri-calendar-m7' => 'Rajab', # only translate this message to other languages if you have to change it
4410 'hijri-calendar-m8' => "Sha'aban", # only translate this message to other languages if you have to change it
4411 'hijri-calendar-m9' => 'Ramadan', # only translate this message to other languages if you have to change it
4412 'hijri-calendar-m10' => 'Shawwal', # only translate this message to other languages if you have to change it
4413 'hijri-calendar-m11' => "Dhu al-Qi'dah", # only translate this message to other languages if you have to change it
4414 'hijri-calendar-m12' => 'Dhu al-Hijjah', # only translate this message to other languages if you have to change it
4415
4416 # Hebrew month names
4417 'hebrew-calendar-m1' => 'Tishrei', # only translate this message to other languages if you have to change it
4418 'hebrew-calendar-m2' => 'Cheshvan', # only translate this message to other languages if you have to change it
4419 'hebrew-calendar-m3' => 'Kislev', # only translate this message to other languages if you have to change it
4420 'hebrew-calendar-m4' => 'Tevet', # only translate this message to other languages if you have to change it
4421 'hebrew-calendar-m5' => 'Shevat', # only translate this message to other languages if you have to change it
4422 'hebrew-calendar-m6' => 'Adar', # only translate this message to other languages if you have to change it
4423 'hebrew-calendar-m6a' => 'Adar I', # only translate this message to other languages if you have to change it
4424 'hebrew-calendar-m6b' => 'Adar II', # only translate this message to other languages if you have to change it
4425 'hebrew-calendar-m7' => 'Nisan', # only translate this message to other languages if you have to change it
4426 'hebrew-calendar-m8' => 'Iyar', # only translate this message to other languages if you have to change it
4427 'hebrew-calendar-m9' => 'Sivan', # only translate this message to other languages if you have to change it
4428 'hebrew-calendar-m10' => 'Tamuz', # only translate this message to other languages if you have to change it
4429 'hebrew-calendar-m11' => 'Av', # only translate this message to other languages if you have to change it
4430 'hebrew-calendar-m12' => 'Elul', # only translate this message to other languages if you have to change it
4431 'hebrew-calendar-m1-gen' => 'Tishrei', # only translate this message to other languages if you have to change it
4432 'hebrew-calendar-m2-gen' => 'Cheshvan', # only translate this message to other languages if you have to change it
4433 'hebrew-calendar-m3-gen' => 'Kislev', # only translate this message to other languages if you have to change it
4434 'hebrew-calendar-m4-gen' => 'Tevet', # only translate this message to other languages if you have to change it
4435 'hebrew-calendar-m5-gen' => 'Shevat', # only translate this message to other languages if you have to change it
4436 'hebrew-calendar-m6-gen' => 'Adar', # only translate this message to other languages if you have to change it
4437 'hebrew-calendar-m6a-gen' => 'Adar I', # only translate this message to other languages if you have to change it
4438 'hebrew-calendar-m6b-gen' => 'Adar II', # only translate this message to other languages if you have to change it
4439 'hebrew-calendar-m7-gen' => 'Nisan', # only translate this message to other languages if you have to change it
4440 'hebrew-calendar-m8-gen' => 'Iyar', # only translate this message to other languages if you have to change it
4441 'hebrew-calendar-m9-gen' => 'Sivan', # only translate this message to other languages if you have to change it
4442 'hebrew-calendar-m10-gen' => 'Tamuz', # only translate this message to other languages if you have to change it
4443 'hebrew-calendar-m11-gen' => 'Av', # only translate this message to other languages if you have to change it
4444 'hebrew-calendar-m12-gen' => 'Elul', # only translate this message to other languages if you have to change it
4445
4446 # Signatures
4447 'signature' => '[[{{ns:user}}:$1|$2]]', # do not translate or duplicate this message to other languages
4448 'signature-anon' => '[[{{#special:Contributions}}/$1|$2]]', # do not translate or duplicate this message to other languages
4449 'timezone-utc' => 'UTC', # only translate this message to other languages if you have to change it
4450
4451 # Core parser functions
4452 'unknown_extension_tag' => 'Unknown extension tag "$1"',
4453 'duplicate-defaultsort' => '\'\'\'Warning:\'\'\' Default sort key "$2" overrides earlier default sort key "$1".',
4454
4455 # Special:Version
4456 'version' => 'Version',
4457 'version-extensions' => 'Installed extensions',
4458 'version-specialpages' => 'Special pages',
4459 'version-parserhooks' => 'Parser hooks',
4460 'version-variables' => 'Variables',
4461 'version-antispam' => 'Spam prevention',
4462 'version-skins' => 'Skins',
4463 'version-other' => 'Other',
4464 'version-mediahandlers' => 'Media handlers',
4465 'version-hooks' => 'Hooks',
4466 'version-extension-functions' => 'Extension functions',
4467 'version-parser-extensiontags' => 'Parser extension tags',
4468 'version-parser-function-hooks' => 'Parser function hooks',
4469 'version-hook-name' => 'Hook name',
4470 'version-hook-subscribedby' => 'Subscribed by',
4471 'version-version' => '(Version $1)',
4472 'version-svn-revision' => '(r$2)', # only translate this message to other languages if you have to change it
4473 'version-license' => 'License',
4474 'version-poweredby-credits' => "This wiki is powered by '''[http://www.mediawiki.org/ MediaWiki]''', copyright © 2001-$1 $2.",
4475 'version-poweredby-others' => 'others',
4476 '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.
4477
4478 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.
4479
4480 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].',
4481 'version-software' => 'Installed software',
4482 'version-software-product' => 'Product',
4483 'version-software-version' => 'Version',
4484
4485 # Special:FilePath
4486 'filepath' => 'File path',
4487 'filepath-page' => 'File:',
4488 'filepath-submit' => 'Go',
4489 'filepath-summary' => 'This special page returns the complete path for a file.
4490 Images are shown in full resolution, other file types are started with their associated program directly.
4491
4492 Enter the file name without the "{{ns:file}}:" prefix.',
4493
4494 # Special:FileDuplicateSearch
4495 'fileduplicatesearch' => 'Search for duplicate files',
4496 'fileduplicatesearch-summary' => 'Search for duplicate files based on hash values.',
4497 'fileduplicatesearch-legend' => 'Search for a duplicate',
4498 'fileduplicatesearch-filename' => 'Filename:',
4499 'fileduplicatesearch-submit' => 'Search',
4500 'fileduplicatesearch-info' => '$1 × $2 pixel<br />File size: $3<br />MIME type: $4',
4501 'fileduplicatesearch-result-1' => 'The file "$1" has no identical duplication.',
4502 'fileduplicatesearch-result-n' => 'The file "$1" has {{PLURAL:$2|1 identical duplication|$2 identical duplications}}.',
4503 'fileduplicatesearch-noresults' => 'No file named "$1" found.',
4504
4505 # Special:SpecialPages
4506 'specialpages' => 'Special pages',
4507 'specialpages-summary' => '', # do not translate or duplicate this message to other languages
4508 'specialpages-note' => '----
4509 * Normal special pages.
4510 * <span class="mw-specialpagerestricted">Restricted special pages.</span>
4511 * <span class="mw-specialpagecached">Cached-only special pages.</span>',
4512 'specialpages-group-maintenance' => 'Maintenance reports',
4513 'specialpages-group-other' => 'Other special pages',
4514 'specialpages-group-login' => 'Login / sign up',
4515 'specialpages-group-changes' => 'Recent changes and logs',
4516 'specialpages-group-media' => 'Media reports and uploads',
4517 'specialpages-group-users' => 'Users and rights',
4518 'specialpages-group-highuse' => 'High use pages',
4519 'specialpages-group-pages' => 'Lists of pages',
4520 'specialpages-group-pagetools' => 'Page tools',
4521 'specialpages-group-wiki' => 'Wiki data and tools',
4522 'specialpages-group-redirects' => 'Redirecting special pages',
4523 'specialpages-group-spam' => 'Spam tools',
4524
4525 # Special:BlankPage
4526 'blankpage' => 'Blank page',
4527 'intentionallyblankpage' => 'This page is intentionally left blank.',
4528
4529 # External image whitelist
4530 'external_image_whitelist' => ' #Leave this line exactly as it is<pre>
4531 #Put regular expression fragments (just the part that goes between the //) below
4532 #These will be matched with the URLs of external (hotlinked) images
4533 #Those that match will be displayed as images, otherwise only a link to the image will be shown
4534 #Lines beginning with # are treated as comments
4535 #This is case-insensitive
4536
4537 #Put all regex fragments above this line. Leave this line exactly as it is</pre>',
4538
4539 # Special:Tags
4540 'tags' => 'Valid change tags',
4541 'tag-filter' => '[[Special:Tags|Tag]] filter:',
4542 'tag-filter-submit' => 'Filter',
4543 'tags-title' => 'Tags',
4544 'tags-intro' => 'This page lists the tags that the software may mark an edit with, and their meaning.',
4545 'tags-tag' => 'Tag name',
4546 'tags-display-header' => 'Appearance on change lists',
4547 'tags-description-header' => 'Full description of meaning',
4548 'tags-hitcount-header' => 'Tagged changes',
4549 'tags-edit' => 'edit',
4550 'tags-hitcount' => '$1 {{PLURAL:$1|change|changes}}',
4551
4552 # Special:ComparePages
4553 'comparepages' => 'Compare pages',
4554 'compare-selector' => 'Compare page revisions',
4555 'compare-page1' => 'Page 1',
4556 'compare-page2' => 'Page 2',
4557 'compare-rev1' => 'Revision 1',
4558 'compare-rev2' => 'Revision 2',
4559 'compare-submit' => 'Compare',
4560
4561 # Database error messages
4562 'dberr-header' => 'This wiki has a problem',
4563 'dberr-problems' => 'Sorry!
4564 This site is experiencing technical difficulties.',
4565 'dberr-again' => 'Try waiting a few minutes and reloading.',
4566 'dberr-info' => '(Cannot contact the database server: $1)',
4567 'dberr-usegoogle' => 'You can try searching via Google in the meantime.',
4568 'dberr-outofdate' => 'Note that their indexes of our content may be out of date.',
4569 'dberr-cachederror' => 'This is a cached copy of the requested page, and may not be up to date.',
4570
4571 # HTML forms
4572 'htmlform-invalid-input' => 'There are problems with some of your input',
4573 'htmlform-select-badoption' => 'The value you specified is not a valid option.',
4574 'htmlform-int-invalid' => 'The value you specified is not an integer.',
4575 'htmlform-float-invalid' => 'The value you specified is not a number.',
4576 'htmlform-int-toolow' => 'The value you specified is below the minimum of $1',
4577 'htmlform-int-toohigh' => 'The value you specified is above the maximum of $1',
4578 'htmlform-required' => 'This value is required',
4579 'htmlform-submit' => 'Submit',
4580 'htmlform-reset' => 'Undo changes',
4581 'htmlform-selectorother-other' => 'Other',
4582
4583 # SQLite database support
4584 'sqlite-has-fts' => '$1 with full-text search support',
4585 'sqlite-no-fts' => '$1 without full-text search support',
4586
4587 );