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