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