* (bugs 5051, 5376) All tooltips and accesskeys moved out of Monobook.js and into...
[lhc/web/wiklou.git] / languages / messages / MessagesEn.php
1 <?php
2 /**
3 * This is the default English localisation file
4 */
5
6
7 /**
8 * Fallback language, used for all unspecified messages and behaviour. This
9 * is English by default, for all files other than this one.
10 */
11 $fallback = false;
12
13 /**
14 * Is the language written right-to-left?
15 * Note that right-to-left languages generally also specify
16 * $defaultUserOptionOverrides = array( 'quickbar' => 2 );
17 */
18 $rtl = false;
19
20 /**
21 * Optional array mapping ASCII digits 0-9 to local digits.
22 */
23 $digitTransformTable = null;
24
25 /**
26 * Transform table for decimal point '.' and thousands separator ','
27 */
28 $separatorTransformTable = null;
29
30 /**
31 * Overrides for the default user options. This is mainly used by RTL languages.
32 */
33 $defaultUserOptionOverrides = array();
34
35 /**
36 * Extra user preferences which will be shown in Special:Preferences as
37 * checkboxes. Extra settings in derived languages will automatically be
38 * appended to the array of the fallback languages.
39 */
40 $extraUserToggles = array();
41
42 /**
43 * URLs do not specify their encoding. UTF-8 is used by default, but if the
44 * URL is not a valid UTF-8 sequence, we have to try to guess what the real
45 * encoding is. The encoding used in this case is defined below, and must be
46 * supported by iconv().
47 */
48 $fallback8bitEncoding = 'windows-1252';
49
50 /**
51 * To allow "foo[[bar]]" to extend the link over the whole word "foobar"
52 */
53 $linkPrefixExtension = false;
54
55 /**
56 * Namespace names. NS_PROJECT is always set to $wgMetaNamespace after the
57 * settings are loaded, it will be ignored even if you specify it here.
58 *
59 * NS_PROJECT_TALK will be set to $wgMetaNamespaceTalk if that variable is
60 * set, otherwise the string specified here will be used. The string may
61 * contain "$1", which will be replaced by the name of NS_PROJECT. It may
62 * also contain a grammatical transformation, e.g.
63 *
64 * NS_PROJECT_TALK => 'Keskustelu_{{grammar:elative|$1}}'
65 *
66 * Only one grammatical transform may be specified in the string. For
67 * performance reasons, this transformation is done locally by the language
68 * module rather than by the full wikitext parser. As a result, no other
69 * parser features are available.
70 */
71 $namespaceNames = array(
72 NS_MEDIA => 'Media',
73 NS_SPECIAL => 'Special',
74 NS_MAIN => '',
75 NS_TALK => 'Talk',
76 NS_USER => 'User',
77 NS_USER_TALK => 'User_talk',
78 # NS_PROJECT set by $wgMetaNamespace
79 NS_PROJECT_TALK => '$1_talk',
80 NS_IMAGE => 'Image',
81 NS_IMAGE_TALK => 'Image_talk',
82 NS_MEDIAWIKI => 'MediaWiki',
83 NS_MEDIAWIKI_TALK => 'MediaWiki_talk',
84 NS_TEMPLATE => 'Template',
85 NS_TEMPLATE_TALK => 'Template_talk',
86 NS_HELP => 'Help',
87 NS_HELP_TALK => 'Help_talk',
88 NS_CATEGORY => 'Category',
89 NS_CATEGORY_TALK => 'Category_talk',
90 );
91
92 /**
93 * Array of namespace aliases, mapping from name to NS_xxx index
94 */
95 $namespaceAliases = array();
96
97 /**
98 * Labels of the quickbar settings in Special:Preferences
99 */
100 $quickbarSettings = array(
101 'None', 'Fixed left', 'Fixed right', 'Floating left', 'Floating right'
102 );
103
104 /**
105 * Skin names. If any key is not specified, the English one will be used.
106 */
107 $skinNames = array(
108 'standard' => 'Classic',
109 'nostalgia' => 'Nostalgia',
110 'cologneblue' => 'Cologne Blue',
111 'davinci' => 'DaVinci',
112 'mono' => 'Mono',
113 'monobook' => 'MonoBook',
114 'myskin' => 'MySkin',
115 'chick' => 'Chick'
116 );
117
118 /**
119 * Deprecated, use the message array
120 */
121 $mathNames = array(
122 MW_MATH_PNG => 'mw_math_png',
123 MW_MATH_SIMPLE => 'mw_math_simple',
124 MW_MATH_HTML => 'mw_math_html',
125 MW_MATH_SOURCE => 'mw_math_source',
126 MW_MATH_MODERN => 'mw_math_modern',
127 MW_MATH_MATHML => 'mw_math_mathml'
128 );
129
130 /**
131 * A list of date format preference keys which can be selected in user
132 * preferences. New preference keys can be added, provided they are supported
133 * by the language class's timeanddate(). Only the 5 keys listed below are
134 * supported by the wikitext converter (DateFormatter.php).
135 *
136 * The special key "default" is an alias for either dmy or mdy depending on
137 * $wgAmericanDates
138 */
139 $datePreferences = array(
140 'default',
141 'mdy',
142 'dmy',
143 'ymd',
144 'ISO 8601',
145 );
146
147 /**
148 * The date format to use for generated dates in the user interface.
149 * This may be one of the above date preferences, or the special value
150 * "dmy or mdy", which uses mdy if $wgAmericanDates is true, and dmy
151 * if $wgAmericanDates is false.
152 */
153 $defaultDateFormat = 'dmy or mdy';
154
155 /**
156 * Associative array mapping old numeric date formats, which may still be
157 * stored in user preferences, to the new string formats.
158 */
159 $datePreferenceMigrationMap = array(
160 'default',
161 'mdy',
162 'dmy',
163 'ymd'
164 );
165
166 /**
167 * These are formats for dates generated by MediaWiki (as opposed to the wikitext
168 * DateFormatter). Documentation for the format string can be found in
169 * Language.php, search for sprintfDate.
170 *
171 * This array is automatically inherited by all subclasses. Individual keys can be
172 * overridden.
173 */
174 $dateFormats = array(
175 'mdy time' => 'H:i',
176 'mdy date' => 'F j, Y',
177 'mdy both' => 'H:i, F j, Y',
178
179 'dmy time' => 'H:i',
180 'dmy date' => 'j F Y',
181 'dmy both' => 'H:i, j F Y',
182
183 'ymd time' => 'H:i',
184 'ymd date' => 'Y F j',
185 'ymd both' => 'H:i, Y F j',
186
187 'ISO 8601 time' => 'xnH:xni:xns',
188 'ISO 8601 date' => 'xnY-xnm-xnd',
189 'ISO 8601 both' => 'xnY-xnm-xnd"T"xnH:xni:xns',
190 );
191
192 /**
193 * Default list of book sources
194 */
195 $bookstoreList = array(
196 'AddALL' => 'http://www.addall.com/New/Partner.cgi?query=$1&type=ISBN',
197 'PriceSCAN' => 'http://www.pricescan.com/books/bookDetail.asp?isbn=$1',
198 'Barnes & Noble' => 'http://search.barnesandnoble.com/bookSearch/isbnInquiry.asp?isbn=$1',
199 'Amazon.com' => 'http://www.amazon.com/exec/obidos/ISBN=$1'
200 );
201
202 /**
203 * Magic words
204 * Customisable syntax for wikitext and elsewhere
205 *
206 * Note to translators:
207 * Please include the English words as synonyms. This allows people
208 * from other wikis to contribute more easily.
209 */
210 $magicWords = array(
211 # ID CASE SYNONYMS
212 'redirect' => array( 0, '#REDIRECT' ),
213 'notoc' => array( 0, '__NOTOC__' ),
214 'nogallery' => array( 0, '__NOGALLERY__' ),
215 'forcetoc' => array( 0, '__FORCETOC__' ),
216 'toc' => array( 0, '__TOC__' ),
217 'noeditsection' => array( 0, '__NOEDITSECTION__' ),
218 'start' => array( 0, '__START__' ),
219 'currentmonth' => array( 1, 'CURRENTMONTH' ),
220 'currentmonthname' => array( 1, 'CURRENTMONTHNAME' ),
221 'currentmonthnamegen' => array( 1, 'CURRENTMONTHNAMEGEN' ),
222 'currentmonthabbrev' => array( 1, 'CURRENTMONTHABBREV' ),
223 'currentday' => array( 1, 'CURRENTDAY' ),
224 'currentday2' => array( 1, 'CURRENTDAY2' ),
225 'currentdayname' => array( 1, 'CURRENTDAYNAME' ),
226 'currentyear' => array( 1, 'CURRENTYEAR' ),
227 'currenttime' => array( 1, 'CURRENTTIME' ),
228 'currenthour' => array( 1, 'CURRENTHOUR' ),
229 'localmonth' => array( 1, 'LOCALMONTH' ),
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 'pagename' => array( 1, 'PAGENAME' ),
244 'pagenamee' => array( 1, 'PAGENAMEE' ),
245 'namespace' => array( 1, 'NAMESPACE' ),
246 'namespacee' => array( 1, 'NAMESPACEE' ),
247 'talkspace' => array( 1, 'TALKSPACE' ),
248 'talkspacee' => array( 1, 'TALKSPACEE' ),
249 'subjectspace' => array( 1, 'SUBJECTSPACE', 'ARTICLESPACE' ),
250 'subjectspacee' => array( 1, 'SUBJECTSPACEE', 'ARTICLESPACEE' ),
251 'fullpagename' => array( 1, 'FULLPAGENAME' ),
252 'fullpagenamee' => array( 1, 'FULLPAGENAMEE' ),
253 'subpagename' => array( 1, 'SUBPAGENAME' ),
254 'subpagenamee' => array( 1, 'SUBPAGENAMEE' ),
255 'basepagename' => array( 1, 'BASEPAGENAME' ),
256 'basepagenamee' => array( 1, 'BASEPAGENAMEE' ),
257 'talkpagename' => array( 1, 'TALKPAGENAME' ),
258 'talkpagenamee' => array( 1, 'TALKPAGENAMEE' ),
259 'subjectpagename' => array( 1, 'SUBJECTPAGENAME', 'ARTICLEPAGENAME' ),
260 'subjectpagenamee' => array( 1, 'SUBJECTPAGENAMEE', 'ARTICLEPAGENAMEE' ),
261 'msg' => array( 0, 'MSG:' ),
262 'subst' => array( 0, 'SUBST:' ),
263 'msgnw' => array( 0, 'MSGNW:' ),
264 'end' => array( 0, '__END__' ),
265 'img_thumbnail' => array( 1, 'thumbnail', 'thumb' ),
266 'img_manualthumb' => array( 1, 'thumbnail=$1', 'thumb=$1'),
267 'img_right' => array( 1, 'right' ),
268 'img_left' => array( 1, 'left' ),
269 'img_none' => array( 1, 'none' ),
270 'img_width' => array( 1, '$1px' ),
271 'img_center' => array( 1, 'center', 'centre' ),
272 'img_framed' => array( 1, 'framed', 'enframed', 'frame' ),
273 'img_page' => array( 1, 'page=$1', 'page $1' ),
274 'int' => array( 0, 'INT:' ),
275 'sitename' => array( 1, 'SITENAME' ),
276 'ns' => array( 0, 'NS:' ),
277 'localurl' => array( 0, 'LOCALURL:' ),
278 'localurle' => array( 0, 'LOCALURLE:' ),
279 'server' => array( 0, 'SERVER' ),
280 'servername' => array( 0, 'SERVERNAME' ),
281 'scriptpath' => array( 0, 'SCRIPTPATH' ),
282 'grammar' => array( 0, 'GRAMMAR:' ),
283 'notitleconvert' => array( 0, '__NOTITLECONVERT__', '__NOTC__'),
284 'nocontentconvert' => array( 0, '__NOCONTENTCONVERT__', '__NOCC__'),
285 'currentweek' => array( 1, 'CURRENTWEEK' ),
286 'currentdow' => array( 1, 'CURRENTDOW' ),
287 'localweek' => array( 1, 'LOCALWEEK' ),
288 'localdow' => array( 1, 'LOCALDOW' ),
289 'revisionid' => array( 1, 'REVISIONID' ),
290 'revisionday' => array( 1, 'REVISIONDAY' ),
291 'revisionday2' => array( 1, 'REVISIONDAY2' ),
292 'revisionmonth' => array( 1, 'REVISIONMONTH' ),
293 'revisionyear' => array( 1, 'REVISIONYEAR' ),
294 'revisiontimestamp' => array( 1, 'REVISIONTIMESTAMP' ),
295 'plural' => array( 0, 'PLURAL:' ),
296 'fullurl' => array( 0, 'FULLURL:' ),
297 'fullurle' => array( 0, 'FULLURLE:' ),
298 'lcfirst' => array( 0, 'LCFIRST:' ),
299 'ucfirst' => array( 0, 'UCFIRST:' ),
300 'lc' => array( 0, 'LC:' ),
301 'uc' => array( 0, 'UC:' ),
302 'raw' => array( 0, 'RAW:' ),
303 'displaytitle' => array( 1, 'DISPLAYTITLE' ),
304 'rawsuffix' => array( 1, 'R' ),
305 'newsectionlink' => array( 1, '__NEWSECTIONLINK__' ),
306 'currentversion' => array( 1, 'CURRENTVERSION' ),
307 'urlencode' => array( 0, 'URLENCODE:' ),
308 'anchorencode' => array( 0, 'ANCHORENCODE' ),
309 'currenttimestamp' => array( 1, 'CURRENTTIMESTAMP' ),
310 'localtimestamp' => array( 1, 'LOCALTIMESTAMP' ),
311 'directionmark' => array( 1, 'DIRECTIONMARK', 'DIRMARK' ),
312 'language' => array( 0, '#LANGUAGE:' ),
313 'contentlanguage' => array( 1, 'CONTENTLANGUAGE', 'CONTENTLANG' ),
314 'pagesinnamespace' => array( 1, 'PAGESINNAMESPACE:', 'PAGESINNS:' ),
315 'numberofadmins' => array( 1, 'NUMBEROFADMINS' ),
316 'formatnum' => array( 0, 'FORMATNUM' ),
317 'padleft' => array( 0, 'PADLEFT' ),
318 'padright' => array( 0, 'PADRIGHT' ),
319 );
320
321 /**
322 * Regular expression matching the "link trail", e.g. "ed" in [[Toast]]ed, as
323 * the first group, and the remainder of the string as the second group.
324 */
325 $linkTrail = '/^([a-z]+)(.*)$/sD';
326
327 #-------------------------------------------------------------------
328 # Default messages
329 #-------------------------------------------------------------------
330 # Allowed characters in keys are: A-Z, a-z, 0-9, underscore (_) and
331 # hyphen (-). If you need more characters, you may be able to change
332 # the regex in MagicWord::initRegex
333
334 $messages = array(
335 /*
336 The sidebar for MonoBook is generated from this message, lines that do not
337 begin with * or ** are discarded, furthermore lines that do begin with ** and
338 do not contain | are also discarded, but don't depend on this behaviour for
339 future releases. Also note that since each list value is wrapped in a unique
340 XHTML id it should only appear once and include characters that are legal
341 XHTML id names.
342
343 Note to translators: Do not include this message in the language files you
344 submit for inclusion in MediaWiki, it should always be inherited from the
345 parent class in order maintain consistency across languages.
346 */
347 'sidebar' => '
348 * navigation
349 ** mainpage|mainpage
350 ** portal-url|portal
351 ** currentevents-url|currentevents
352 ** recentchanges-url|recentchanges
353 ** randompage-url|randompage
354 ** helppage|help
355 ** sitesupport-url|sitesupport',
356
357 # User preference toggles
358 'tog-underline' => 'Underline links:',
359 'tog-highlightbroken' => 'Format broken links <a href="" class="new">like this</a> (alternative: like this<a href="" class="internal">?</a>).',
360 'tog-justify' => 'Justify paragraphs',
361 'tog-hideminor' => 'Hide minor edits in recent changes',
362 'tog-extendwatchlist' => 'Expand watchlist to show all applicable changes',
363 'tog-usenewrc' => 'Enhanced recent changes (JavaScript)',
364 'tog-numberheadings' => 'Auto-number headings',
365 'tog-showtoolbar' => 'Show edit toolbar (JavaScript)',
366 'tog-editondblclick' => 'Edit pages on double click (JavaScript)',
367 'tog-editsection' => 'Enable section editing via [edit] links',
368 'tog-editsectiononrightclick' => 'Enable section editing by right clicking<br /> on section titles (JavaScript)',
369 'tog-showtoc' => 'Show table of contents (for pages with more than 3 headings)',
370 'tog-rememberpassword' => 'Remember my login on this computer',
371 'tog-editwidth' => 'Edit box has full width',
372 'tog-watchcreations' => 'Add pages I create to my watchlist',
373 'tog-watchdefault' => 'Add pages I edit to my watchlist',
374 'tog-minordefault' => 'Mark all edits minor by default',
375 'tog-previewontop' => 'Show preview before edit box',
376 'tog-previewonfirst' => 'Show preview on first edit',
377 'tog-nocache' => 'Disable page caching',
378 'tog-enotifwatchlistpages' => 'E-mail me when a page I\'m watching is changed',
379 'tog-enotifusertalkpages' => 'E-mail me when my user talk page is changed',
380 'tog-enotifminoredits' => 'E-mail me also for minor edits of pages',
381 'tog-enotifrevealaddr' => 'Reveal my e-mail address in notification mails',
382 'tog-shownumberswatching' => 'Show the number of watching users',
383 'tog-fancysig' => 'Raw signatures (without automatic link)',
384 'tog-externaleditor' => 'Use external editor by default',
385 'tog-externaldiff' => 'Use external diff by default',
386 'tog-showjumplinks' => 'Enable "jump to" accessibility links',
387 'tog-uselivepreview' => 'Use live preview (JavaScript) (Experimental)',
388 'tog-autopatrol' => 'Mark edits I make as patrolled',
389 'tog-forceeditsummary' => 'Prompt me when entering a blank edit summary',
390 'tog-watchlisthideown' => 'Hide my edits from the watchlist',
391 'tog-watchlisthidebots' => 'Hide bot edits from the watchlist',
392 'tog-nolangconversion' => 'Disable variants conversion',
393
394 'underline-always' => 'Always',
395 'underline-never' => 'Never',
396 'underline-default' => 'Browser default',
397
398 'skinpreview' => '(Preview)',
399
400 # dates
401 'sunday' => 'Sunday',
402 'monday' => 'Monday',
403 'tuesday' => 'Tuesday',
404 'wednesday' => 'Wednesday',
405 'thursday' => 'Thursday',
406 'friday' => 'Friday',
407 'saturday' => 'Saturday',
408 'sun' => 'Sun',
409 'mon' => 'Mon',
410 'tue' => 'Tue',
411 'wed' => 'Wed',
412 'thu' => 'Thu',
413 'fri' => 'Fri',
414 'sat' => 'Sat',
415 'january' => 'January',
416 'february' => 'February',
417 'march' => 'March',
418 'april' => 'April',
419 'may_long' => 'May',
420 'june' => 'June',
421 'july' => 'July',
422 'august' => 'August',
423 'september' => 'September',
424 'october' => 'October',
425 'november' => 'November',
426 'december' => 'December',
427 'january-gen' => 'January',
428 'february-gen' => 'February',
429 'march-gen' => 'March',
430 'april-gen' => 'April',
431 'may-gen' => 'May',
432 'june-gen' => 'June',
433 'july-gen' => 'July',
434 'august-gen' => 'August',
435 'september-gen' => 'September',
436 'october-gen' => 'October',
437 'november-gen' => 'November',
438 'december-gen' => 'December',
439 'jan' => 'Jan',
440 'feb' => 'Feb',
441 'mar' => 'Mar',
442 'apr' => 'Apr',
443 'may' => 'May',
444 'jun' => 'Jun',
445 'jul' => 'Jul',
446 'aug' => 'Aug',
447 'sep' => 'Sep',
448 'oct' => 'Oct',
449 'nov' => 'Nov',
450 'dec' => 'Dec',
451 # Bits of text used by many pages:
452 #
453 'categories' => 'Categories',
454 'pagecategories' => '{{PLURAL:$1|Category|Categories}}',
455 'category_header' => 'Articles in category "$1"',
456 'subcategories' => 'Subcategories',
457
458
459 'linkprefix' => '/^(.*?)([a-zA-Z\x80-\xff]+)$/sD',
460 'mainpage' => 'Main Page',
461 'mainpagetext' => "<big>'''MediaWiki has been successfully installed.'''</big>",
462 'mainpagedocfooter' => "Consult the [http://meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software.
463
464 == Getting started ==
465
466 * [http://www.mediawiki.org/wiki/Help:Configuration_settings Configuration settings list]
467 * [http://www.mediawiki.org/wiki/Help:FAQ MediaWiki FAQ]
468 * [http://mail.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]",
469
470 'portal' => 'Community portal',
471 'portal-url' => 'Project:Community Portal',
472 'about' => 'About',
473 'aboutsite' => 'About {{SITENAME}}',
474 'aboutpage' => 'Project:About',
475 'article' => 'Content page',
476 'help' => 'Help',
477 'helppage' => 'Help:Contents',
478 'bugreports' => 'Bug reports',
479 'bugreportspage' => 'Project:Bug_reports',
480 'sitesupport' => 'Donations',
481 'sitesupport-url' => 'Project:Site support',
482 'faq' => 'FAQ',
483 'faqpage' => 'Project:FAQ',
484 'edithelp' => 'Editing help',
485 'newwindow' => '(opens in new window)',
486 'edithelppage' => 'Help:Editing',
487 'cancel' => 'Cancel',
488 'qbfind' => 'Find',
489 'qbbrowse' => 'Browse',
490 'qbedit' => 'Edit',
491 'qbpageoptions' => 'This page',
492 'qbpageinfo' => 'Context',
493 'qbmyoptions' => 'My pages',
494 'qbspecialpages' => 'Special pages',
495 'moredotdotdot' => 'More...',
496 'mypage' => 'My page',
497 'mytalk' => 'My talk',
498 'anontalk' => 'Talk for this IP',
499 'navigation' => 'Navigation',
500
501 # Metadata in edit box
502 'metadata_help' => 'Metadata (see [[{{ns:project}}:Metadata]] for an explanation):',
503
504 'currentevents' => 'Current events',
505 'currentevents-url' => 'Current events',
506
507 'disclaimers' => 'Disclaimers',
508 'disclaimerpage' => 'Project:General_disclaimer',
509 'privacy' => 'Privacy policy',
510 'privacypage' => 'Project:Privacy_policy',
511 'errorpagetitle' => 'Error',
512 'returnto' => 'Return to $1.',
513 'tagline' => 'From {{SITENAME}}',
514 'help' => 'Help',
515 'search' => 'Search',
516 'searchbutton' => 'Search',
517 'go' => 'Go',
518 'searcharticle' => 'Go',
519 'history' => 'Page history',
520 'history_short' => 'History',
521 'updatedmarker' => 'updated since my last visit',
522 'info_short' => 'Information',
523 'printableversion' => 'Printable version',
524 'permalink' => 'Permanent link',
525 'print' => 'Print',
526 'edit' => 'Edit',
527 'editthispage' => 'Edit this page',
528 'delete' => 'Delete',
529 'deletethispage' => 'Delete this page',
530 'undelete_short' => 'Undelete {{PLURAL:$1|one edit|$1 edits}}',
531 'protect' => 'Protect',
532 'protectthispage' => 'Protect this page',
533 'unprotect' => 'unprotect',
534 'unprotectthispage' => 'Unprotect this page',
535 'newpage' => 'New page',
536 'talkpage' => 'Discuss this page',
537 'specialpage' => 'Special Page',
538 'personaltools' => 'Personal tools',
539 'postcomment' => 'Post a comment',
540 'addsection' => '+',
541 'articlepage' => 'View content page',
542 'talk' => 'Discussion',
543 'views' => 'Views',
544 'toolbox' => 'Toolbox',
545 'userpage' => 'View user page',
546 'projectpage' => 'View project page',
547 'imagepage' => 'View image page',
548 'mediawikipage' => 'View message page',
549 'templatepage' => 'View template page',
550 'viewhelppage' => 'View help page',
551 'categorypage' => 'View category page',
552 'viewtalkpage' => 'View discussion',
553 'otherlanguages' => 'In other languages',
554 'redirectedfrom' => '(Redirected from $1)',
555 'autoredircomment' => 'Redirecting to [[$1]]',
556 'redirectpagesub' => 'Redirect page',
557 'lastmodifiedat' => 'This page was last modified $2, $1.', //$1 date, $2 time
558 'viewcount' => 'This page has been accessed {{plural:$1|one time|$1 times}}.',
559 'copyright' => 'Content is available under $1.',
560 'protectedpage' => 'Protected page',
561 'jumpto' => 'Jump to:',
562 'jumptonavigation' => 'navigation',
563 'jumptosearch' => 'search',
564
565 'badaccess' => 'Permission error',
566 'badaccess-group0' => 'You are not allowed to execute the action you have requested.',
567 'badaccess-group1' => 'The action you have requested is limited to users in the group $1.',
568 'badaccess-group2' => 'The action you have requested is limited to users in one of the groups $1.',
569 'badaccess-groups' => 'The action you have requested is limited to users in one of the groups $1.',
570
571 'versionrequired' => 'Version $1 of MediaWiki required',
572 'versionrequiredtext' => 'Version $1 of MediaWiki is required to use this page. See [[Special:Version]]',
573
574 'widthheight' => '$1×$2',
575 'ok' => 'OK',
576 'sitetitle' => '{{SITENAME}}',
577 'pagetitle' => '$1 - {{SITENAME}}',
578 'sitesubtitle' => '',
579 'retrievedfrom' => 'Retrieved from "$1"',
580 'youhavenewmessages' => 'You have $1 ($2).',
581 'newmessageslink' => 'new messages',
582 'newmessagesdifflink' => 'last change',
583 'editsection'=>'edit',
584 'editold'=>'edit',
585 'editsectionhint' => 'Edit section: $1',
586 'toc' => 'Contents',
587 'showtoc' => 'show',
588 'hidetoc' => 'hide',
589 'thisisdeleted' => 'View or restore $1?',
590 'viewdeleted' => 'View $1?',
591 'restorelink' => '{{PLURAL:$1|one deleted edit|$1 deleted edits}}',
592 'feedlinks' => 'Feed:',
593 'feed-invalid' => 'Invalid subscription feed type.',
594 'feed-atom' => 'Atom',
595 'feed-rss' => 'RSS',
596 'sitenotice' => '-', # the equivalent to wgSiteNotice
597 'anonnotice' => '-',
598
599 # Short words for each namespace, by default used in the 'article' tab in monobook
600 'nstab-main' => 'Article',
601 'nstab-user' => 'User page',
602 'nstab-media' => 'Media page',
603 'nstab-special' => 'Special',
604 'nstab-project' => 'Project page',
605 'nstab-image' => 'File',
606 'nstab-mediawiki' => 'Message',
607 'nstab-template' => 'Template',
608 'nstab-help' => 'Help page',
609 'nstab-category' => 'Category',
610
611 # Main script and global functions
612 #
613 'nosuchaction' => 'No such action',
614 'nosuchactiontext' => 'The action specified by the URL is not
615 recognized by the wiki',
616 'nosuchspecialpage' => 'No such special page',
617 'nospecialpagetext' => 'You have requested an invalid special page, a list of valid special pages may be found at [[{{ns:special}}:Specialpages]].',
618
619 # General errors
620 #
621 'error' => 'Error',
622 'databaseerror' => 'Database error',
623 'dberrortext' => 'A database query syntax error has occurred.
624 This may indicate a bug in the software.
625 The last attempted database query was:
626 <blockquote><tt>$1</tt></blockquote>
627 from within function "<tt>$2</tt>".
628 MySQL returned error "<tt>$3: $4</tt>".',
629 'dberrortextcl' => 'A database query syntax error has occurred.
630 The last attempted database query was:
631 "$1"
632 from within function "$2".
633 MySQL returned error "$3: $4"',
634 'noconnect' => 'Sorry! The wiki is experiencing some technical difficulties, and cannot contact the database server. <br />
635 $1',
636 'nodb' => 'Could not select database $1',
637 'cachederror' => 'The following is a cached copy of the requested page, and may not be up to date.',
638 'laggedslavemode' => 'Warning: Page may not contain recent updates.',
639 'readonly' => 'Database locked',
640 'enterlockreason' => 'Enter a reason for the lock, including an estimate
641 of when the lock will be released',
642 '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.
643
644 The administrator who locked it offered this explanation: $1',
645 'missingarticle' => 'The database did not find the text of a page that it should have found, named "$1".
646
647 This is usually caused by following an outdated diff or history link to a
648 page that has been deleted.
649
650 If this is not the case, you may have found a bug in the software.
651 Please report this to an administrator, making note of the URL.',
652 'readonly_lag' => 'The database has been automatically locked while the slave database servers catch up to the master',
653 'internalerror' => 'Internal error',
654 'filecopyerror' => 'Could not copy file "$1" to "$2".',
655 'filerenameerror' => 'Could not rename file "$1" to "$2".',
656 'filedeleteerror' => 'Could not delete file "$1".',
657 'filenotfound' => 'Could not find file "$1".',
658 'unexpected' => 'Unexpected value: "$1"="$2".',
659 'formerror' => 'Error: could not submit form',
660 'badarticleerror' => 'This action cannot be performed on this page.',
661 'cannotdelete' => 'Could not delete the page or file specified. (It may have already been deleted by someone else.)',
662 'badtitle' => 'Bad title',
663 'badtitletext' => 'The requested page title was invalid, empty, or an incorrectly linked inter-language or inter-wiki title. It may contain one more characters which cannot be used in titles.',
664 'perfdisabled' => 'Sorry! This feature has been temporarily disabled because it slows the database down to the point that no one can use the wiki.',
665 'perfdisabledsub' => 'Here is a saved copy from $1:', # obsolete?
666 'perfcached' => 'The following data is cached and may not be up to date.',
667 'perfcachedts' => 'The following data is cached, and was last updated $1.',
668 'wrong_wfQuery_params' => 'Incorrect parameters to wfQuery()<br />
669 Function: $1<br />
670 Query: $2',
671 'viewsource' => 'View source',
672 'viewsourcefor' => 'for $1',
673 'protectedtext' => 'This page has been locked to prevent editing.
674
675 You can view and copy the source of this page:',
676 'protectedinterface' => 'This page provides interface text for the software, and is locked to prevent abuse.',
677 'editinginterface' => "'''Warning:''' You are editing a page which is used to provide interface text for the software. Changes to this page will affect the appearance of the user interface for other users.",
678 'sqlhidden' => '(SQL query hidden)',
679
680 # Login and logout pages
681 #
682 'logouttitle' => 'User logout',
683 'logouttext' => '<strong>You are now logged out.</strong><br />
684 You can continue to use {{SITENAME}} anonymously, or you can log in
685 again as the same or as a different user. Note that some pages may
686 continue to be displayed as if you were still logged in, until you clear
687 your browser cache.',
688
689 'welcomecreation' => "== Welcome, $1! ==
690
691 Your account has been created. Don't forget to change your {{SITENAME}} preferences.",
692
693 'loginpagetitle' => 'User login',
694 'yourname' => 'Username',
695 'yourpassword' => 'Password',
696 'yourpasswordagain' => 'Retype password',
697 'remembermypassword' => 'Remember my login on this computer',
698 'yourdomainname' => 'Your domain',
699 'externaldberror' => 'There was either an external authentication database error or you are not allowed to update your external account.',
700 'loginproblem' => '<b>There has been a problem with your login.</b><br />Try again!',
701 'alreadyloggedin' => "<strong>User $1, you are already logged in!</strong><br />",
702
703 'login' => 'Log in',
704 'loginprompt' => 'You must have cookies enabled to log in to {{SITENAME}}.',
705 'userlogin' => 'Log in / create account',
706 'logout' => 'Log out',
707 'userlogout' => 'Log out',
708 'notloggedin' => 'Not logged in',
709 'nologin' => 'Don\'t have a login? $1.',
710 'nologinlink' => 'Create an account',
711 'createaccount' => 'Create account',
712 'gotaccount' => 'Already have an account? $1.',
713 'gotaccountlink' => 'Log in',
714 'createaccountmail' => 'by e-mail',
715 'badretype' => 'The passwords you entered do not match.',
716 'userexists' => 'Username entered already in use. Please choose a different name.',
717 'youremail' => 'E-mail *:',
718 'username' => 'Username:',
719 'uid' => 'User ID:',
720 'yourrealname' => 'Real name *:',
721 'yourlanguage' => 'Language:',
722 'yourvariant' => 'Variant',
723 'yournick' => 'Nickname:',
724 'badsig' => 'Invalid raw signature; check HTML tags.',
725 'email' => 'E-mail',
726 'prefs-help-email-enotif' => 'This address is also used to send you e-mail notifications if you enabled the options.',
727 'prefs-help-realname' => '* Real name (optional): if you choose to provide it this will be used for giving you attribution for your work.',
728 'loginerror' => 'Login error',
729 'prefs-help-email' => '* E-mail (optional): Enables others to contact you through your user or user_talk page without needing to reveal your identity.',
730 'nocookiesnew' => 'The user account was created, but you are not logged in. {{SITENAME}} uses cookies to log in users. You have cookies disabled. Please enable them, then log in with your new username and password.',
731 'nocookieslogin' => '{{SITENAME}} uses cookies to log in users. You have cookies disabled. Please enable them and try again.',
732 'noname' => 'You have not specified a valid user name.',
733 'loginsuccesstitle' => 'Login successful',
734 'loginsuccess' => "'''You are now logged in to {{SITENAME}} as \"$1\".'''",
735 'nosuchuser' => 'There is no user by the name "$1". Check your spelling, or create a new account.',
736 'nosuchusershort' => 'There is no user by the name "$1". Check your spelling.',
737 'nouserspecified' => 'You have to specify a username.',
738 'wrongpassword' => 'Incorrect password entered. Please try again.',
739 'wrongpasswordempty' => 'Password entered was blank. Please try again.',
740 'mailmypassword' => 'E-mail password',
741 'passwordremindertitle' => 'Password reminder from {{SITENAME}}',
742 'passwordremindertext' => 'Someone (probably you, from IP address $1)
743 requested that we send you a new password for {{SITENAME}} ($4).
744 The password for user "$2" is now "$3".
745 You should log in and change your password now.
746
747 If someone else made this request or if you have remembered your password and
748 you no longer wish to change it, you may ignore this message and continue using
749 your old password.',
750 'noemail' => 'There is no e-mail address recorded for user "$1".',
751 'passwordsent' => 'A new password has been sent to the e-mail address
752 registered for "$1".
753 Please log in again after you receive it.',
754 'blocked-mailpassword' => 'Your IP address is blocked from editing, and so
755 is not allowed to use the password recovery function to prevent abuse.',
756 'eauthentsent' => 'A confirmation e-mail has been sent to the nominated e-mail address.
757 Before any other mail is sent to the account, you will have to follow the instructions in the e-mail,
758 to confirm that the account is actually yours.',
759 'throttled-mailpassword' => 'A password reminder has already been sent, within the
760 last $1 hours. To prevent abuse, only one password reminder will be sent per
761 $1 hours.',
762 'loginend' => '',
763 'signupend' => '{{int:loginend}}',
764 'mailerror' => 'Error sending mail: $1',
765 'acct_creation_throttle_hit' => 'Sorry, you have already created $1 accounts. You can\'t make any more.',
766 'emailauthenticated' => 'Your e-mail address was authenticated on $1.',
767 'emailnotauthenticated' => 'Your e-mail address is not yet authenticated. No e-mail
768 will be sent for any of the following features.',
769 'noemailprefs' => 'Specify an e-mail address for these features to work.',
770 'emailconfirmlink' => 'Confirm your e-mail address',
771 'invalidemailaddress' => 'The e-mail address cannot be accepted as it appears to have an invalid
772 format. Please enter a well-formatted address or empty that field.',
773 'accountcreated' => 'Account created',
774 'accountcreatedtext' => 'The user account for $1 has been created.',
775
776 # Edit page toolbar
777 'bold_sample'=>'Bold text',
778 'bold_tip'=>'Bold text',
779 'italic_sample'=>'Italic text',
780 'italic_tip'=>'Italic text',
781 'link_sample'=>'Link title',
782 'link_tip'=>'Internal link',
783 'extlink_sample'=>'http://www.example.com link title',
784 'extlink_tip'=>'External link (remember http:// prefix)',
785 'headline_sample'=>'Headline text',
786 'headline_tip'=>'Level 2 headline',
787 'math_sample'=>'Insert formula here',
788 'math_tip'=>'Mathematical formula (LaTeX)',
789 'nowiki_sample'=>'Insert non-formatted text here',
790 'nowiki_tip'=>'Ignore wiki formatting',
791 'image_sample'=>'Example.jpg',
792 'image_tip'=>'Embedded image',
793 'media_sample'=>'Example.ogg',
794 'media_tip'=>'Media file link',
795 'sig_tip'=>'Your signature with timestamp',
796 'hr_tip'=>'Horizontal line (use sparingly)',
797
798 # Edit pages
799 #
800 'summary' => 'Summary',
801 'subject' => 'Subject/headline',
802 'minoredit' => 'This is a minor edit',
803 'watchthis' => 'Watch this page',
804 'savearticle' => 'Save page',
805 'preview' => 'Preview',
806 'showpreview' => 'Show preview',
807 'showlivepreview' => 'Live preview',
808 'showdiff' => 'Show changes',
809 'anoneditwarning' => "'''Warning:''' You are not logged in. Your IP address will be recorded in this page's edit history.",
810 'missingsummary' => "'''Reminder:''' You have not provided an edit summary. If you click Save again, your edit will be saved without one.",
811 'missingcommenttext' => 'Please enter a comment below.',
812 'blockedtitle' => 'User is blocked',
813 'blockedtext' => "<big>'''Your user name or IP address has been blocked.'''</big>
814
815 The block was made by $1. The reason given is ''$2''.
816
817 You can contact $1 or another [[{{ns:project}}:Administrators|administrator]] to discuss the block.
818 You cannot use the 'email this user' feature unless a valid email address is specified in your
819 [[Special:Preferences|account preferences]]. Your current IP address is $3. Please include this in any queries.",
820 'blockedoriginalsource' => "The source of '''$1''' is shown below:",
821 'blockededitsource' => "The text of '''your edits''' to '''$1''' is shown below:",
822 'whitelistedittitle' => 'Login required to edit',
823 'whitelistedittext' => 'You have to $1 to edit pages.',
824 'whitelistreadtitle' => 'Login required to read',
825 'whitelistreadtext' => 'You have to [[Special:Userlogin|login]] to read pages.',
826 'whitelistacctitle' => 'You are not allowed to create an account',
827 'whitelistacctext' => 'To be allowed to create accounts in this Wiki you have to [[Special:Userlogin|log]] in and have the appropriate permissions.',
828 'confirmedittitle' => 'E-mail confirmation required to edit',
829 'confirmedittext' => 'You must confirm your e-mail address before editing pages. Please set and validate your e-mail address through your [[Special:Preferences|user preferences]].',
830 'loginreqtitle' => 'Login Required',
831 'loginreqlink' => 'log in',
832 'loginreqpagetext' => 'You must $1 to view other pages.',
833 'accmailtitle' => 'Password sent.',
834 'accmailtext' => 'The password for "$1" has been sent to $2.',
835 'newarticle' => '(New)',
836 'newarticletext' =>
837 "You've followed a link to a page that doesn't exist yet.
838 To create the page, start typing in the box below
839 (see the [[{{ns:help}}:Contents|help page]] for more info).
840 If you are here by mistake, just click your browser's '''back''' button.",
841 'newarticletextanon' => '{{int:newarticletext}}',
842 'talkpagetext' => '<!-- MediaWiki:talkpagetext -->',
843 'anontalkpagetext' => "----''This is the discussion page for an anonymous user who has not created an account yet or who does not use it. We therefore have to use the numerical IP address to identify him/her. Such an IP address can be shared by several users. If you are an anonymous user and feel that irrelevant comments have been directed at you, please [[Special:Userlogin|create an account or log in]] to avoid future confusion with other anonymous users.''",
844 'noarticletext' => 'There is currently no text in this page, you can [[{{ns:special}}:Search/{{PAGENAME}}|search for this page title]] in other pages or [{{fullurl:{{FULLPAGENAME}}|action=edit}} edit this page].',
845 'noarticletextanon' => '{{int:noarticletext}}',
846 'clearyourcache' => "'''Note:''' After saving, you may have to bypass your browser's cache to see the changes. '''Mozilla / Firefox / Safari:''' hold down ''Shift'' while clicking ''Reload'', or press ''Ctrl-Shift-R'' (''Cmd-Shift-R'' on Apple Mac); '''IE:''' hold ''Ctrl'' while clicking ''Refresh'', or press ''Ctrl-F5''; '''Konqueror:''': simply click the ''Reload'' button, or press ''F5''; '''Opera''' users may need to completely clear their cache in ''Tools→Preferences''.",
847 'usercssjsyoucanpreview' => '<strong>Tip:</strong> Use the \'Show preview\' button to test your new CSS/JS before saving.',
848 'usercsspreview' => '\'\'\'Remember that you are only previewing your user CSS, it has not yet been saved!\'\'\'',
849 'userjspreview' => '\'\'\'Remember that you are only testing/previewing your user JavaScript, it has not yet been saved!\'\'\'',
850 'userinvalidcssjstitle' => "'''Warning:''' There is no skin \"$1\". Remember that custom .css and .js pages use a lowercase title, e.g. User:Foo/monobook.css as opposed to User:Foo/Monobook.css.",
851 'updated' => '(Updated)',
852 'note' => '<strong>Note:</strong>',
853 'previewnote' => '<strong>This is only a preview; changes have not yet been saved!</strong>',
854 'session_fail_preview' => '<strong>Sorry! We could not process your edit due to a loss of session data.
855 Please try again. If it still doesn\'t work, try logging out and logging back in.</strong>',
856 'previewconflict' => 'This preview reflects the text in the upper text editing area as it will appear if you choose to save.',
857 'session_fail_preview_html' => '<strong>Sorry! We could not process your edit due to a loss of session data.</strong>
858
859 \'\'Because this wiki has raw HTML enabled, the preview is hidden as a precaution against JavaScript attacks.\'\'
860
861 <strong>If this is a legitimate edit attempt, please try again. If it still doesn\'t work, try logging out and logging back in.</strong>',
862 'importing' => 'Importing $1',
863 'editing' => 'Editing $1',
864 'editinguser' => 'Editing user <b>$1</b>',
865 'editingsection' => 'Editing $1 (section)',
866 'editingcomment' => 'Editing $1 (comment)',
867 'editconflict' => 'Edit conflict: $1',
868 'explainconflict' => 'Someone else has changed this page since you started editing it.
869 The upper text area contains the page text as it currently exists.
870 Your changes are shown in the lower text area.
871 You will have to merge your changes into the existing text.
872 <b>Only</b> the text in the upper text area will be saved when you
873 press "Save page".<br />',
874 'yourtext' => 'Your text',
875 'storedversion' => 'Stored version',
876 'nonunicodebrowser' => "<strong>WARNING: Your browser is not unicode compliant. A workaround is in place to allow you to safely edit articles: non-ASCII characters will appear in the edit box as hexadecimal codes.</strong>",
877 'editingold' => "<strong>WARNING: You are editing an out-of-date
878 revision of this page.
879 If you save it, any changes made since this revision will be lost.</strong>",
880 'yourdiff' => 'Differences',
881 'copyrightwarning' => 'Please note that all contributions to {{SITENAME}} are considered to be released under the $2 (see $1 for details). If you don\'t want your writing to be edited mercilessly and redistributed at will, then don\'t submit it here.<br />
882 You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
883 <strong>DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION!</strong>',
884 'copyrightwarning2' => 'Please note that all contributions to {{SITENAME}} may be edited, altered, or removed by other contributors. If you don\'t want your writing to be edited mercilessly, then don\'t submit it here.<br />
885 You are also promising us that you wrote this yourself, or copied it from a
886 public domain or similar free resource (see $1 for details).
887 <strong>DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION!</strong>',
888 'longpagewarning' => "<strong>WARNING: This page is $1 kilobytes long; some
889 browsers may have problems editing pages approaching or longer than 32kb.
890 Please consider breaking the page into smaller sections.</strong>",
891 'longpageerror' => "<strong>ERROR: The text you have submitted is $1 kilobytes
892 long, which is longer than the maximum of $2 kilobytes. It cannot be saved.</strong>",
893 'readonlywarning' => '<strong>WARNING: The database has been locked for maintenance,
894 so you will not be able to save your edits right now. You may wish to cut-n-paste
895 the text into a text file and save it for later.</strong>',
896 'protectedpagewarning' => "<strong>WARNING: This page has been locked so that only users with sysop privileges can edit it.</strong>",
897 'semiprotectedpagewarning' => "'''Note:''' This page has been locked so that only registered users can edit it.",
898 'templatesused' => 'Templates used on this page:',
899 'edittools' => '<!-- Text here will be shown below edit and upload forms. -->',
900 'nocreatetitle' => 'Page creation limited',
901 'nocreatetext' => 'This site has restricted the ability to create new pages.
902 You can go back and edit an existing page, or [[Special:Userlogin|log in or create an account]].',
903 'cantcreateaccounttitle' => 'Can\'t create account',
904 'cantcreateaccounttext' => 'Account creation from this IP address (<b>$1</b>) has been blocked.
905 This is probably due to persistent vandalism from your school or Internet service
906 provider.',
907
908 # History pages
909 #
910 'revhistory' => 'Revision history',
911 'viewpagelogs' => 'View logs for this page',
912 'nohistory' => 'There is no edit history for this page.',
913 'revnotfound' => 'Revision not found',
914 'revnotfoundtext' => "The old revision of the page you asked for could not be found.
915 Please check the URL you used to access this page.",
916 'loadhist' => 'Loading page history',
917 'currentrev' => 'Current revision',
918 'revisionasof' => 'Revision as of $1',
919 'old-revision-navigation' => 'Revision as of $1; $5<br />($6) $3 | $2 | $4 ($7)',
920 'previousrevision' => '←Older revision',
921 'nextrevision' => 'Newer revision→',
922 'currentrevisionlink' => 'Current revision',
923 'cur' => 'cur',
924 'next' => 'next',
925 'last' => 'last',
926 'orig' => 'orig',
927 'histlegend' => 'Diff selection: mark the radio boxes of the versions to compare and hit enter or the button at the bottom.<br />
928 Legend: (cur) = difference with current version,
929 (last) = difference with preceding version, M = minor edit.',
930 'history_copyright' => '-',
931 'deletedrev' => '[deleted]',
932 'histfirst' => 'Earliest',
933 'histlast' => 'Latest',
934 'rev-deleted-comment' => '(comment removed)',
935 'rev-deleted-user' => '(username removed)',
936 'rev-deleted-text-permission' => '<div class="mw-warning plainlinks">
937 This page revision has been removed from the public archives.
938 There may be details in the [{{fullurl:Special:Log/delete|page={{PAGENAMEE}}}} deletion log].
939 </div>',
940 'rev-deleted-text-view' => '<div class="mw-warning plainlinks">
941 This page revision has been removed from the public archives.
942 As an administrator on this site you can view it;
943 there may be details in the [{{fullurl:Special:Log/delete|page={{PAGENAMEE}}}} deletion log].
944 </div>',
945 #'rev-delundel' => 'del/undel',
946 'rev-delundel' => 'show/hide',
947
948 'history-feed-title' => 'Revision history',
949 'history-feed-description' => 'Revision history for this page on the wiki',
950 'history-feed-item-nocomment' => '$1 at $2', # user at time
951 'history-feed-empty' => 'The requested page doesn\'t exist.
952 It may have been deleted from the wiki, or renamed.
953 Try [[Special:Search|searching on the wiki]] for relevant new pages.',
954
955 # Revision deletion
956 #
957 'revisiondelete' => 'Delete/undelete revisions',
958 'revdelete-nooldid-title' => 'No target revision',
959 'revdelete-nooldid-text' => 'You have not specified target revision or revisions
960 to perform this function on.',
961 'revdelete-selected' => 'Selected revision of [[:$1]]:',
962 'revdelete-text' => "Deleted revisions will still appear in the page history,
963 but their text contents will be inaccessible to the public.
964
965 Other admins on this wiki will still be able to access the hidden content and can
966 undelete it again through this same interface, unless an additional restriction
967 is placed by the site operators.",
968 'revdelete-legend' => 'Set revision restrictions:',
969 'revdelete-hide-text' => 'Hide revision text',
970 'revdelete-hide-comment' => 'Hide edit comment',
971 'revdelete-hide-user' => 'Hide editor\'s username/IP',
972 'revdelete-hide-restricted' => 'Apply these restrictions to sysops as well as others',
973 'revdelete-log' => 'Log comment:',
974 'revdelete-submit' => 'Apply to selected revision',
975 'revdelete-logentry' => 'changed revision visibility for [[$1]]',
976
977 # Diffs
978 #
979 'difference' => '(Difference between revisions)',
980 'loadingrev' => 'loading revision for diff',
981 'lineno' => "Line $1:",
982 'editcurrent' => 'Edit the current version of this page',
983 'selectnewerversionfordiff' => 'Select a newer version for comparison',
984 'selectolderversionfordiff' => 'Select an older version for comparison',
985 'compareselectedversions' => 'Compare selected versions',
986
987 # Search results
988 #
989 'searchresults' => 'Search results',
990 'searchresulttext' => "For more information about searching {{SITENAME}}, see [[{{ns:project}}:Searching|Searching {{SITENAME}}]].",
991 'searchsubtitle' => "You searched for '''[[:$1]]'''",
992 'searchsubtitleinvalid' => "You searched for '''$1'''",
993 'badquery' => 'Badly formed search query',
994 'badquerytext' => 'We could not process your query.
995 This is probably because you have attempted to search for a
996 word fewer than three letters long, which is not yet supported.
997 It could also be that you have mistyped the expression, for
998 example "fish and and scales".
999 Please try another query.',
1000 'matchtotals' => "The query \"$1\" matched $2 page titles
1001 and the text of $3 pages.",
1002 'noexactmatch' => "'''There is no page titled \"$1\".''' You can [[:$1|create this page]].",
1003 'titlematches' => 'Article title matches',
1004 'notitlematches' => 'No page title matches',
1005 'textmatches' => 'Page text matches',
1006 'notextmatches' => 'No page text matches',
1007 'prevn' => "previous $1",
1008 'nextn' => "next $1",
1009 'viewprevnext' => "View ($1) ($2) ($3).",
1010 'showingresults' => "Showing below up to <b>$1</b> results starting with #<b>$2</b>.",
1011 'showingresultsnum' => "Showing below <b>$3</b> results starting with #<b>$2</b>.",
1012 'nonefound' => "'''Note''': Unsuccessful searches are
1013 often caused by searching for common words like \"have\" and \"from\",
1014 which are not indexed, or by specifying more than one search term (only pages
1015 containing all of the search terms will appear in the result).",
1016 'powersearch' => 'Search',
1017 'powersearchtext' => "Search in namespaces:<br />$1<br />$2 List redirects<br />Search for $3 $9",
1018 'searchdisabled' => '{{SITENAME}} search is disabled. You can search via Google in the meantime. Note that their indexes of {{SITENAME}} content may be out of date.',
1019
1020 'googlesearch' => '
1021 <form method="get" action="http://www.google.com/search" id="googlesearch">
1022 <input type="hidden" name="domains" value="{{SERVER}}" />
1023 <input type="hidden" name="num" value="50" />
1024 <input type="hidden" name="ie" value="$2" />
1025 <input type="hidden" name="oe" value="$2" />
1026
1027 <input type="text" name="q" size="31" maxlength="255" value="$1" />
1028 <input type="submit" name="btnG" value="$3" />
1029 <div>
1030 <input type="radio" name="sitesearch" id="gwiki" value="{{SERVER}}" checked="checked" /><label for="gwiki">{{SITENAME}}</label>
1031 <input type="radio" name="sitesearch" id="gWWW" value="" /><label for="gWWW">WWW</label>
1032 </div>
1033 </form>',
1034 'blanknamespace' => '(Main)',
1035
1036 # Preferences page
1037 #
1038 'preferences' => 'Preferences',
1039 'preferences-summary' => '',
1040 'mypreferences' => 'My preferences',
1041 'prefsnologin' => 'Not logged in',
1042 'prefsnologintext' => "You must be [[Special:Userlogin|logged in]] to set user preferences.",
1043 'prefsreset' => 'Preferences have been reset from storage.',
1044 'qbsettings' => 'Quickbar',
1045 'changepassword' => 'Change password',
1046 'skin' => 'Skin',
1047 'math' => 'Math',
1048 'dateformat' => 'Date format',
1049 'datedefault' => 'No preference',
1050 'datetime' => 'Date and time',
1051 'math_failure' => 'Failed to parse',
1052 'math_unknown_error' => 'unknown error',
1053 'math_unknown_function' => 'unknown function',
1054 'math_lexing_error' => 'lexing error',
1055 'math_syntax_error' => 'syntax error',
1056 'math_image_error' => 'PNG conversion failed; check for correct installation of latex, dvips, gs, and convert',
1057 'math_bad_tmpdir' => 'Can\'t write to or create math temp directory',
1058 'math_bad_output' => 'Can\'t write to or create math output directory',
1059 'math_notexvc' => 'Missing texvc executable; please see math/README to configure.',
1060 'prefs-personal' => 'User profile',
1061 'prefs-rc' => 'Recent changes',
1062 'prefs-watchlist' => 'Watchlist',
1063 'prefs-watchlist-days' => 'Number of days to show in watchlist:',
1064 'prefs-watchlist-edits' => 'Number of edits to show in expanded watchlist:',
1065 'prefs-misc' => 'Misc',
1066 'saveprefs' => 'Save',
1067 'resetprefs' => 'Reset',
1068 'oldpassword' => 'Old password:',
1069 'newpassword' => 'New password:',
1070 'retypenew' => 'Retype new password:',
1071 'textboxsize' => 'Editing',
1072 'rows' => 'Rows:',
1073 'columns' => 'Columns:',
1074 'searchresultshead' => 'Search',
1075 'resultsperpage' => 'Hits per page:',
1076 'contextlines' => 'Lines per hit:',
1077 'contextchars' => 'Context per line:',
1078 'stubthreshold' => 'Threshold for stub display:',
1079 'recentchangescount' => 'Titles in recent changes:',
1080 'savedprefs' => 'Your preferences have been saved.',
1081 'timezonelegend' => 'Time zone',
1082 'timezonetext' => 'The number of hours your local time differs from server time (UTC).',
1083 'localtime' => 'Local time',
1084 'timezoneoffset' => 'Offset¹',
1085 'servertime' => 'Server time',
1086 'guesstimezone' => 'Fill in from browser',
1087 'allowemail' => 'Enable e-mail from other users',
1088 'defaultns' => 'Search in these namespaces by default:',
1089 'default' => 'default',
1090 'files' => 'Files',
1091
1092 # User rights
1093 'userrights-lookup-user' => 'Manage user groups',
1094 'userrights-user-editname' => 'Enter a username:',
1095 'editusergroup' => 'Edit User Groups',
1096
1097 'userrights-editusergroup' => 'Edit user groups',
1098 'saveusergroups' => 'Save User Groups',
1099 'userrights-groupsmember' => 'Member of:',
1100 'userrights-groupsavailable' => 'Available groups:',
1101 'userrights-groupshelp' => 'Select groups you want the user to be removed from or added to.
1102 Unselected groups will not be changed. You can deselect a group with CTRL + Left Click',
1103
1104 # Groups
1105 'group' => 'Group:',
1106 'group-bot' => 'Bots',
1107 'group-sysop' => 'Sysops',
1108 'group-bureaucrat' => 'Bureaucrats',
1109 'group-all' => '(all)',
1110
1111 'group-bot-member' => 'Bot',
1112 'group-sysop-member' => 'Sysop',
1113 'group-bureaucrat-member' => 'Bureaucrat',
1114
1115 'grouppage-bot' => '{{ns:project}}:Bots',
1116 'grouppage-sysop' => '{{ns:project}}:Administrators',
1117 'grouppage-bureaucrat' => '{{ns:project}}:Bureaucrats',
1118
1119 # Recent changes
1120 #
1121 'changes' => 'changes',
1122 'recentchanges' => 'Recent changes',
1123 'recentchanges-url' => 'Special:Recentchanges',
1124 'recentchangestext' => 'Track the most recent changes to the wiki on this page.',
1125 'rcnote' => "Below are the last <strong>$1</strong> changes in the last <strong>$2</strong> days, as of $3.",
1126 'rcnotefrom' => "Below are the changes since <b>$2</b> (up to <b>$1</b> shown).",
1127 'rclistfrom' => "Show new changes starting from $1",
1128 'rcshowhideminor' => '$1 minor edits',
1129 'rcshowhidebots' => '$1 bots',
1130 'rcshowhideliu' => '$1 logged-in users',
1131 'rcshowhideanons' => '$1 anonymous users',
1132 'rcshowhidepatr' => '$1 patrolled edits',
1133 'rcshowhidemine' => '$1 my edits',
1134 'rclinks' => "Show last $1 changes in last $2 days<br />$3",
1135 'diff' => 'diff',
1136 'hist' => 'hist',
1137 'hide' => 'Hide',
1138 'show' => 'Show',
1139 'minoreditletter' => 'm',
1140 'newpageletter' => 'N',
1141 'boteditletter' => 'b',
1142 'sectionlink' => '→',
1143 'number_of_watching_users_RCview' => '[$1]',
1144 'number_of_watching_users_pageview' => '[$1 watching user/s]',
1145 'rc_categories' => 'Limit to categories (separate with "|")',
1146 'rc_categories_any' => 'Any',
1147
1148 # Upload
1149 #
1150 'upload' => 'Upload file',
1151 'uploadbtn' => 'Upload file',
1152 'reupload' => 'Re-upload',
1153 'reuploaddesc' => 'Return to the upload form.',
1154 'uploadnologin' => 'Not logged in',
1155 'uploadnologintext' => "You must be [[Special:Userlogin|logged in]]
1156 to upload files.",
1157 'upload_directory_read_only' => 'The upload directory ($1) is not writable by the webserver.',
1158 'uploaderror' => 'Upload error',
1159 'uploadtext' => "Use the form below to upload files, to view or search previously uploaded images go to the [[Special:Imagelist|list of uploaded files]], uploads and deletions are also logged in the [[Special:Log/upload|upload log]].
1160
1161 To include the image in a page, use a link in the form
1162 '''<nowiki>[[{{ns:image}}:File.jpg]]</nowiki>''',
1163 '''<nowiki>[[{{ns:image}}:File.png|alt text]]</nowiki>''' or
1164 '''<nowiki>[[{{ns:media}}:File.ogg]]</nowiki>''' for directly linking to the file.",
1165 'uploadlog' => 'upload log',
1166 'uploadlogpage' => 'Upload log',
1167 'uploadlogpagetext' => 'Below is a list of the most recent file uploads.',
1168 'filename' => 'Filename',
1169 'filedesc' => 'Summary',
1170 'fileuploadsummary' => 'Summary:',
1171 'filestatus' => 'Copyright status',
1172 'filesource' => 'Source',
1173 'copyrightpage' => "Project:Copyrights",
1174 'copyrightpagename' => "{{SITENAME}} copyright",
1175 'uploadedfiles' => 'Uploaded files',
1176 'ignorewarning' => 'Ignore warning and save file anyway.',
1177 'ignorewarnings' => 'Ignore any warnings',
1178 'minlength' => 'File names must be at least three letters.',
1179 'illegalfilename' => 'The filename "$1" contains characters that are not allowed in page titles. Please rename the file and try uploading it again.',
1180 'badfilename' => 'File name has been changed to "$1".',
1181 'badfiletype' => "\".$1\" is not a recommended image file format.",
1182 'largefile' => 'It is recommended that files do not exceed $1 bytes in size; this file is $2 bytes',
1183 'largefileserver' => 'This file is bigger than the server is configured to allow.',
1184 'emptyfile' => 'The file you uploaded seems to be empty. This might be due to a typo in the file name. Please check whether you really want to upload this file.',
1185 'fileexists' => 'A file with this name exists already, please check $1 if you are not sure if you want to change it.',
1186 'fileexists-forbidden' => 'A file with this name exists already; please go back and upload this file under a new name. [[Image:$1|thumb|center|$1]]',
1187 'fileexists-shared-forbidden' => 'A file with this name exists already in the shared file repository; please go back and upload this file under a new name. [[Image:$1|thumb|center|$1]]',
1188 'successfulupload' => 'Successful upload',
1189 'fileuploaded' => "File $1 uploaded successfully.
1190 Please follow this link: $2 to the description page and fill
1191 in information about the file, such as where it came from, when it was
1192 created and by whom, and anything else you may know about it. If this is an image, you can insert it like this: <tt><nowiki>[[Image:$1|thumb|Description]]</nowiki></tt>",
1193 'uploadwarning' => 'Upload warning',
1194 'savefile' => 'Save file',
1195 'uploadedimage' => "uploaded \"[[$1]]\"",
1196 'uploaddisabled' => 'Uploads disabled',
1197 'uploaddisabledtext' => 'File uploads are disabled on this wiki.',
1198 'uploadscripted' => 'This file contains HTML or script code that may be erroneously be interpreted by a web browser.',
1199 'uploadcorrupt' => 'The file is corrupt or has an incorrect extension. Please check the file and upload again.',
1200 'uploadvirus' => 'The file contains a virus! Details: $1',
1201 'sourcefilename' => 'Source filename',
1202 'destfilename' => 'Destination filename',
1203 'watchthisupload' => 'Watch this page',
1204 'filewasdeleted' => 'A file of this name has been previously uploaded and subsequently deleted. You should check the $1 before proceeding to upload it again.',
1205
1206 'license' => 'Licensing',
1207 'nolicense' => 'None selected',
1208 'licenses' => '-', # Don't duplicate this in translations
1209 'upload_source_url' => ' (a valid, publicly accessible URL)',
1210 'upload_source_file' => ' (a file on your computer)',
1211
1212 # Image list
1213 #
1214 'imagelist' => 'File list',
1215 'imagelist-summary' => '',
1216 'imagelisttext' => "Below is a list of '''$1''' {{plural:$1|file|files}} sorted $2.",
1217 'imagelistforuser' => "This shows only images uploaded by $1.",
1218 'getimagelist' => 'fetching file list',
1219 'ilsubmit' => 'Search',
1220 'showlast' => 'Show last $1 files sorted $2.',
1221 'byname' => 'by name',
1222 'bydate' => 'by date',
1223 'bysize' => 'by size',
1224 'imgdelete' => 'del',
1225 'imgdesc' => 'desc',
1226 'imgfile' => 'file',
1227 'imglegend' => 'Legend: (desc) = show/edit file description.',
1228 'imghistory' => 'File history',
1229 'revertimg' => 'rev',
1230 'deleteimg' => 'del',
1231 'deleteimgcompletely' => 'Delete all revisions of this file',
1232 'imghistlegend' => 'Legend: (cur) = this is the current file, (del) = delete
1233 this old version, (rev) = revert to this old version.
1234 <br /><i>Click on date to see the file uploaded on that date</i>.',
1235 'imagelinks' => 'Links',
1236 'linkstoimage' => 'The following pages link to this file:',
1237 'nolinkstoimage' => 'There are no pages that link to this file.',
1238 'sharedupload' => 'This file is a shared upload and may be used by other projects.',
1239 'shareduploadwiki' => 'Please see the $1 for further information.',
1240 'shareduploadwiki-linktext' => 'file description page',
1241 'shareddescriptionfollows' => '-',
1242 'noimage' => 'No file by this name exists, you can $1.',
1243 'noimage-linktext' => 'upload it',
1244 'uploadnewversion-linktext' => 'Upload a new version of this file',
1245 'imagelist_date' => 'Date',
1246 'imagelist_name' => 'Name',
1247 'imagelist_user' => 'User',
1248 'imagelist_size' => 'Size (bytes)',
1249 'imagelist_description' => 'Description',
1250 'imagelist_search_for' => 'Search for image name:',
1251
1252 # Mime search
1253 #
1254 'mimesearch' => 'MIME search',
1255 'mimesearch-summary' => '',
1256 'mimetype' => 'MIME type:',
1257 'download' => 'download',
1258
1259 # Unwatchedpages
1260 #
1261 'unwatchedpages' => 'Unwatched pages',
1262 'unwatchedpages-summary' => '',
1263
1264 # List redirects
1265 'listredirects' => 'List redirects',
1266 'listredirects-summary' => '',
1267
1268 # Unused templates
1269 'unusedtemplates' => 'Unused templates',
1270 'unusedtemplates-summary' => '',
1271 'unusedtemplatestext' => 'This page lists all pages in the template namespace which are not included in another page. Remember to check for other links to the templates before deleting them.',
1272 'unusedtemplateswlh' => 'other links',
1273
1274 # Random redirect
1275 'randomredirect' => 'Random redirect',
1276
1277 # Statistics
1278 #
1279 'statistics' => 'Statistics',
1280 'sitestats' => '{{SITENAME}} statistics',
1281 'userstats' => 'User statistics',
1282 'sitestatstext' => "There are '''$1''' total pages in the database.
1283 This includes \"talk\" pages, pages about {{SITENAME}}, minimal \"stub\"
1284 pages, redirects, and others that probably don't qualify as content pages.
1285 Excluding those, there are '''$2''' pages that are probably legitimate
1286 content pages.
1287
1288 '''$8''' files have been uploaded.
1289
1290 There have been a total of '''$3''' page views, and '''$4''' page edits
1291 since the wiki was setup.
1292 That comes to '''$5''' average edits per page, and '''$6''' views per edit.
1293
1294 The [http://meta.wikimedia.org/wiki/Help:Job_queue job queue] length is '''$7'''.",
1295 'userstatstext' => "There are '''$1''' registered users, of which
1296 '''$2''' (or '''$4%''') are $5.",
1297 'statistics-mostpopular' => 'Most viewed pages',
1298
1299 'disambiguations' => 'Disambiguation pages',
1300 'disambiguations-summary' => '',
1301 'disambiguationspage' => 'Template:disambig',
1302 'disambiguationstext' => "The following pages link to a <i>disambiguation page</i>. They should link to the appropriate topic instead.<br />A page is treated as disambiguation if it is linked from $1.<br />Links from other namespaces are <i>not</i> listed here.",
1303
1304 'doubleredirects' => 'Double redirects',
1305 'doubleredirects-summary' => '',
1306 'doubleredirectstext' => "Each row contains links to the first and second redirect, as well as the first line of the second redirect text, usually giving the \"real\" target page, which the first redirect should point to.",
1307
1308 'brokenredirects' => 'Broken redirects',
1309 'brokenredirects-summary' => '',
1310 'brokenredirectstext' => 'The following redirects link to non-existent pages:',
1311
1312
1313 # Miscellaneous special pages
1314 #
1315 'nbytes' => '$1 {{PLURAL:$1|byte|bytes}}',
1316 'ncategories' => '$1 {{PLURAL:$1|category|categories}}',
1317 'nlinks' => '$1 {{PLURAL:$1|link|links}}',
1318 'nmembers' => '$1 {{PLURAL:$1|member|members}}',
1319 'nrevisions' => '$1 {{PLURAL:$1|revision|revisions}}',
1320 'nviews' => '$1 {{PLURAL:$1|view|views}}',
1321
1322 'lonelypages' => 'Orphaned pages',
1323 'lonelypages-summary' => '',
1324 'lonelypagestext' => 'The following pages are not linked from other pages in this wiki.',
1325 'uncategorizedpages' => 'Uncategorized pages',
1326 'uncategorizedpages-summary' => '',
1327 'uncategorizedcategories' => 'Uncategorized categories',
1328 'uncategorizedcategories-summary' => '',
1329 'uncategorizedimages' => 'Uncategorized images',
1330 'uncategorizedimages-summary' => '',
1331 'unusedcategories' => 'Unused categories',
1332 'unusedimages' => 'Unused files',
1333 'popularpages' => 'Popular pages',
1334 'popularpages-summary' => '',
1335 'wantedcategories' => 'Wanted categories',
1336 'wantedcategories-summary' => '',
1337 'wantedpages' => 'Wanted pages',
1338 'wantedpages-summary' => '',
1339 'mostlinked' => 'Most linked to pages',
1340 'mostlinked-summary' => '',
1341 'mostlinkedcategories' => 'Most linked to categories',
1342 'mostlinkedcategories-summary' => '',
1343 'mostcategories' => 'Articles with the most categories',
1344 'mostcategories-summary' => '',
1345 'mostimages' => 'Most linked to images',
1346 'mostimages-summary' => '',
1347 'mostrevisions' => 'Articles with the most revisions',
1348 'mostrevisions-summary' => '',
1349 'allpages' => 'All pages',
1350 'allpages-summary' => '',
1351 'prefixindex' => 'Prefix index',
1352 'prefixindex-summary' => '',
1353 'randompage' => 'Random page',
1354 'randompage-url'=> 'Special:Random',
1355 'shortpages' => 'Short pages',
1356 'shortpages-summary' => '',
1357 'longpages' => 'Long pages',
1358 'longpages-summary' => '',
1359 'deadendpages' => 'Dead-end pages',
1360 'deadendpages-summary' => '',
1361 'deadendpagestext' => 'The following pages do not link to other pages in this wiki.',
1362 'listusers' => 'User list',
1363 'listusers-summary' => '',
1364 'specialpages' => 'Special pages',
1365 'specialpages-summary' => '',
1366 'spheading' => 'Special pages for all users',
1367 'restrictedpheading' => 'Restricted special pages',
1368 'recentchangeslinked' => 'Related changes',
1369 'rclsub' => "(to pages linked from \"$1\")",
1370 'newpages' => 'New pages',
1371 'newpages-summary' => '',
1372 'newpages-username' => 'Username:',
1373 'ancientpages' => 'Oldest pages',
1374 'ancientpages-summary' => '',
1375 'intl' => 'Interlanguage links',
1376 'move' => 'Move',
1377 'movethispage' => 'Move this page',
1378 'unusedimagestext' => '<p>Please note that other web sites may link to an image with
1379 a direct URL, and so may still be listed here despite being
1380 in active use.</p>',
1381 'unusedcategoriestext' => 'The following category pages exist although no other article or category make use of them.',
1382
1383 'booksources' => 'Book sources',
1384 'booksources-summary' => '',
1385 'categoriespagetext' => 'The following categories exist in the wiki.',
1386 'data' => 'Data',
1387 'userrights' => 'User rights management',
1388 'userrights-summary' => '',
1389 'groups' => 'User groups',
1390
1391 'booksourcetext' => "Below is a list of links to other sites that
1392 sell new and used books, and may also have further information
1393 about books you are looking for.",
1394 'isbn' => 'ISBN',
1395 'rfcurl' => 'http://www.ietf.org/rfc/rfc$1.txt',
1396 'pubmedurl' => 'http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=pubmed&dopt=Abstract&list_uids=$1',
1397 'alphaindexline' => "$1 to $2",
1398 'version' => 'Version',
1399 'log' => 'Logs',
1400 'alllogstext' => 'Combined display of upload, deletion, protection, blocking, and sysop logs.
1401 You can narrow down the view by selecting a log type, the user name, or the affected page.',
1402 'logempty' => 'No matching items in log.',
1403
1404
1405 # Special:Allpages
1406 'nextpage' => 'Next page ($1)',
1407 'allpagesfrom' => 'Display pages starting at:',
1408 'allarticles' => 'All articles',
1409 'allinnamespace' => 'All pages ($1 namespace)',
1410 'allnotinnamespace' => 'All pages (not in $1 namespace)',
1411 'allpagesprev' => 'Previous',
1412 'allpagesnext' => 'Next',
1413 'allpagessubmit' => 'Go',
1414 'allpagesprefix' => 'Display pages with prefix:',
1415 'allpagesbadtitle' => 'The given page title was invalid or had an inter-language or inter-wiki prefix. It may contain one more characters which cannot be used in titles.',
1416
1417 # Special:Listusers
1418 'listusersfrom' => 'Display users starting at:',
1419
1420 # E this user
1421 #
1422 'mailnologin' => 'No send address',
1423 'mailnologintext' => "You must be [[Special:Userlogin|logged in]]
1424 and have a valid e-mail address in your [[Special:Preferences|preferences]]
1425 to send e-mail to other users.",
1426 'emailuser' => 'E-mail this user',
1427 'emailpage' => 'E-mail user',
1428 'emailpagetext' => 'If this user has entered a valid e-mail address in
1429 his or her user preferences, the form below will send a single message.
1430 The e-mail address you entered in your user preferences will appear
1431 as the "From" address of the mail, so the recipient will be able
1432 to reply.',
1433 'usermailererror' => 'Mail object returned error:',
1434 'defemailsubject' => "{{SITENAME}} e-mail",
1435 'noemailtitle' => 'No e-mail address',
1436 'noemailtext' => 'This user has not specified a valid e-mail address,
1437 or has chosen not to receive e-mail from other users.',
1438 'emailfrom' => 'From',
1439 'emailto' => 'To',
1440 'emailsubject' => 'Subject',
1441 'emailmessage' => 'Message',
1442 'emailsend' => 'Send',
1443 'emailsent' => 'E-mail sent',
1444 'emailsenttext' => 'Your e-mail message has been sent.',
1445
1446 # Watchlist
1447 'watchlist' => 'My watchlist',
1448 'watchlistfor' => "(for '''$1''')",
1449 'nowatchlist' => 'You have no items on your watchlist.',
1450 'watchlistanontext' => 'Please $1 to view or edit items on your watchlist.',
1451 'watchlistcount' => "'''You have {{PLURAL:$1|$1 item|$1 items}} on your watchlist, including talk pages.'''",
1452 'clearwatchlist' => 'Clear watchlist',
1453 'watchlistcleartext' => 'Are you sure you wish to remove them?',
1454 'watchlistclearbutton' => 'Clear watchlist',
1455 'watchlistcleardone' => 'Your watchlist has been cleared. {{PLURAL:$1|$1 item was|$1 items were}} removed.',
1456 'watchnologin' => 'Not logged in',
1457 'watchnologintext' => 'You must be [[Special:Userlogin|logged in]] to modify your watchlist.',
1458 'addedwatch' => 'Added to watchlist',
1459 'addedwatchtext' => "The page \"[[:$1]]\" has been added to your [[Special:Watchlist|watchlist]].
1460 Future changes to this page and its associated Talk page will be listed there,
1461 and the page will appear '''bolded''' in the [[Special:Recentchanges|list of recent changes]] to
1462 make it easier to pick out.
1463
1464 If you want to remove the page from your watchlist later, click \"Unwatch\" in the sidebar.",
1465 'removedwatch' => 'Removed from watchlist',
1466 'removedwatchtext' => "The page \"[[:$1]]\" has been removed from your watchlist.",
1467 'watch' => 'Watch',
1468 'watchthispage' => 'Watch this page',
1469 'unwatch' => 'Unwatch',
1470 'unwatchthispage' => 'Stop watching',
1471 'notanarticle' => 'Not a content page',
1472 'watchnochange' => 'None of your watched items was edited in the time period displayed.',
1473 'watchdetails' => '* {{PLURAL:$1|$1 page|$1 pages}} watched not counting talk pages
1474 * [[Special:Watchlist/edit|Show and edit complete watchlist]]
1475 * [[Special:Watchlist/clear|Remove all pages]]',
1476 'wlheader-enotif' => "* E-mail notification is enabled.",
1477 'wlheader-showupdated' => "* Pages which have been changed since you last visited them are shown in '''bold'''",
1478 'watchmethod-recent'=> 'checking recent edits for watched pages',
1479 'watchmethod-list' => 'checking watched pages for recent edits',
1480 'removechecked' => 'Remove checked items from watchlist',
1481 'watchlistcontains' => "Your watchlist contains $1 pages.",
1482 'watcheditlist' => 'Here\'s an alphabetical list of your
1483 watched content pages. Check the boxes of pages you want to remove from your watchlist and click the \'remove checked\' button
1484 at the bottom of the screen (deleting a content page also deletes the accompanying talk page and vice versa).',
1485 'removingchecked' => 'Removing requested items from watchlist...',
1486 'couldntremove' => "Couldn't remove item '$1'...",
1487 'iteminvalidname' => "Problem with item '$1', invalid name...",
1488 'wlnote' => 'Below are the last $1 changes in the last <b>$2</b> hours.',
1489 'wlshowlast' => 'Show last $1 hours $2 days $3',
1490 'wlsaved' => 'This is a saved version of your watchlist.',
1491 'wlhideshowown' => '$1 my edits',
1492 'wlhideshowbots' => '$1 bot edits',
1493 'wldone' => 'Done.',
1494
1495 'enotif_mailer' => '{{SITENAME}} Notification Mailer',
1496 'enotif_reset' => 'Mark all pages visited',
1497 'enotif_newpagetext'=> 'This is a new page.',
1498 'changed' => 'changed',
1499 'created' => 'created',
1500 'enotif_subject' => '{{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED by $PAGEEDITOR',
1501 'enotif_lastvisited' => 'See $1 for all changes since your last visit.',
1502 'enotif_body' => 'Dear $WATCHINGUSERNAME,
1503
1504 the {{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED on $PAGEEDITDATE by $PAGEEDITOR, see $PAGETITLE_URL for the current version.
1505
1506 $NEWPAGE
1507
1508 Editor\'s summary: $PAGESUMMARY $PAGEMINOREDIT
1509
1510 Contact the editor:
1511 mail: $PAGEEDITOR_EMAIL
1512 wiki: $PAGEEDITOR_WIKI
1513
1514 There will be no other notifications in case of further changes unless you visit this page. You could also reset the notification flags for all your watched pages on your watchlist.
1515
1516 Your friendly {{SITENAME}} notification system
1517
1518 --
1519 To change your watchlist settings, visit
1520 {{fullurl:{{ns:special}}:Watchlist/edit}}
1521
1522 Feedback and further assistance:
1523 {{fullurl:{{ns:help}}:Contents}}',
1524
1525 # Delete/protect/revert
1526 #
1527 'deletepage' => 'Delete page',
1528 'confirm' => 'Confirm',
1529 'excontent' => "content was: '$1'",
1530 'excontentauthor' => "content was: '$1' (and the only contributor was '[[Special:Contributions/$2|$2]]')",
1531 'exbeforeblank' => "content before blanking was: '$1'",
1532 'exblank' => 'page was empty',
1533 'confirmdelete' => 'Confirm delete',
1534 'deletesub' => "(Deleting \"$1\")",
1535 'historywarning' => 'Warning: The page you are about to delete has a history:',
1536 'confirmdeletetext' => "You are about to permanently delete a page
1537 or image along with all of its history from the database.
1538 Please confirm that you intend to do this, that you understand the
1539 consequences, and that you are doing this in accordance with
1540 [[{{ns:project}}:Policy]].",
1541 'actioncomplete' => 'Action complete',
1542 'deletedtext' => "\"$1\" has been deleted.
1543 See $2 for a record of recent deletions.",
1544 'deletedarticle' => "deleted \"[[$1]]\"",
1545 'dellogpage' => 'Deletion log',
1546 'dellogpagetext' => 'Below is a list of the most recent deletions.',
1547 'deletionlog' => 'deletion log',
1548 'reverted' => 'Reverted to earlier revision',
1549 'deletecomment' => 'Reason for deletion',
1550 'imagereverted' => 'Revert to earlier version was successful.',
1551 'rollback' => 'Roll back edits',
1552 'rollback_short' => 'Rollback',
1553 'rollbacklink' => 'rollback',
1554 'rollbackfailed' => 'Rollback failed',
1555 'cantrollback' => 'Cannot revert edit; last contributor is only author of this page.',
1556 'alreadyrolled' => "Cannot rollback last edit of [[$1]]
1557 by [[User:$2|$2]] ([[User talk:$2|Talk]]); someone else has edited or rolled back the page already.
1558
1559 Last edit was by [[User:$3|$3]] ([[User talk:$3|Talk]]).",
1560 # only shown if there is an edit comment
1561 'editcomment' => "The edit comment was: \"<i>$1</i>\".",
1562 'revertpage' => "Reverted edits by [[Special:Contributions/$2|$2]] ([[User_talk:$2|Talk]]); changed back to last version by [[User:$1|$1]]",
1563 'sessionfailure' => 'There seems to be a problem with your login session;
1564 this action has been canceled as a precaution against session hijacking.
1565 Please hit "back" and reload the page you came from, then try again.',
1566 'protectlogpage' => 'Protection log',
1567 'protectlogtext' => "Below is a list of page locks and unlocks.",
1568 'protectedarticle' => 'protected "[[$1]]"',
1569 'unprotectedarticle' => 'unprotected "[[$1]]"',
1570 'protectsub' => '(Protecting "$1")',
1571 'confirmprotecttext' => 'Do you really want to protect this page?',
1572 'confirmprotect' => 'Confirm protection',
1573 'protectmoveonly' => 'Protect from moves only',
1574 'protectcomment' => 'Reason for protecting',
1575 'unprotectsub' =>"(Unprotecting \"$1\")",
1576 'confirmunprotecttext' => 'Do you really want to unprotect this page?',
1577 'confirmunprotect' => 'Confirm unprotection',
1578 'unprotectcomment' => 'Reason for unprotecting',
1579 'protect-unchain' => 'Unlock move permissions',
1580 'protect-text' => 'You may view and change the protection level here for the page <strong>$1</strong>.',
1581 'protect-viewtext' => 'Your account does not have permission to change
1582 page protection levels. Here are the current settings for the page <strong>$1</strong>:',
1583 'protect-default' => '(default)',
1584 'protect-level-autoconfirmed' => 'Block unregistered users',
1585 'protect-level-sysop' => 'Sysops only',
1586
1587 # restrictions (nouns)
1588 'restriction-edit' => 'Edit',
1589 'restriction-move' => 'Move',
1590
1591
1592 # Undelete
1593 'undelete' => 'View deleted pages',
1594 'undeletepage' => 'View and restore deleted pages',
1595 'viewdeletedpage' => 'View deleted pages',
1596 'undeletepagetext' => 'The following pages have been deleted but are still in the archive and
1597 can be restored. The archive may be periodically cleaned out.',
1598 'undeleteextrahelp' => "To restore the entire page, leave all checkboxes deselected and
1599 click '''''Restore'''''. To perform a selective restoration, check the boxes corresponding to the
1600 revisions to be restored, and click '''''Restore'''''. Clicking '''''Reset''''' will clear the
1601 comment field and all checkboxes.",
1602 'undeletearticle' => 'Restore deleted page',
1603 'undeleterevisions' => "$1 revisions archived",
1604 'undeletehistory' => 'If you restore the page, all revisions will be restored to the history.
1605 If a new page with the same name has been created since the deletion, the restored
1606 revisions will appear in the prior history, and the current revision of the live page
1607 will not be automatically replaced.',
1608 'undeletehistorynoadmin' => 'This article has been deleted. The reason for deletion is
1609 shown in the summary below, along with details of the users who had edited this page
1610 before deletion. The actual text of these deleted revisions is only available to administrators.',
1611 'undeleterevision' => "Deleted revision as of $1",
1612 'undeleterevision-missing' => "Invalid or missing revision. You may have a bad link, or the
1613 revision may have been restored or removed from the archive.",
1614 'undeletebtn' => 'Restore',
1615 'undeletereset' => 'Reset',
1616 'undeletecomment' => 'Comment:',
1617 'undeletedarticle' => "restored \"[[$1]]\"",
1618 'undeletedrevisions' => "$1 revisions restored",
1619 'undeletedrevisions-files' => "$1 revisions and $2 file(s) restored",
1620 'undeletedfiles' => "$1 file(s) restored",
1621 'cannotundelete' => 'Undelete failed; someone else may have undeleted the page first.',
1622 'undeletedpage' => "<big>'''$1 has been restored'''</big>
1623
1624 Consult the [[Special:Log/delete|deletion log]] for a record of recent deletions and restorations.",
1625
1626 # Namespace form on various pages
1627 'namespace' => 'Namespace:',
1628 'invert' => 'Invert selection',
1629
1630 # Contributions
1631 #
1632 'contributions' => 'User contributions',
1633 'mycontris' => 'My contributions',
1634 'contribsub' => "For $1",
1635 'nocontribs' => 'No changes were found matching these criteria.',
1636 'ucnote' => "Below are this user's last <b>$1</b> changes in the last <b>$2</b> days.",
1637 'uclinks' => "View the last $1 changes; view the last $2 days.",
1638 'uctop' => ' (top)' ,
1639 'newbies' => 'newbies',
1640
1641 'sp-newimages-showfrom' => 'Show new images starting from $1',
1642
1643 'sp-contributions-newest' => 'Newest',
1644 'sp-contributions-oldest' => 'Oldest',
1645 'sp-contributions-newer' => 'Newer $1',
1646 'sp-contributions-older' => 'Older $1',
1647 'sp-contributions-newbies-sub' => 'For newbies',
1648
1649
1650 # What links here
1651 #
1652 'whatlinkshere' => 'What links here',
1653 'whatlinkshere-summary' => '',
1654 'whatlinkshere-barrow' => '&lt;',
1655 'notargettitle' => 'No target',
1656 'notargettext' => 'You have not specified a target page or user
1657 to perform this function on.',
1658 'linklistsub' => '(List of links)',
1659 'linkshere' => "The following pages link to '''[[:$1]]''':",
1660 'nolinkshere' => "No pages link to '''[[:$1]]'''.",
1661 'isredirect' => 'redirect page',
1662 'istemplate' => 'inclusion',
1663
1664 # Block/unblock IP
1665 #
1666 'blockip' => 'Block user',
1667 'blockiptext' => "Use the form below to block write access
1668 from a specific IP address or username.
1669 This should be done only only to prevent vandalism, and in
1670 accordance with [[{{ns:project}}:Policy|policy]].
1671 Fill in a specific reason below (for example, citing particular
1672 pages that were vandalized).",
1673 'ipaddress' => 'IP Address',
1674 'ipadressorusername' => 'IP Address or username',
1675 'ipbexpiry' => 'Expiry',
1676 'ipbreason' => 'Reason',
1677 'ipbanononly' => 'Block anonymous users only',
1678 'ipbcreateaccount' => 'Prevent account creation',
1679 'ipbsubmit' => 'Block this user',
1680 'ipbother' => 'Other time',
1681 'ipboptions' => '2 hours:2 hours,1 day:1 day,3 days:3 days,1 week:1 week,2 weeks:2 weeks,1 month:1 month,3 months:3 months,6 months:6 months,1 year:1 year,infinite:infinite',
1682 'ipbotheroption' => 'other',
1683 'badipaddress' => 'Invalid IP address',
1684 'blockipsuccesssub' => 'Block succeeded',
1685 'blockipsuccesstext' => '[[{{ns:Special}}:Contributions/$1|$1]] has been blocked.
1686 <br />See [[{{ns:Special}}:Ipblocklist|IP block list]] to review blocks.',
1687 'unblockip' => 'Unblock user',
1688 'unblockiptext' => 'Use the form below to restore write access
1689 to a previously blocked IP address or username.',
1690 'ipusubmit' => 'Unblock this address',
1691 'unblocked' => '[[User:$1|$1]] has been unblocked',
1692 'ipblocklist' => 'List of blocked IP addresses and usernames',
1693 'ipblocklist-summary' => '',
1694 'blocklistline' => "$1, $2 blocked $3 ($4)",
1695 'infiniteblock' => 'infinite',
1696 'expiringblock' => 'expires $1',
1697 'anononlyblock' => 'anon. only',
1698 'createaccountblock' => 'account creation blocked',
1699 'ipblocklistempty' => 'The blocklist is empty.',
1700 'blocklink' => 'block',
1701 'unblocklink' => 'unblock',
1702 'contribslink' => 'contribs',
1703 'autoblocker' => 'Autoblocked because your IP address has been recently used by "[[User:$1|$1]]". The reason given for $1\'s block is: "\'\'\'$2\'\'\'"',
1704 'blocklogpage' => 'Block log',
1705 'blocklogentry' => 'blocked "[[$1]]" with an expiry time of $2',
1706 'blocklogtext' => 'This is a log of user blocking and unblocking actions. Automatically
1707 blocked IP addresses are not listed. See the [[Special:Ipblocklist|IP block list]] for
1708 the list of currently operational bans and blocks.',
1709 'unblocklogentry' => 'unblocked $1',
1710 'range_block_disabled' => 'The sysop ability to create range blocks is disabled.',
1711 'ipb_expiry_invalid' => 'Expiry time invalid.',
1712 'ipb_already_blocked' => '"$1" is already blocked',
1713 'ip_range_invalid' => 'Invalid IP range.',
1714 'proxyblocker' => 'Proxy blocker',
1715 'ipb_cant_unblock' => 'Error: Block ID $1 not found. It may have been unblocked already.',
1716 'proxyblockreason' => 'Your IP address has been blocked because it is an open proxy. Please contact your Internet service provider or tech support and inform them of this serious security problem.',
1717 'proxyblocksuccess' => 'Done.',
1718 'sorbs' => 'SORBS DNSBL',
1719 'sorbsreason' => 'Your IP address is listed as an open proxy in the [http://www.sorbs.net SORBS] DNSBL.',
1720 'sorbs_create_account_reason' => 'Your IP address is listed as an open proxy in the [http://www.sorbs.net SORBS] DNSBL. You cannot create an account',
1721
1722
1723 # Developer tools
1724 #
1725 'lockdb' => 'Lock database',
1726 'unlockdb' => 'Unlock database',
1727 'lockdbtext' => 'Locking the database will suspend the ability of all
1728 users to edit pages, change their preferences, edit their watchlists, and
1729 other things requiring changes in the database.
1730 Please confirm that this is what you intend to do, and that you will
1731 unlock the database when your maintenance is done.',
1732 'unlockdbtext' => 'Unlocking the database will restore the ability of all
1733 users to edit pages, change their preferences, edit their watchlists, and
1734 other things requiring changes in the database.
1735 Please confirm that this is what you intend to do.',
1736 'lockconfirm' => 'Yes, I really want to lock the database.',
1737 'unlockconfirm' => 'Yes, I really want to unlock the database.',
1738 'lockbtn' => 'Lock database',
1739 'unlockbtn' => 'Unlock database',
1740 'locknoconfirm' => 'You did not check the confirmation box.',
1741 'lockdbsuccesssub' => 'Database lock succeeded',
1742 'unlockdbsuccesssub' => 'Database lock removed',
1743 'lockdbsuccesstext' => 'The database has been locked.
1744 <br />Remember to [[Special:Unlockdb|remove the lock]] after your maintenance is complete.',
1745 'unlockdbsuccesstext' => 'The database has been unlocked.',
1746 'lockfilenotwritable' => 'The database lock file is not writable. To lock or unlock the database, this needs to be writable by the web server.',
1747 'databasenotlocked' => 'The database is not locked.',
1748
1749 # Make sysop
1750 'makesysoptitle' => 'Make a user into a sysop',
1751 'makesysoptext' => 'This form is used by bureaucrats to turn ordinary users into administrators.
1752 Type the name of the user in the box and press the button to make the user an administrator',
1753 'makesysopname' => 'Name of the user:',
1754 'makesysopsubmit' => 'Make this user into a sysop',
1755 'makesysopok' => "<b>User \"$1\" is now a sysop</b>",
1756 'makesysopfail' => "<b>User \"$1\" could not be made into a sysop. (Did you enter the name correctly?)</b>",
1757 'setbureaucratflag' => 'Set bureaucrat flag',
1758 'rightslog' => 'User rights log',
1759 'rightslogtext' => 'This is a log of changes to user rights.',
1760 'rightslogentry' => 'changed group membership for $1 from $2 to $3',
1761 'rights' => 'Rights:',
1762 'set_user_rights' => 'Set user rights',
1763 'user_rights_set' => "<b>User rights for \"$1\" updated</b>",
1764 'set_rights_fail' => "<b>User rights for \"$1\" could not be set. (Did you enter the name correctly?)</b>",
1765 'makesysop' => 'Make a user into a sysop',
1766 'already_sysop' => 'This user is already an administrator',
1767 'already_bureaucrat' => 'This user is already a bureaucrat',
1768 'rightsnone' => '(none)',
1769
1770 # Move page
1771 #
1772 'movepage' => 'Move page',
1773 'movepagetext' => 'Using the form below will rename a page, moving all
1774 of its history to the new name.
1775 The old title will become a redirect page to the new title.
1776 Links to the old page title will not be changed; be sure to
1777 check for double or broken redirects.
1778 You are responsible for making sure that links continue to
1779 point where they are supposed to go.
1780
1781 Note that the page will \'\'\'not\'\'\' be moved if there is already
1782 a page at the new title, unless it is empty or a redirect and has no
1783 past edit history. This means that you can rename a page back to where
1784 it was just renamed from if you make a mistake, and you cannot overwrite
1785 an existing page.
1786
1787 <b>WARNING!</b>
1788 This can be a drastic and unexpected change for a popular page;
1789 please be sure you understand the consequences of this before
1790 proceeding.',
1791 'movepagetalktext' => 'The associated talk page will be automatically moved along with it \'\'\'unless:\'\'\'
1792 *A non-empty talk page already exists under the new name, or
1793 *You uncheck the box below.
1794
1795 In those cases, you will have to move or merge the page manually if desired.',
1796 'movearticle' => 'Move page',
1797 'movenologin' => 'Not logged in',
1798 'movenologintext' => "You must be a registered user and [[Special:Userlogin|logged in]]
1799 to move a page.",
1800 'newtitle' => 'To new title',
1801 'movepagebtn' => 'Move page',
1802 'pagemovedsub' => 'Move succeeded',
1803 'pagemovedtext' => "Page \"[[$1]]\" moved to \"[[$2]]\".",
1804 'articleexists' => 'A page of that name already exists, or the
1805 name you have chosen is not valid.
1806 Please choose another name.',
1807 'talkexists' => "'''The page itself was moved successfully, but the talk page could not be moved because one already exists at the new title. Please merge them manually.'''",
1808 'movedto' => 'moved to',
1809 'movetalk' => 'Move associated talk page',
1810 'talkpagemoved' => 'The corresponding talk page was also moved.',
1811 'talkpagenotmoved' => 'The corresponding talk page was <strong>not</strong> moved.',
1812 '1movedto2' => '[[$1]] moved to [[$2]]',
1813 '1movedto2_redir' => '[[$1]] moved to [[$2]] over redirect',
1814 'movelogpage' => 'Move log',
1815 'movelogpagetext' => 'Below is a list of page moved.',
1816 'movereason' => 'Reason',
1817 'revertmove' => 'revert',
1818 'delete_and_move' => 'Delete and move',
1819 'delete_and_move_text' =>
1820 '==Deletion required==
1821
1822 The destination article "[[$1]]" already exists. Do you want to delete it to make way for the move?',
1823 'delete_and_move_confirm' => 'Yes, delete the page',
1824 'delete_and_move_reason' => 'Deleted to make way for move',
1825 'selfmove' => "Source and destination titles are the same; can't move a page over itself.",
1826 'immobile_namespace' => "Source or destination title is of a special type; cannot move pages from and into that namespace.",
1827
1828 # Export
1829
1830 'export' => 'Export pages',
1831 'exporttext' => 'You can export the text and editing history of a particular page or
1832 set of pages wrapped in some XML. This can be imported into another wiki using MediaWiki
1833 via the Special:Import page.
1834
1835 To export pages, enter the titles in the text box below, one title per line, and
1836 select whether you want the current version as well as all old versions, with the page
1837 history lines, or just the current version with the info about the last edit.
1838
1839 In the latter case you can also use a link, e.g. [[{{ns:Special}}:Export/{{int:mainpage}}]] for the page {{int:mainpage}}.',
1840 'exportcuronly' => 'Include only the current revision, not the full history',
1841 'exportnohistory' => "----
1842 '''Note:''' Exporting the full history of pages through this form has been disabled due to performance reasons.",
1843 'export-submit' => 'Export',
1844
1845 # Namespace 8 related
1846
1847 'allmessages' => 'System messages',
1848 'allmessagesname' => 'Name',
1849 'allmessagesdefault' => 'Default text',
1850 'allmessagescurrent' => 'Current text',
1851 'allmessagestext' => 'This is a list of system messages available in the MediaWiki namespace.',
1852 'allmessagesnotsupportedUI' => 'Your current interface language <b>$1</b> is not supported by Special:Allmessages at this site.',
1853 'allmessagesnotsupportedDB' => '\'\'\'Special:Allmessages\'\'\' cannot be used because \'\'\'$wgUseDatabaseMessages\'\'\' is switched off.',
1854 'allmessagesfilter' => 'Message name filter:',
1855 'allmessagesmodified' => 'Show only modified',
1856
1857
1858 # Thumbnails
1859
1860 'thumbnail-more' => 'Enlarge',
1861 'missingimage' => '<b>Missing image</b><br /><i>$1</i>',
1862 'filemissing' => 'File missing',
1863 'thumbnail_error' => 'Error creating thumbnail: $1',
1864
1865 # Special:Import
1866 'import' => 'Import pages',
1867 'importinterwiki' => 'Transwiki import',
1868 'import-interwiki-text' => 'Select a wiki and page title to import.
1869 Revision dates and editors\' names will be preserved.
1870 All transwiki import actions are logged at the [[Special:Log/import|import log]].',
1871 'import-interwiki-history' => 'Copy all history versions for this page',
1872 'import-interwiki-submit' => 'Import',
1873 'import-interwiki-namespace' => 'Transfer pages into namespace:',
1874 'importtext' => 'Please export the file from the source wiki using the Special:Export utility, save it to your disk and upload it here.',
1875 'importstart' => "Importing pages...",
1876 'import-revision-count' => '$1 {{PLURAL:$1|revision|revisions}}',
1877 'importnopages' => "No pages to import.",
1878 'importfailed' => "Import failed: $1",
1879 'importunknownsource' => "Unknown import source type",
1880 'importcantopen' => "Couldn't open import file",
1881 'importbadinterwiki' => "Bad interwiki link",
1882 'importnotext' => 'Empty or no text',
1883 'importsuccess' => 'Import succeeded!',
1884 'importhistoryconflict' => 'Conflicting history revision exists (may have imported this page before)',
1885 'importnosources' => 'No transwiki import sources have been defined and direct history uploads are disabled.',
1886 'importnofile' => 'No import file was uploaded.',
1887 'importuploaderror' => 'Upload of import file failed; perhaps the file is bigger than the allowed upload size.',
1888
1889 # import log
1890 'importlogpage' => 'Import log',
1891 'importlogpagetext' => 'Administrative imports of pages with edit history from other wikis.',
1892 'import-logentry-upload' => 'imported [[$1]] by file upload',
1893 'import-logentry-upload-detail' => '$1 revision(s)',
1894 'import-logentry-interwiki' => 'transwikied $1',
1895 'import-logentry-interwiki-detail' => '$1 revision(s) from $2',
1896
1897
1898 # Keyboard access keys for power users
1899 'accesskey-search' => 'f',
1900 'accesskey-minoredit' => 'i',
1901 'accesskey-save' => 's',
1902 'accesskey-preview' => 'p',
1903 'accesskey-diff' => 'v',
1904 'accesskey-compareselectedversions' => 'v',
1905 'accesskey-watch' => 'w',
1906 'accesskey-userpage' => '.',
1907 'accesskey-anonuserpage' => '.',
1908 'accesskey-mytalk' => 'n',
1909 'accesskey-anontalk' => 'n',
1910 'accesskey-watchlist' => 'l',
1911 'accesskey-mycontris' => 'y',
1912 'accesskey-login' => 'o',
1913 'accesskey-anonlogin' => 'o',
1914 'accesskey-logout' => 'o',
1915 'accesskey-talk' => 't',
1916 'accesskey-edit' => 'e',
1917 'accesskey-addsection' => '+',
1918 'accesskey-viewsource' => 'e',
1919 'accesskey-history' => 'h',
1920 'accesskey-protect' => '=',
1921 'accesskey-delete' => 'd',
1922 'accesskey-undelete' => 'd',
1923 'accesskey-move' => 'm',
1924 'accesskey-watch' => 'w',
1925 'accesskey-unwatch' => 'w',
1926 'accesskey-search' => 'f',
1927 'accesskey-mainpage' => 'z',
1928 'accesskey-recentchanges' => 'r',
1929 'accesskey-randompage' => 'x',
1930 'accesskey-whatlinkshere' => 'j',
1931 'accesskey-recentchangeslinked' => 'k',
1932 'accesskey-upload' => 'u',
1933 'accesskey-specialpages' => 'q',
1934 'accesskey-nstab-main' => 'c',
1935 'accesskey-nstab-user' => 'c',
1936 'accesskey-nstab-media' => 'c',
1937 'accesskey-nstab-project' => 'a',
1938 'accesskey-nstab-image' => 'c',
1939 'accesskey-nstab-mediawiki' => 'c',
1940 'accesskey-nstab-template' => 'c',
1941 'accesskey-nstab-help' => 'c',
1942 'accesskey-nstab-category' => 'c',
1943
1944 # tooltip help
1945 'tooltip-addsection' => 'Add a comment to this discussion.',
1946 'tooltip-anonlogin' => 'You are encouraged to log in, but it is not mandatory.',
1947 'tooltip-anontalk' => 'Discussion about edits from this IP address',
1948 'tooltip-anonuserpage' => 'The user page for the IP address you\'re editing as',
1949 'tooltip-compareselectedversions' => 'See the differences between the two selected versions of this page.',
1950 'tooltip-contributions' => 'View the list of contributions of this user',
1951 'tooltip-currentevents' => 'Find background information on current events',
1952 'tooltip-delete' => 'Delete this page',
1953 'tooltip-diff' => 'Show what changes you made to the text.',
1954 'tooltip-edit' => 'You can edit this page. Please use the preview button before saving.',
1955 'tooltip-emailuser' => 'Send an e-mail to this user',
1956 'tooltip-feed-atom' => 'Atom feed for this page',
1957 'tooltip-feed-rss' => 'RSS feed for this page',
1958 'tooltip-help' => 'The place to find out.',
1959 'tooltip-history' => 'Past versions of this page.',
1960 'tooltip-login' => 'You are encouraged to log in, but it is not mandatory.',
1961 'tooltip-logo' => 'Main Page',
1962 'tooltip-logout' => 'Log out',
1963 'tooltip-mainpage' => 'Visit the Main Page',
1964 'tooltip-minoredit' => 'Mark this as a minor edit',
1965 'tooltip-move' => 'Move this page',
1966 'tooltip-mycontris' => 'List of my contributions',
1967 'tooltip-mytalk' => 'My talk page',
1968 'tooltip-nstab-category' => 'View the category page',
1969 'tooltip-nstab-help' => 'View the help page',
1970 'tooltip-nstab-image' => 'View the image page',
1971 'tooltip-nstab-main' => 'View the content page',
1972 'tooltip-nstab-media' => 'View the media page',
1973 'tooltip-nstab-mediawiki' => 'View the system message',
1974 'tooltip-nstab-project' => 'View the project page',
1975 'tooltip-nstab-special' => 'This is a special page, you can\'t edit the page itself.',
1976 'tooltip-nstab-template' => 'View the template',
1977 'tooltip-nstab-user' => 'View the user page',
1978 'tooltip-portal' => 'About the project, what you can do, where to find things',
1979 'tooltip-preferences' => 'My preferences',
1980 'tooltip-preview' => 'Preview your changes, please use this before saving!',
1981 'tooltip-protect' => 'Protect this page',
1982 'tooltip-randompage' => 'Load a random page',
1983 'tooltip-recentchanges' => 'The list of recent changes in the wiki.',
1984 'tooltip-recentchangeslinked' => 'Recent changes in pages linked from this page',
1985 'tooltip-save' => 'Save your changes',
1986 'tooltip-search' => 'Search this wiki',
1987 'tooltip-sitesupport' => 'Support us',
1988 'tooltip-specialpages' => 'List of all special pages',
1989 'tooltip-talk' => 'Discussion about the content page',
1990 'tooltip-undelete' => 'Restore the edits done to this page before it was deleted',
1991 'tooltip-unwatch' => 'Remove this page from your watchlist',
1992 'tooltip-upload' => 'Upload images or media files',
1993 'tooltip-userpage' => 'My user page',
1994 'tooltip-viewsource' => 'This page is protected. You can view its source.',
1995 'tooltip-watch' => 'Add this page to your watchlist',
1996 'tooltip-watchlist' => 'The list of pages you\'re monitoring for changes.',
1997 'tooltip-whatlinkshere' => 'List of all wiki pages that link here',
1998
1999 # stylesheets
2000 'Common.css' => '/** CSS placed here will be applied to all skins */',
2001 'Monobook.css' => '/* CSS placed here will affect users of the Monobook skin */',
2002
2003 # Metadata
2004 'nodublincore' => 'Dublin Core RDF metadata disabled for this server.',
2005 'nocreativecommons' => 'Creative Commons RDF metadata disabled for this server.',
2006 'notacceptable' => 'The wiki server can\'t provide data in a format your client can read.',
2007
2008 # Attribution
2009
2010 'anonymous' => 'Anonymous user(s) of {{SITENAME}}',
2011 'siteuser' => '{{SITENAME}} user $1',
2012 'lastmodifiedatby' => 'This page was last modified $2, $1 by $3.', // $1 date, $2 time. $3 user
2013 'and' => 'and',
2014 'othercontribs' => 'Based on work by $1.',
2015 'others' => 'others',
2016 'siteusers' => '{{SITENAME}} user(s) $1',
2017 'creditspage' => 'Page credits',
2018 'nocredits' => 'There is no credits info available for this page.',
2019
2020 # Spam protection
2021
2022 'spamprotectiontitle' => 'Spam protection filter',
2023 'spamprotectiontext' => 'The page you wanted to save was blocked by the spam filter. This is probably caused by a link to an external site.',
2024 'spamprotectionmatch' => 'The following text is what triggered our spam filter: $1',
2025 'subcategorycount' => "There {{PLURAL:$1|is one subcategory|are $1 subcategories}} to this category.",
2026 'categoryarticlecount' => "There {{PLURAL:$1|is one article|are $1 articles}} in this category.",
2027 'listingcontinuesabbrev' => " cont.",
2028 'spambot_username' => 'MediaWiki spam cleanup',
2029 'spam_reverting' => 'Reverting to last version not containing links to $1',
2030 'spam_blanking' => 'All revisions contained links to $1, blanking',
2031
2032 # Info page
2033 'infosubtitle' => 'Information for page',
2034 'numedits' => 'Number of edits (article): $1',
2035 'numtalkedits' => 'Number of edits (discussion page): $1',
2036 'numwatchers' => 'Number of watchers: $1',
2037 'numauthors' => 'Number of distinct authors (article): $1',
2038 'numtalkauthors' => 'Number of distinct authors (discussion page): $1',
2039
2040 # Math options
2041 'mw_math_png' => 'Always render PNG',
2042 'mw_math_simple' => 'HTML if very simple or else PNG',
2043 'mw_math_html' => 'HTML if possible or else PNG',
2044 'mw_math_source' => 'Leave it as TeX (for text browsers)',
2045 'mw_math_modern' => 'Recommended for modern browsers',
2046 'mw_math_mathml' => 'MathML if possible (experimental)',
2047
2048 # Patrolling
2049 'markaspatrolleddiff' => "Mark as patrolled",
2050 'markaspatrolledlink' => "[$1]",
2051 'markaspatrolledtext' => "Mark this article as patrolled",
2052 'markedaspatrolled' => "Marked as patrolled",
2053 'markedaspatrolledtext' => "The selected revision has been marked as patrolled.",
2054 'rcpatroldisabled' => "Recent Changes Patrol disabled",
2055 'rcpatroldisabledtext' => "The Recent Changes Patrol feature is currently disabled.",
2056 'markedaspatrollederror' => "Cannot mark as patrolled",
2057 'markedaspatrollederrortext' => "You need to specify a revision to mark as patrolled.",
2058
2059 # Monobook.js
2060 'Monobook.js' => '// This JavaScript will be loaded for all users.',
2061
2062 # image deletion
2063 'deletedrevision' => 'Deleted old revision $1.',
2064
2065 # browsing diffs
2066 'previousdiff' => '← Previous diff',
2067 'nextdiff' => 'Next diff →',
2068
2069 'imagemaxsize' => 'Limit images on image description pages to:',
2070 'thumbsize' => 'Thumbnail size:',
2071 'showbigimage' => 'Download high resolution version ($1x$2, $3 KB)',
2072
2073 'newimages' => 'Gallery of new files',
2074 'newimages-summary' => '',
2075 'showhidebots' => '($1 bots)',
2076 'noimages' => 'Nothing to see.',
2077
2078 # short names for language variants used for language conversion links.
2079 # to disable showing a particular link, set it to 'disable', e.g.
2080 # 'variantname-zh-sg' => 'disable',
2081 'variantname-zh-cn' => 'cn',
2082 'variantname-zh-tw' => 'tw',
2083 'variantname-zh-hk' => 'hk',
2084 'variantname-zh-sg' => 'sg',
2085 'variantname-zh' => 'zh',
2086 # variants for Serbian language
2087 'variantname-sr-ec' => 'sr-ec',
2088 'variantname-sr-el' => 'sr-el',
2089 'variantname-sr-jc' => 'sr-jc',
2090 'variantname-sr-jl' => 'sr-jl',
2091 'variantname-sr' => 'sr',
2092 # variants for Kazakh language
2093 'variantname-kk-tr' => 'kk-tr',
2094 'variantname-kk-kz' => 'kk-kz',
2095 'variantname-kk-cn' => 'kk-cn',
2096 'variantname-kk' => 'kk',
2097
2098 # labels for User: and Title: on Special:Log pages
2099 'specialloguserlabel' => 'User:',
2100 'speciallogtitlelabel' => 'Title:',
2101
2102 'passwordtooshort' => 'Your password is too short. It must have at least $1 characters.',
2103
2104 # Media Warning
2105 'mediawarning' => '\'\'\'Warning\'\'\': This file may contain malicious code, by executing it your system may be compromised.<hr />',
2106
2107 'fileinfo' => '$1KB, MIME type: <code>$2</code>',
2108
2109 # Metadata
2110 'metadata' => 'Metadata',
2111 'metadata-help' => 'This file contains additional information, probably added from the digital camera or scanner used to create or digitize it. If the file has been modified from its original state, some details may not fully reflect the modified image.',
2112 'metadata-expand' => 'Show extended details',
2113 'metadata-collapse' => 'Hide extended details',
2114 'metadata-fields' => 'EXIF metadata fields listed in this message will
2115 be included on image page display when the metadata table
2116 is collapsed. Others will be hidden by default.
2117 * make
2118 * model
2119 * datetimeoriginal
2120 * exposuretime
2121 * fnumber
2122 * focallength',
2123
2124 # Exif tags
2125 'exif-imagewidth' =>'Width',
2126 'exif-imagelength' =>'Height',
2127 'exif-bitspersample' =>'Bits per component',
2128 'exif-compression' =>'Compression scheme',
2129 'exif-photometricinterpretation' =>'Pixel composition',
2130 'exif-orientation' =>'Orientation',
2131 'exif-samplesperpixel' =>'Number of components',
2132 'exif-planarconfiguration' =>'Data arrangement',
2133 'exif-ycbcrsubsampling' =>'Subsampling ratio of Y to C',
2134 'exif-ycbcrpositioning' =>'Y and C positioning',
2135 'exif-xresolution' =>'Horizontal resolution',
2136 'exif-yresolution' =>'Vertical resolution',
2137 'exif-resolutionunit' =>'Unit of X and Y resolution',
2138 'exif-stripoffsets' =>'Image data location',
2139 'exif-rowsperstrip' =>'Number of rows per strip',
2140 'exif-stripbytecounts' =>'Bytes per compressed strip',
2141 'exif-jpeginterchangeformat' =>'Offset to JPEG SOI',
2142 'exif-jpeginterchangeformatlength' =>'Bytes of JPEG data',
2143 'exif-transferfunction' =>'Transfer function',
2144 'exif-whitepoint' =>'White point chromaticity',
2145 'exif-primarychromaticities' =>'Chromaticities of primarities',
2146 'exif-ycbcrcoefficients' =>'Color space transformation matrix coefficients',
2147 'exif-referenceblackwhite' =>'Pair of black and white reference values',
2148 'exif-datetime' =>'File change date and time',
2149 'exif-imagedescription' =>'Image title',
2150 'exif-make' =>'Camera manufacturer',
2151 'exif-model' =>'Camera model',
2152 'exif-software' =>'Software used',
2153 'exif-artist' =>'Author',
2154 'exif-copyright' =>'Copyright holder',
2155 'exif-exifversion' =>'Exif version',
2156 'exif-flashpixversion' =>'Supported Flashpix version',
2157 'exif-colorspace' =>'Color space',
2158 'exif-componentsconfiguration' =>'Meaning of each component',
2159 'exif-compressedbitsperpixel' =>'Image compression mode',
2160 'exif-pixelydimension' =>'Valid image width',
2161 'exif-pixelxdimension' =>'Valid image height',
2162 'exif-makernote' =>'Manufacturer notes',
2163 'exif-usercomment' =>'User comments',
2164 'exif-relatedsoundfile' =>'Related audio file',
2165 'exif-datetimeoriginal' =>'Date and time of data generation',
2166 'exif-datetimedigitized' =>'Date and time of digitizing',
2167 'exif-subsectime' =>'DateTime subseconds',
2168 'exif-subsectimeoriginal' =>'DateTimeOriginal subseconds',
2169 'exif-subsectimedigitized' =>'DateTimeDigitized subseconds',
2170 'exif-exposuretime' =>'Exposure time',
2171 'exif-exposuretime-format' => '$1 sec ($2)',
2172 'exif-fnumber' =>'F Number',
2173 'exif-fnumber-format' =>'f/$1',
2174 'exif-exposureprogram' =>'Exposure Program',
2175 'exif-spectralsensitivity' =>'Spectral sensitivity',
2176 'exif-isospeedratings' =>'ISO speed rating',
2177 'exif-oecf' =>'Optoelectronic conversion factor',
2178 'exif-shutterspeedvalue' =>'Shutter speed',
2179 'exif-aperturevalue' =>'Aperture',
2180 'exif-brightnessvalue' =>'Brightness',
2181 'exif-exposurebiasvalue' =>'Exposure bias',
2182 'exif-maxaperturevalue' =>'Maximum land aperture',
2183 'exif-subjectdistance' =>'Subject distance',
2184 'exif-meteringmode' =>'Metering mode',
2185 'exif-lightsource' =>'Light source',
2186 'exif-flash' =>'Flash',
2187 'exif-focallength' =>'Lens focal length',
2188 'exif-focallength-format' =>'$1 mm',
2189 'exif-subjectarea' =>'Subject area',
2190 'exif-flashenergy' =>'Flash energy',
2191 'exif-spatialfrequencyresponse' =>'Spatial frequency response',
2192 'exif-focalplanexresolution' =>'Focal plane X resolution',
2193 'exif-focalplaneyresolution' =>'Focal plane Y resolution',
2194 'exif-focalplaneresolutionunit' =>'Focal plane resolution unit',
2195 'exif-subjectlocation' =>'Subject location',
2196 'exif-exposureindex' =>'Exposure index',
2197 'exif-sensingmethod' =>'Sensing method',
2198 'exif-filesource' =>'File source',
2199 'exif-scenetype' =>'Scene type',
2200 'exif-cfapattern' =>'CFA pattern',
2201 'exif-customrendered' =>'Custom image processing',
2202 'exif-exposuremode' =>'Exposure mode',
2203 'exif-whitebalance' =>'White Balance',
2204 'exif-digitalzoomratio' =>'Digital zoom ratio',
2205 'exif-focallengthin35mmfilm' =>'Focal length in 35 mm film',
2206 'exif-scenecapturetype' =>'Scene capture type',
2207 'exif-gaincontrol' =>'Scene control',
2208 'exif-contrast' =>'Contrast',
2209 'exif-saturation' =>'Saturation',
2210 'exif-sharpness' =>'Sharpness',
2211 'exif-devicesettingdescription' =>'Device settings description',
2212 'exif-subjectdistancerange' =>'Subject distance range',
2213 'exif-imageuniqueid' =>'Unique image ID',
2214 'exif-gpsversionid' =>'GPS tag version',
2215 'exif-gpslatituderef' =>'North or South Latitude',
2216 'exif-gpslatitude' =>'Latitude',
2217 'exif-gpslongituderef' =>'East or West Longitude',
2218 'exif-gpslongitude' =>'Longitude',
2219 'exif-gpsaltituderef' =>'Altitude reference',
2220 'exif-gpsaltitude' =>'Altitude',
2221 'exif-gpstimestamp' =>'GPS time (atomic clock)',
2222 'exif-gpssatellites' =>'Satellites used for measurement',
2223 'exif-gpsstatus' =>'Receiver status',
2224 'exif-gpsmeasuremode' =>'Measurement mode',
2225 'exif-gpsdop' =>'Measurement precision',
2226 'exif-gpsspeedref' =>'Speed unit',
2227 'exif-gpsspeed' =>'Speed of GPS receiver',
2228 'exif-gpstrackref' =>'Reference for direction of movement',
2229 'exif-gpstrack' =>'Direction of movement',
2230 'exif-gpsimgdirectionref' =>'Reference for direction of image',
2231 'exif-gpsimgdirection' =>'Direction of image',
2232 'exif-gpsmapdatum' =>'Geodetic survey data used',
2233 'exif-gpsdestlatituderef' =>'Reference for latitude of destination',
2234 'exif-gpsdestlatitude' =>'Latitude destination',
2235 'exif-gpsdestlongituderef' =>'Reference for longitude of destination',
2236 'exif-gpsdestlongitude' =>'Longitude of destination',
2237 'exif-gpsdestbearingref' =>'Reference for bearing of destination',
2238 'exif-gpsdestbearing' =>'Bearing of destination',
2239 'exif-gpsdestdistanceref' =>'Reference for distance to destination',
2240 'exif-gpsdestdistance' =>'Distance to destination',
2241 'exif-gpsprocessingmethod' =>'Name of GPS processing method',
2242 'exif-gpsareainformation' =>'Name of GPS area',
2243 'exif-gpsdatestamp' =>'GPS date',
2244 'exif-gpsdifferential' =>'GPS differential correction',
2245
2246 # Make & model, can be wikified in order to link to the camera and model name
2247
2248 'exif-make-value' => '$1',
2249 'exif-model-value' =>'$1',
2250 'exif-software-value' => '$1',
2251
2252 # Exif attributes
2253
2254 'exif-compression-1' => 'Uncompressed',
2255 'exif-compression-6' => 'JPEG',
2256
2257 'exif-photometricinterpretation-2' => 'RGB',
2258 'exif-photometricinterpretation-6' => 'YCbCr',
2259
2260 'exif-orientation-1' => 'Normal', // 0th row: top; 0th column: left
2261 'exif-orientation-2' => 'Flipped horizontally', // 0th row: top; 0th column: right
2262 'exif-orientation-3' => 'Rotated 180°', // 0th row: bottom; 0th column: right
2263 'exif-orientation-4' => 'Flipped vertically', // 0th row: bottom; 0th column: left
2264 'exif-orientation-5' => 'Rotated 90° CCW and flipped vertically', // 0th row: left; 0th column: top
2265 'exif-orientation-6' => 'Rotated 90° CW', // 0th row: right; 0th column: top
2266 'exif-orientation-7' => 'Rotated 90° CW and flipped vertically', // 0th row: right; 0th column: bottom
2267 'exif-orientation-8' => 'Rotated 90° CCW', // 0th row: left; 0th column: bottom
2268
2269 'exif-planarconfiguration-1' => 'chunky format',
2270 'exif-planarconfiguration-2' => 'planar format',
2271
2272 'exif-xyresolution-i' => '$1 dpi',
2273 'exif-xyresolution-c' => '$1 dpc',
2274
2275 'exif-colorspace-1' => 'sRGB',
2276 'exif-colorspace-ffff.h' => 'FFFF.H',
2277
2278 'exif-componentsconfiguration-0' => 'does not exist',
2279 'exif-componentsconfiguration-1' => 'Y',
2280 'exif-componentsconfiguration-2' => 'Cb',
2281 'exif-componentsconfiguration-3' => 'Cr',
2282 'exif-componentsconfiguration-4' => 'R',
2283 'exif-componentsconfiguration-5' => 'G',
2284 'exif-componentsconfiguration-6' => 'B',
2285
2286 'exif-exposureprogram-0' => 'Not defined',
2287 'exif-exposureprogram-1' => 'Manual',
2288 'exif-exposureprogram-2' => 'Normal program',
2289 'exif-exposureprogram-3' => 'Aperture priority',
2290 'exif-exposureprogram-4' => 'Shutter priority',
2291 'exif-exposureprogram-5' => 'Creative program (biased toward depth of field)',
2292 'exif-exposureprogram-6' => 'Action program (biased toward fast shutter speed)',
2293 'exif-exposureprogram-7' => 'Portrait mode (for closeup photos with the background out of focus)',
2294 'exif-exposureprogram-8' => 'Landscape mode (for landscape photos with the background in focus)',
2295
2296 'exif-subjectdistance-value' => '$1 metres',
2297
2298 'exif-meteringmode-0' => 'Unknown',
2299 'exif-meteringmode-1' => 'Average',
2300 'exif-meteringmode-2' => 'CenterWeightedAverage',
2301 'exif-meteringmode-3' => 'Spot',
2302 'exif-meteringmode-4' => 'MultiSpot',
2303 'exif-meteringmode-5' => 'Pattern',
2304 'exif-meteringmode-6' => 'Partial',
2305 'exif-meteringmode-255' => 'Other',
2306
2307 'exif-lightsource-0' => 'Unknown',
2308 'exif-lightsource-1' => 'Daylight',
2309 'exif-lightsource-2' => 'Fluorescent',
2310 'exif-lightsource-3' => 'Tungsten (incandescent light)',
2311 'exif-lightsource-4' => 'Flash',
2312 'exif-lightsource-9' => 'Fine weather',
2313 'exif-lightsource-10' => 'Cloudy weather',
2314 'exif-lightsource-11' => 'Shade',
2315 'exif-lightsource-12' => 'Daylight fluorescent (D 5700 – 7100K)',
2316 'exif-lightsource-13' => 'Day white fluorescent (N 4600 – 5400K)',
2317 'exif-lightsource-14' => 'Cool white fluorescent (W 3900 – 4500K)',
2318 'exif-lightsource-15' => 'White fluorescent (WW 3200 – 3700K)',
2319 'exif-lightsource-17' => 'Standard light A',
2320 'exif-lightsource-18' => 'Standard light B',
2321 'exif-lightsource-19' => 'Standard light C',
2322 'exif-lightsource-20' => 'D55',
2323 'exif-lightsource-21' => 'D65',
2324 'exif-lightsource-22' => 'D75',
2325 'exif-lightsource-23' => 'D50',
2326 'exif-lightsource-24' => 'ISO studio tungsten',
2327 'exif-lightsource-255' => 'Other light source',
2328
2329 'exif-focalplaneresolutionunit-2' => 'inches',
2330
2331 'exif-sensingmethod-1' => 'Undefined',
2332 'exif-sensingmethod-2' => 'One-chip color area sensor',
2333 'exif-sensingmethod-3' => 'Two-chip color area sensor',
2334 'exif-sensingmethod-4' => 'Three-chip color area sensor',
2335 'exif-sensingmethod-5' => 'Color sequential area sensor',
2336 'exif-sensingmethod-7' => 'Trilinear sensor',
2337 'exif-sensingmethod-8' => 'Color sequential linear sensor',
2338
2339 'exif-filesource-3' => 'DSC',
2340
2341 'exif-scenetype-1' => 'A directly photographed image',
2342
2343 'exif-customrendered-0' => 'Normal process',
2344 'exif-customrendered-1' => 'Custom process',
2345
2346 'exif-exposuremode-0' => 'Auto exposure',
2347 'exif-exposuremode-1' => 'Manual exposure',
2348 'exif-exposuremode-2' => 'Auto bracket',
2349
2350 'exif-whitebalance-0' => 'Auto white balance',
2351 'exif-whitebalance-1' => 'Manual white balance',
2352
2353 'exif-scenecapturetype-0' => 'Standard',
2354 'exif-scenecapturetype-1' => 'Landscape',
2355 'exif-scenecapturetype-2' => 'Portrait',
2356 'exif-scenecapturetype-3' => 'Night scene',
2357
2358 'exif-gaincontrol-0' => 'None',
2359 'exif-gaincontrol-1' => 'Low gain up',
2360 'exif-gaincontrol-2' => 'High gain up',
2361 'exif-gaincontrol-3' => 'Low gain down',
2362 'exif-gaincontrol-4' => 'High gain down',
2363
2364 'exif-contrast-0' => 'Normal',
2365 'exif-contrast-1' => 'Soft',
2366 'exif-contrast-2' => 'Hard',
2367
2368 'exif-saturation-0' => 'Normal',
2369 'exif-saturation-1' => 'Low saturation',
2370 'exif-saturation-2' => 'High saturation',
2371
2372 'exif-sharpness-0' => 'Normal',
2373 'exif-sharpness-1' => 'Soft',
2374 'exif-sharpness-2' => 'Hard',
2375
2376 'exif-subjectdistancerange-0' => 'Unknown',
2377 'exif-subjectdistancerange-1' => 'Macro',
2378 'exif-subjectdistancerange-2' => 'Close view',
2379 'exif-subjectdistancerange-3' => 'Distant view',
2380
2381 // Pseudotags used for GPSLatitudeRef and GPSDestLatitudeRef
2382 'exif-gpslatitude-n' => 'North latitude',
2383 'exif-gpslatitude-s' => 'South latitude',
2384
2385 // Pseudotags used for GPSLongitudeRef and GPSDestLongitudeRef
2386 'exif-gpslongitude-e' => 'East longitude',
2387 'exif-gpslongitude-w' => 'West longitude',
2388
2389 'exif-gpsstatus-a' => 'Measurement in progress',
2390 'exif-gpsstatus-v' => 'Measurement interoperability',
2391
2392 'exif-gpsmeasuremode-2' => '2-dimensional measurement',
2393 'exif-gpsmeasuremode-3' => '3-dimensional measurement',
2394
2395 // Pseudotags used for GPSSpeedRef and GPSDestDistanceRef
2396 'exif-gpsspeed-k' => 'Kilometres per hour',
2397 'exif-gpsspeed-m' => 'Miles per hour',
2398 'exif-gpsspeed-n' => 'Knots',
2399
2400 // Pseudotags used for GPSTrackRef, GPSImgDirectionRef and GPSDestBearingRef
2401 'exif-gpsdirection-t' => 'True direction',
2402 'exif-gpsdirection-m' => 'Magnetic direction',
2403
2404 # external editor support
2405 'edit-externally' => 'Edit this file using an external application',
2406 'edit-externally-help' => 'See the [http://meta.wikimedia.org/wiki/Help:External_editors setup instructions] for more information.',
2407
2408 # 'all' in various places, this might be different for inflected languages
2409 'recentchangesall' => 'all',
2410 'imagelistall' => 'all',
2411 'watchlistall1' => 'all',
2412 'watchlistall2' => 'all',
2413 'namespacesall' => 'all',
2414
2415 # E-mail address confirmation
2416 'confirmemail' => 'Confirm E-mail address',
2417 'confirmemail_noemail' => 'You do not have a valid email address set in your [[Special:Preferences|user preferences]].',
2418 'confirmemail_text' => "This wiki requires that you validate your e-mail address
2419 before using e-mail features. Activate the button below to send a confirmation
2420 mail to your address. The mail will include a link containing a code; load the
2421 link in your browser to confirm that your e-mail address is valid.",
2422 'confirmemail_send' => 'Mail a confirmation code',
2423 'confirmemail_sent' => 'Confirmation e-mail sent.',
2424 'confirmemail_sendfailed' => 'Could not send confirmation mail. Check address for invalid characters.
2425
2426 Mailer returned: $1',
2427 'confirmemail_invalid' => 'Invalid confirmation code. The code may have expired.',
2428 'confirmemail_needlogin' => 'You need to $1 to confirm your email address.',
2429 'confirmemail_success' => 'Your e-mail address has been confirmed. You may now log in and enjoy the wiki.',
2430 'confirmemail_loggedin' => 'Your e-mail address has now been confirmed.',
2431 'confirmemail_error' => 'Something went wrong saving your confirmation.',
2432
2433 'confirmemail_subject' => '{{SITENAME}} e-mail address confirmation',
2434 'confirmemail_body' => "Someone, probably you from IP address $1, has registered an
2435 account \"$2\" with this e-mail address on {{SITENAME}}.
2436
2437 To confirm that this account really does belong to you and activate
2438 e-mail features on {{SITENAME}}, open this link in your browser:
2439
2440 $3
2441
2442 If this is *not* you, don't follow the link. This confirmation code
2443 will expire at $4.",
2444
2445 # Inputbox extension, may be useful in other contexts as well
2446 'tryexact' => 'Try exact match',
2447 'searchfulltext' => 'Search full text',
2448 'createarticle' => 'Create article',
2449
2450 # Scary transclusion
2451 'scarytranscludedisabled' => '[Interwiki transcluding is disabled]',
2452 'scarytranscludefailed' => '[Template fetch failed for $1; sorry]',
2453 'scarytranscludetoolong' => '[URL is too long; sorry]',
2454
2455 # Trackbacks
2456 'trackbackbox' => '<div id="mw_trackbacks">
2457 Trackbacks for this article:<br />
2458 $1
2459 </div>',
2460 'trackback' => '; $4$5 : [$2 $1]',
2461 'trackbackexcerpt' => '; $4$5 : [$2 $1]: <nowiki>$3</nowiki>',
2462 'trackbackremove' => ' ([$1 Delete])',
2463 'trackbacklink' => 'Trackback',
2464 'trackbackdeleteok' => 'The trackback was successfully deleted.',
2465
2466
2467 # delete conflict
2468
2469 'deletedwhileediting' => 'Warning: This page has been deleted after you started editing!',
2470 'confirmrecreate' => 'User [[User:$1|$1]] ([[User talk:$1|talk]]) deleted this page after you started editing with reason:
2471 : \'\'$2\'\'
2472 Please confirm that really want to recreate this page.',
2473 'recreate' => 'Recreate',
2474 'tooltip-recreate' => 'Recreate the page despite its deletion',
2475
2476 'unit-pixel' => 'px',
2477
2478 # HTML dump
2479 'redirectingto' => 'Redirecting to [[$1]]...',
2480
2481 # action=purge
2482 'confirm_purge' => "Clear the cache of this page?\n\n$1",
2483 'confirm_purge_button' => 'OK',
2484
2485 'youhavenewmessagesmulti' => "You have new messages on $1",
2486 'newtalkseperator' => ',_',
2487 'searchcontaining' => "Search for articles containing ''$1''.",
2488 'searchnamed' => "Search for articles named ''$1''.",
2489 'articletitles' => "Articles starting with ''$1''",
2490 'hideresults' => 'Hide results',
2491
2492 # DISPLAYTITLE
2493 'displaytitle' => '(Link to this page as [[$1]])',
2494
2495 # Separator for categories in page lists
2496 # Please don't localise this
2497 'catseparator' => '|',
2498
2499 'loginlanguagelabel' => 'Language: $1',
2500
2501 # Don't duplicate this in translations; defaults should remain consistent
2502 'loginlanguagelinks' => "* Deutsch|de
2503 * English|en
2504 * Esperanto|eo
2505 * Français|fr
2506 * Español|es
2507 * Italiano|it
2508 * Nederlands|nl",
2509
2510 # Multipage image navigation
2511 'imgmultipageprev' => '&larr; previous page',
2512 'imgmultipagenext' => 'next page &rarr;',
2513 'imgmultigo' => 'Go!',
2514 'imgmultigotopre' => 'Go to page',
2515 'imgmultigotopost' => '',
2516
2517 # Table pager
2518 'ascending_abbrev' => 'asc',
2519 'descending_abbrev' => 'desc',
2520 'table_pager_next' => 'Next page',
2521 'table_pager_prev' => 'Previous page',
2522 'table_pager_first' => 'First page',
2523 'table_pager_last' => 'Last page',
2524 'table_pager_limit' => 'Show $1 items per page',
2525 'table_pager_limit_submit' => 'Go',
2526 'table_pager_empty' => 'No results',
2527
2528 );
2529
2530 ?>