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