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