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