(bug 5485) Show number of intervening revisions in diff view.
[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' => "($1 not shown.)",
1095 'diff-multi-rev' => "One intermediate revision",
1096 'diff-multi-revs' => "$1 intermediate revisions",
1097
1098 # Search results
1099 #
1100 'searchresults' => 'Search results',
1101 'searchresulttext' => "For more information about searching {{SITENAME}}, see [[{{ns:project}}:Searching|Searching {{SITENAME}}]].",
1102 'searchsubtitle' => "You searched for '''[[:$1]]'''",
1103 'searchsubtitleinvalid' => "You searched for '''$1'''",
1104 'badquery' => 'Badly formed search query',
1105 'badquerytext' => 'We could not process your query.
1106 This is probably because you have attempted to search for a
1107 word fewer than three letters long, which is not yet supported.
1108 It could also be that you have mistyped the expression, for
1109 example "fish and and scales".
1110 Please try another query.',
1111 'matchtotals' => "The query \"$1\" matched $2 page titles
1112 and the text of $3 pages.",
1113 'noexactmatch' => "'''There is no page titled \"$1\".''' You can [[:$1|create this page]].",
1114 'titlematches' => 'Article title matches',
1115 'notitlematches' => 'No page title matches',
1116 'textmatches' => 'Page text matches',
1117 'notextmatches' => 'No page text matches',
1118 'prevn' => "previous $1",
1119 'nextn' => "next $1",
1120 'viewprevnext' => "View ($1) ($2) ($3).",
1121 'showingresults' => "Showing below up to <b>$1</b> results starting with #<b>$2</b>.",
1122 'showingresultsnum' => "Showing below <b>$3</b> results starting with #<b>$2</b>.",
1123 'nonefound' => "'''Note''': Unsuccessful searches are
1124 often caused by searching for common words like \"have\" and \"from\",
1125 which are not indexed, or by specifying more than one search term (only pages
1126 containing all of the search terms will appear in the result).",
1127 'powersearch' => 'Search',
1128 'powersearchtext' => "Search in namespaces:<br />$1<br />$2 List redirects<br />Search for $3 $9",
1129 '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.',
1130
1131 'googlesearch' => '
1132 <form method="get" action="http://www.google.com/search" id="googlesearch">
1133 <input type="hidden" name="domains" value="{{SERVER}}" />
1134 <input type="hidden" name="num" value="50" />
1135 <input type="hidden" name="ie" value="$2" />
1136 <input type="hidden" name="oe" value="$2" />
1137
1138 <input type="text" name="q" size="31" maxlength="255" value="$1" />
1139 <input type="submit" name="btnG" value="$3" />
1140 <div>
1141 <input type="radio" name="sitesearch" id="gwiki" value="{{SERVER}}" checked="checked" /><label for="gwiki">{{SITENAME}}</label>
1142 <input type="radio" name="sitesearch" id="gWWW" value="" /><label for="gWWW">WWW</label>
1143 </div>
1144 </form>',
1145 'blanknamespace' => '(Main)',
1146
1147 # Preferences page
1148 #
1149 'preferences' => 'Preferences',
1150 'preferences-summary' => '',
1151 'mypreferences' => 'My preferences',
1152 'prefsnologin' => 'Not logged in',
1153 'prefsnologintext' => "You must be [[Special:Userlogin|logged in]] to set user preferences.",
1154 'prefsreset' => 'Preferences have been reset from storage.',
1155 'qbsettings' => 'Quickbar',
1156 'changepassword' => 'Change password',
1157 'skin' => 'Skin',
1158 'math' => 'Math',
1159 'dateformat' => 'Date format',
1160 'datedefault' => 'No preference',
1161 'datetime' => 'Date and time',
1162 'math_failure' => 'Failed to parse',
1163 'math_unknown_error' => 'unknown error',
1164 'math_unknown_function' => 'unknown function',
1165 'math_lexing_error' => 'lexing error',
1166 'math_syntax_error' => 'syntax error',
1167 'math_image_error' => 'PNG conversion failed; check for correct installation of latex, dvips, gs, and convert',
1168 'math_bad_tmpdir' => 'Can\'t write to or create math temp directory',
1169 'math_bad_output' => 'Can\'t write to or create math output directory',
1170 'math_notexvc' => 'Missing texvc executable; please see math/README to configure.',
1171 'prefs-personal' => 'User profile',
1172 'prefs-rc' => 'Recent changes',
1173 'prefs-watchlist' => 'Watchlist',
1174 'prefs-watchlist-days' => 'Number of days to show in watchlist:',
1175 'prefs-watchlist-edits' => 'Number of edits to show in expanded watchlist:',
1176 'prefs-misc' => 'Misc',
1177 'saveprefs' => 'Save',
1178 'resetprefs' => 'Reset',
1179 'oldpassword' => 'Old password:',
1180 'newpassword' => 'New password:',
1181 'retypenew' => 'Retype new password:',
1182 'textboxsize' => 'Editing',
1183 'rows' => 'Rows:',
1184 'columns' => 'Columns:',
1185 'searchresultshead' => 'Search',
1186 'resultsperpage' => 'Hits per page:',
1187 'contextlines' => 'Lines per hit:',
1188 'contextchars' => 'Context per line:',
1189 'stubthreshold' => 'Threshold for stub display:',
1190 'recentchangescount' => 'Titles in recent changes:',
1191 'savedprefs' => 'Your preferences have been saved.',
1192 'timezonelegend' => 'Time zone',
1193 'timezonetext' => 'The number of hours your local time differs from server time (UTC).',
1194 'localtime' => 'Local time',
1195 'timezoneoffset' => 'Offset¹',
1196 'servertime' => 'Server time',
1197 'guesstimezone' => 'Fill in from browser',
1198 'allowemail' => 'Enable e-mail from other users',
1199 'defaultns' => 'Search in these namespaces by default:',
1200 'default' => 'default',
1201 'files' => 'Files',
1202
1203 # User rights
1204 'userrights-lookup-user' => 'Manage user groups',
1205 'userrights-user-editname' => 'Enter a username:',
1206 'editusergroup' => 'Edit User Groups',
1207
1208 'userrights-editusergroup' => 'Edit user groups',
1209 'saveusergroups' => 'Save User Groups',
1210 'userrights-groupsmember' => 'Member of:',
1211 'userrights-groupsavailable' => 'Available groups:',
1212 'userrights-groupshelp' => 'Select groups you want the user to be removed from or added to.
1213 Unselected groups will not be changed. You can deselect a group with CTRL + Left Click',
1214
1215 # Groups
1216 'group' => 'Group:',
1217 'group-bot' => 'Bots',
1218 'group-sysop' => 'Sysops',
1219 'group-bureaucrat' => 'Bureaucrats',
1220 'group-all' => '(all)',
1221
1222 'group-bot-member' => 'Bot',
1223 'group-sysop-member' => 'Sysop',
1224 'group-bureaucrat-member' => 'Bureaucrat',
1225
1226 'grouppage-bot' => '{{ns:project}}:Bots',
1227 'grouppage-sysop' => '{{ns:project}}:Administrators',
1228 'grouppage-bureaucrat' => '{{ns:project}}:Bureaucrats',
1229
1230 # Recent changes
1231 #
1232 'changes' => 'changes',
1233 'recentchanges' => 'Recent changes',
1234 'recentchanges-url' => 'Special:Recentchanges',
1235 'recentchangestext' => 'Track the most recent changes to the wiki on this page.',
1236 'rcnote' => "Below are the last <strong>$1</strong> changes in the last <strong>$2</strong> days, as of $3.",
1237 'rcnotefrom' => "Below are the changes since <b>$2</b> (up to <b>$1</b> shown).",
1238 'rclistfrom' => "Show new changes starting from $1",
1239 'rcshowhideminor' => '$1 minor edits',
1240 'rcshowhidebots' => '$1 bots',
1241 'rcshowhideliu' => '$1 logged-in users',
1242 'rcshowhideanons' => '$1 anonymous users',
1243 'rcshowhidepatr' => '$1 patrolled edits',
1244 'rcshowhidemine' => '$1 my edits',
1245 'rclinks' => "Show last $1 changes in last $2 days<br />$3",
1246 'diff' => 'diff',
1247 'hist' => 'hist',
1248 'hide' => 'Hide',
1249 'show' => 'Show',
1250 'minoreditletter' => 'm',
1251 'newpageletter' => 'N',
1252 'boteditletter' => 'b',
1253 'sectionlink' => '→',
1254 'number_of_watching_users_RCview' => '[$1]',
1255 'number_of_watching_users_pageview' => '[$1 watching user/s]',
1256 'rc_categories' => 'Limit to categories (separate with "|")',
1257 'rc_categories_any' => 'Any',
1258
1259 # Upload
1260 #
1261 'upload' => 'Upload file',
1262 'uploadbtn' => 'Upload file',
1263 'reupload' => 'Re-upload',
1264 'reuploaddesc' => 'Return to the upload form.',
1265 'uploadnologin' => 'Not logged in',
1266 'uploadnologintext' => "You must be [[Special:Userlogin|logged in]]
1267 to upload files.",
1268 'upload_directory_read_only' => 'The upload directory ($1) is not writable by the webserver.',
1269 'uploaderror' => 'Upload error',
1270 '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]].
1271
1272 To include the image in a page, use a link in the form
1273 '''<nowiki>[[{{ns:image}}:File.jpg]]</nowiki>''',
1274 '''<nowiki>[[{{ns:image}}:File.png|alt text]]</nowiki>''' or
1275 '''<nowiki>[[{{ns:media}}:File.ogg]]</nowiki>''' for directly linking to the file.",
1276 'uploadlog' => 'upload log',
1277 'uploadlogpage' => 'Upload log',
1278 'uploadlogpagetext' => 'Below is a list of the most recent file uploads.',
1279 'filename' => 'Filename',
1280 'filedesc' => 'Summary',
1281 'fileuploadsummary' => 'Summary:',
1282 'filestatus' => 'Copyright status',
1283 'filesource' => 'Source',
1284 'copyrightpage' => "Project:Copyrights",
1285 'copyrightpagename' => "{{SITENAME}} copyright",
1286 'uploadedfiles' => 'Uploaded files',
1287 'ignorewarning' => 'Ignore warning and save file anyway.',
1288 'ignorewarnings' => 'Ignore any warnings',
1289 'minlength' => 'File names must be at least three letters.',
1290 'illegalfilename' => 'The filename "$1" contains characters that are not allowed in page titles. Please rename the file and try uploading it again.',
1291 'badfilename' => 'File name has been changed to "$1".',
1292 'badfiletype' => "\".$1\" is not a recommended image file format.",
1293 'largefile' => 'It is recommended that files do not exceed $1 bytes in size; this file is $2 bytes',
1294 'largefileserver' => 'This file is bigger than the server is configured to allow.',
1295 '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.',
1296 'fileexists' => 'A file with this name exists already, please check $1 if you are not sure if you want to change it.',
1297 '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]]',
1298 '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]]',
1299 'successfulupload' => 'Successful upload',
1300 'fileuploaded' => "File $1 uploaded successfully.
1301 Please follow this link: $2 to the description page and fill
1302 in information about the file, such as where it came from, when it was
1303 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>",
1304 'uploadwarning' => 'Upload warning',
1305 'savefile' => 'Save file',
1306 'uploadedimage' => "uploaded \"[[$1]]\"",
1307 'uploaddisabled' => 'Uploads disabled',
1308 'uploaddisabledtext' => 'File uploads are disabled on this wiki.',
1309 'uploadscripted' => 'This file contains HTML or script code that may be erroneously be interpreted by a web browser.',
1310 'uploadcorrupt' => 'The file is corrupt or has an incorrect extension. Please check the file and upload again.',
1311 'uploadvirus' => 'The file contains a virus! Details: $1',
1312 'sourcefilename' => 'Source filename',
1313 'destfilename' => 'Destination filename',
1314 'watchthisupload' => 'Watch this page',
1315 'filewasdeleted' => 'A file of this name has been previously uploaded and subsequently deleted. You should check the $1 before proceeding to upload it again.',
1316
1317 'upload-proto-error' => 'Incorrect protocol',
1318 'upload-proto-error-text' => 'Remote upload requires URLs beginning with <code>http://</code> or <code>ftp://</code>.',
1319 'upload-file-error' => 'Internal error',
1320 'upload-file-error-text' => 'An internal error occurred when attempting to create a temporary file on the server. Please contact a system administrator.',
1321 'upload-misc-error' => 'Unknown upload error',
1322 '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.',
1323 # Some likely curl errors. More could be added from <http://curl.haxx.se/libcurl/c/libcurl-errors.html>
1324 'upload-curl-error6' => "Couldn't reach URL",
1325 'upload-curl-error6-text' => 'The URL provided could not be reached. Please double-check that the URL is correct and the site is up.',
1326 'upload-curl-error28' => 'Upload timeout',
1327 '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.',
1328
1329 'license' => 'Licensing',
1330 'nolicense' => 'None selected',
1331 'licenses' => '-', # Don't duplicate this in translations
1332 'upload_source_url' => ' (a valid, publicly accessible URL)',
1333 'upload_source_file' => ' (a file on your computer)',
1334
1335 # Image list
1336 #
1337 'imagelist' => 'File list',
1338 'imagelist-summary' => '',
1339 'imagelisttext' => "Below is a list of '''$1''' {{plural:$1|file|files}} sorted $2.",
1340 'imagelistforuser' => "This shows only images uploaded by $1.",
1341 'getimagelist' => 'fetching file list',
1342 'ilsubmit' => 'Search',
1343 'showlast' => 'Show last $1 files sorted $2.',
1344 'byname' => 'by name',
1345 'bydate' => 'by date',
1346 'bysize' => 'by size',
1347 'imgdelete' => 'del',
1348 'imgdesc' => 'desc',
1349 'imgfile' => 'file',
1350 'imglegend' => 'Legend: (desc) = show/edit file description.',
1351 'imghistory' => 'File history',
1352 'revertimg' => 'rev',
1353 'deleteimg' => 'del',
1354 'deleteimgcompletely' => 'Delete all revisions of this file',
1355 'imghistlegend' => 'Legend: (cur) = this is the current file, (del) = delete
1356 this old version, (rev) = revert to this old version.
1357 <br /><i>Click on date to see the file uploaded on that date</i>.',
1358 'imagelinks' => 'Links',
1359 'linkstoimage' => 'The following pages link to this file:',
1360 'nolinkstoimage' => 'There are no pages that link to this file.',
1361 'sharedupload' => 'This file is a shared upload and may be used by other projects.',
1362 'shareduploadwiki' => 'Please see the $1 for further information.',
1363 'shareduploadwiki-linktext' => 'file description page',
1364 'shareddescriptionfollows' => '-',
1365 'noimage' => 'No file by this name exists, you can $1.',
1366 'noimage-linktext' => 'upload it',
1367 'uploadnewversion-linktext' => 'Upload a new version of this file',
1368 'imagelist_date' => 'Date',
1369 'imagelist_name' => 'Name',
1370 'imagelist_user' => 'User',
1371 'imagelist_size' => 'Size (bytes)',
1372 'imagelist_description' => 'Description',
1373 'imagelist_search_for' => 'Search for image name:',
1374
1375 # Mime search
1376 #
1377 'mimesearch' => 'MIME search',
1378 'mimesearch-summary' => '',
1379 'mimetype' => 'MIME type:',
1380 'download' => 'download',
1381
1382 # Unwatchedpages
1383 #
1384 'unwatchedpages' => 'Unwatched pages',
1385 'unwatchedpages-summary' => '',
1386
1387 # List redirects
1388 'listredirects' => 'List redirects',
1389 'listredirects-summary' => '',
1390
1391 # Unused templates
1392 'unusedtemplates' => 'Unused templates',
1393 'unusedtemplates-summary' => '',
1394 '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.',
1395 'unusedtemplateswlh' => 'other links',
1396
1397 # Random redirect
1398 'randomredirect' => 'Random redirect',
1399
1400 # Statistics
1401 #
1402 'statistics' => 'Statistics',
1403 'sitestats' => '{{SITENAME}} statistics',
1404 'userstats' => 'User statistics',
1405 'sitestatstext' => "There are '''$1''' total pages in the database.
1406 This includes \"talk\" pages, pages about {{SITENAME}}, minimal \"stub\"
1407 pages, redirects, and others that probably don't qualify as content pages.
1408 Excluding those, there are '''$2''' pages that are probably legitimate
1409 content pages.
1410
1411 '''$8''' files have been uploaded.
1412
1413 There have been a total of '''$3''' page views, and '''$4''' page edits
1414 since the wiki was setup.
1415 That comes to '''$5''' average edits per page, and '''$6''' views per edit.
1416
1417 The [http://meta.wikimedia.org/wiki/Help:Job_queue job queue] length is '''$7'''.",
1418 'userstatstext' => "There are '''$1''' registered users, of which
1419 '''$2''' (or '''$4%''') are $5.",
1420 'statistics-mostpopular' => 'Most viewed pages',
1421
1422 'disambiguations' => 'Disambiguation pages',
1423 'disambiguations-summary' => '',
1424 'disambiguationspage' => 'Template:disambig',
1425 '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.",
1426
1427 'doubleredirects' => 'Double redirects',
1428 'doubleredirects-summary' => '',
1429 '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.",
1430
1431 'brokenredirects' => 'Broken redirects',
1432 'brokenredirects-summary' => '',
1433 'brokenredirectstext' => 'The following redirects link to non-existent pages:',
1434
1435
1436 # Miscellaneous special pages
1437 #
1438 'nbytes' => '$1 {{PLURAL:$1|byte|bytes}}',
1439 'ncategories' => '$1 {{PLURAL:$1|category|categories}}',
1440 'nlinks' => '$1 {{PLURAL:$1|link|links}}',
1441 'nmembers' => '$1 {{PLURAL:$1|member|members}}',
1442 'nrevisions' => '$1 {{PLURAL:$1|revision|revisions}}',
1443 'nviews' => '$1 {{PLURAL:$1|view|views}}',
1444
1445 'lonelypages' => 'Orphaned pages',
1446 'lonelypages-summary' => '',
1447 'lonelypagestext' => 'The following pages are not linked from other pages in this wiki.',
1448 'uncategorizedpages' => 'Uncategorized pages',
1449 'uncategorizedpages-summary' => '',
1450 'uncategorizedcategories' => 'Uncategorized categories',
1451 'uncategorizedcategories-summary' => '',
1452 'uncategorizedimages' => 'Uncategorized images',
1453 'uncategorizedimages-summary' => '',
1454 'unusedcategories' => 'Unused categories',
1455 'unusedimages' => 'Unused files',
1456 'popularpages' => 'Popular pages',
1457 'popularpages-summary' => '',
1458 'wantedcategories' => 'Wanted categories',
1459 'wantedcategories-summary' => '',
1460 'wantedpages' => 'Wanted pages',
1461 'wantedpages-summary' => '',
1462 'mostlinked' => 'Most linked to pages',
1463 'mostlinked-summary' => '',
1464 'mostlinkedcategories' => 'Most linked to categories',
1465 'mostlinkedcategories-summary' => '',
1466 'mostcategories' => 'Articles with the most categories',
1467 'mostcategories-summary' => '',
1468 'mostimages' => 'Most linked to images',
1469 'mostimages-summary' => '',
1470 'mostrevisions' => 'Articles with the most revisions',
1471 'mostrevisions-summary' => '',
1472 'allpages' => 'All pages',
1473 'allpages-summary' => '',
1474 'prefixindex' => 'Prefix index',
1475 'prefixindex-summary' => '',
1476 'randompage' => 'Random page',
1477 'randompage-url'=> 'Special:Random',
1478 'shortpages' => 'Short pages',
1479 'shortpages-summary' => '',
1480 'longpages' => 'Long pages',
1481 'longpages-summary' => '',
1482 'deadendpages' => 'Dead-end pages',
1483 'deadendpages-summary' => '',
1484 'deadendpagestext' => 'The following pages do not link to other pages in this wiki.',
1485 'listusers' => 'User list',
1486 'listusers-summary' => '',
1487 'specialpages' => 'Special pages',
1488 'specialpages-summary' => '',
1489 'spheading' => 'Special pages for all users',
1490 'restrictedpheading' => 'Restricted special pages',
1491 'recentchangeslinked' => 'Related changes',
1492 'rclsub' => "(to pages linked from \"$1\")",
1493 'newpages' => 'New pages',
1494 'newpages-summary' => '',
1495 'newpages-username' => 'Username:',
1496 'ancientpages' => 'Oldest pages',
1497 'ancientpages-summary' => '',
1498 'intl' => 'Interlanguage links',
1499 'move' => 'Move',
1500 'movethispage' => 'Move this page',
1501 'unusedimagestext' => '<p>Please note that other web sites may link to an image with
1502 a direct URL, and so may still be listed here despite being
1503 in active use.</p>',
1504 'unusedcategoriestext' => 'The following category pages exist although no other article or category make use of them.',
1505
1506 'booksources' => 'Book sources',
1507 'booksources-summary' => '',
1508 'categoriespagetext' => 'The following categories exist in the wiki.',
1509 'data' => 'Data',
1510 'userrights' => 'User rights management',
1511 'userrights-summary' => '',
1512 'groups' => 'User groups',
1513
1514 'booksourcetext' => "Below is a list of links to other sites that
1515 sell new and used books, and may also have further information
1516 about books you are looking for.",
1517 'isbn' => 'ISBN',
1518 'rfcurl' => 'http://www.ietf.org/rfc/rfc$1.txt',
1519 'pubmedurl' => 'http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=pubmed&dopt=Abstract&list_uids=$1',
1520 'alphaindexline' => "$1 to $2",
1521 'version' => 'Version',
1522 'log' => 'Logs',
1523 'alllogstext' => 'Combined display of upload, deletion, protection, blocking, and sysop logs.
1524 You can narrow down the view by selecting a log type, the user name, or the affected page.',
1525 'logempty' => 'No matching items in log.',
1526
1527
1528 # Special:Allpages
1529 'nextpage' => 'Next page ($1)',
1530 'allpagesfrom' => 'Display pages starting at:',
1531 'allarticles' => 'All articles',
1532 'allinnamespace' => 'All pages ($1 namespace)',
1533 'allnotinnamespace' => 'All pages (not in $1 namespace)',
1534 'allpagesprev' => 'Previous',
1535 'allpagesnext' => 'Next',
1536 'allpagessubmit' => 'Go',
1537 'allpagesprefix' => 'Display pages with prefix:',
1538 '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.',
1539
1540 # Special:Listusers
1541 'listusersfrom' => 'Display users starting at:',
1542
1543 # Email this user
1544 #
1545 'mailnologin' => 'No send address',
1546 'mailnologintext' => "You must be [[Special:Userlogin|logged in]]
1547 and have a valid e-mail address in your [[Special:Preferences|preferences]]
1548 to send e-mail to other users.",
1549 'emailuser' => 'E-mail this user',
1550 'emailpage' => 'E-mail user',
1551 'emailpagetext' => 'If this user has entered a valid e-mail address in
1552 his or her user preferences, the form below will send a single message.
1553 The e-mail address you entered in your user preferences will appear
1554 as the "From" address of the mail, so the recipient will be able
1555 to reply.',
1556 'usermailererror' => 'Mail object returned error:',
1557 'defemailsubject' => "{{SITENAME}} e-mail",
1558 'noemailtitle' => 'No e-mail address',
1559 'noemailtext' => 'This user has not specified a valid e-mail address,
1560 or has chosen not to receive e-mail from other users.',
1561 'emailfrom' => 'From',
1562 'emailto' => 'To',
1563 'emailsubject' => 'Subject',
1564 'emailmessage' => 'Message',
1565 'emailsend' => 'Send',
1566 'emailccme' => 'E-mail me a copy of my message.',
1567 'emailccsubject'=> 'Copy of your message to $1: $2',
1568 'emailsent' => 'E-mail sent',
1569 'emailsenttext' => 'Your e-mail message has been sent.',
1570
1571 # Watchlist
1572 'watchlist' => 'My watchlist',
1573 'watchlistfor' => "(for '''$1''')",
1574 'nowatchlist' => 'You have no items on your watchlist.',
1575 'watchlistanontext' => 'Please $1 to view or edit items on your watchlist.',
1576 'watchlistcount' => "'''You have {{PLURAL:$1|$1 item|$1 items}} on your watchlist, including talk pages.'''",
1577 'clearwatchlist' => 'Clear watchlist',
1578 'watchlistcleartext' => 'Are you sure you wish to remove them?',
1579 'watchlistclearbutton' => 'Clear watchlist',
1580 'watchlistcleardone' => 'Your watchlist has been cleared. {{PLURAL:$1|$1 item was|$1 items were}} removed.',
1581 'watchnologin' => 'Not logged in',
1582 'watchnologintext' => 'You must be [[Special:Userlogin|logged in]] to modify your watchlist.',
1583 'addedwatch' => 'Added to watchlist',
1584 'addedwatchtext' => "The page \"[[:$1]]\" has been added to your [[Special:Watchlist|watchlist]].
1585 Future changes to this page and its associated Talk page will be listed there,
1586 and the page will appear '''bolded''' in the [[Special:Recentchanges|list of recent changes]] to
1587 make it easier to pick out.
1588
1589 If you want to remove the page from your watchlist later, click \"Unwatch\" in the sidebar.",
1590 'removedwatch' => 'Removed from watchlist',
1591 'removedwatchtext' => "The page \"[[:$1]]\" has been removed from your watchlist.",
1592 'watch' => 'Watch',
1593 'watchthispage' => 'Watch this page',
1594 'unwatch' => 'Unwatch',
1595 'unwatchthispage' => 'Stop watching',
1596 'notanarticle' => 'Not a content page',
1597 'watchnochange' => 'None of your watched items was edited in the time period displayed.',
1598 'watchdetails' => '* {{PLURAL:$1|$1 page|$1 pages}} watched not counting talk pages
1599 * [[Special:Watchlist/edit|Show and edit complete watchlist]]
1600 * [[Special:Watchlist/clear|Remove all pages]]',
1601 'wlheader-enotif' => "* E-mail notification is enabled.",
1602 'wlheader-showupdated' => "* Pages which have been changed since you last visited them are shown in '''bold'''",
1603 'watchmethod-recent'=> 'checking recent edits for watched pages',
1604 'watchmethod-list' => 'checking watched pages for recent edits',
1605 'removechecked' => 'Remove checked items from watchlist',
1606 'watchlistcontains' => "Your watchlist contains $1 pages.",
1607 'watcheditlist' => 'Here\'s an alphabetical list of your
1608 watched content pages. Check the boxes of pages you want to remove from your watchlist and click the \'remove checked\' button
1609 at the bottom of the screen (deleting a content page also deletes the accompanying talk page and vice versa).',
1610 'removingchecked' => 'Removing requested items from watchlist...',
1611 'couldntremove' => "Couldn't remove item '$1'...",
1612 'iteminvalidname' => "Problem with item '$1', invalid name...",
1613 'wlnote' => 'Below are the last $1 changes in the last <b>$2</b> hours.',
1614 'wlshowlast' => 'Show last $1 hours $2 days $3',
1615 'wlsaved' => 'This is a saved version of your watchlist.',
1616 'wlhideshowown' => '$1 my edits',
1617 'wlhideshowbots' => '$1 bot edits',
1618 'wldone' => 'Done.',
1619
1620 'enotif_mailer' => '{{SITENAME}} Notification Mailer',
1621 'enotif_reset' => 'Mark all pages visited',
1622 'enotif_newpagetext'=> 'This is a new page.',
1623 'changed' => 'changed',
1624 'created' => 'created',
1625 'enotif_subject' => '{{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED by $PAGEEDITOR',
1626 'enotif_lastvisited' => 'See $1 for all changes since your last visit.',
1627 'enotif_body' => 'Dear $WATCHINGUSERNAME,
1628
1629 the {{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED on $PAGEEDITDATE by $PAGEEDITOR, see $PAGETITLE_URL for the current version.
1630
1631 $NEWPAGE
1632
1633 Editor\'s summary: $PAGESUMMARY $PAGEMINOREDIT
1634
1635 Contact the editor:
1636 mail: $PAGEEDITOR_EMAIL
1637 wiki: $PAGEEDITOR_WIKI
1638
1639 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.
1640
1641 Your friendly {{SITENAME}} notification system
1642
1643 --
1644 To change your watchlist settings, visit
1645 {{fullurl:{{ns:special}}:Watchlist/edit}}
1646
1647 Feedback and further assistance:
1648 {{fullurl:{{ns:help}}:Contents}}',
1649
1650 # Delete/protect/revert
1651 #
1652 'deletepage' => 'Delete page',
1653 'confirm' => 'Confirm',
1654 'excontent' => "content was: '$1'",
1655 'excontentauthor' => "content was: '$1' (and the only contributor was '[[Special:Contributions/$2|$2]]')",
1656 'exbeforeblank' => "content before blanking was: '$1'",
1657 'exblank' => 'page was empty',
1658 'confirmdelete' => 'Confirm delete',
1659 'deletesub' => "(Deleting \"$1\")",
1660 'historywarning' => 'Warning: The page you are about to delete has a history:',
1661 'confirmdeletetext' => "You are about to permanently delete a page
1662 or image along with all of its history from the database.
1663 Please confirm that you intend to do this, that you understand the
1664 consequences, and that you are doing this in accordance with
1665 [[{{ns:project}}:Policy]].",
1666 'actioncomplete' => 'Action complete',
1667 'deletedtext' => "\"$1\" has been deleted.
1668 See $2 for a record of recent deletions.",
1669 'deletedarticle' => "deleted \"[[$1]]\"",
1670 'dellogpage' => 'Deletion log',
1671 'dellogpagetext' => 'Below is a list of the most recent deletions.',
1672 'deletionlog' => 'deletion log',
1673 'reverted' => 'Reverted to earlier revision',
1674 'deletecomment' => 'Reason for deletion',
1675 'imagereverted' => 'Revert to earlier version was successful.',
1676 'rollback' => 'Roll back edits',
1677 'rollback_short' => 'Rollback',
1678 'rollbacklink' => 'rollback',
1679 'rollbackfailed' => 'Rollback failed',
1680 'cantrollback' => 'Cannot revert edit; last contributor is only author of this page.',
1681 'alreadyrolled' => "Cannot rollback last edit of [[:$1]]
1682 by [[User:$2|$2]] ([[User talk:$2|Talk]]); someone else has edited or rolled back the page already.
1683
1684 Last edit was by [[User:$3|$3]] ([[User talk:$3|Talk]]).",
1685 # only shown if there is an edit comment
1686 'editcomment' => "The edit comment was: \"<i>$1</i>\".",
1687 'revertpage' => "Reverted edits by [[Special:Contributions/$2|$2]] ([[User_talk:$2|Talk]]); changed back to last version by [[User:$1|$1]]",
1688 'sessionfailure' => 'There seems to be a problem with your login session;
1689 this action has been canceled as a precaution against session hijacking.
1690 Please hit "back" and reload the page you came from, then try again.',
1691 'protectlogpage' => 'Protection log',
1692 'protectlogtext' => "Below is a list of page locks and unlocks.",
1693 'protectedarticle' => 'protected "[[$1]]"',
1694 'unprotectedarticle' => 'unprotected "[[$1]]"',
1695 'protectsub' => '(Protecting "$1")',
1696 'confirmprotecttext' => 'Do you really want to protect this page?',
1697 'confirmprotect' => 'Confirm protection',
1698 'protectmoveonly' => 'Protect from moves only',
1699 'protectcomment' => 'Reason for protecting',
1700 'unprotectsub' =>"(Unprotecting \"$1\")",
1701 'confirmunprotecttext' => 'Do you really want to unprotect this page?',
1702 'confirmunprotect' => 'Confirm unprotection',
1703 'unprotectcomment' => 'Reason for unprotecting',
1704 'protect-unchain' => 'Unlock move permissions',
1705 'protect-text' => 'You may view and change the protection level here for the page <strong>$1</strong>.',
1706 'protect-viewtext' => 'Your account does not have permission to change
1707 page protection levels. Here are the current settings for the page <strong>$1</strong>:',
1708 'protect-default' => '(default)',
1709 'protect-level-autoconfirmed' => 'Block unregistered users',
1710 'protect-level-sysop' => 'Sysops only',
1711
1712 # restrictions (nouns)
1713 'restriction-edit' => 'Edit',
1714 'restriction-move' => 'Move',
1715
1716
1717 # Undelete
1718 'undelete' => 'View deleted pages',
1719 'undeletepage' => 'View and restore deleted pages',
1720 'viewdeletedpage' => 'View deleted pages',
1721 'undeletepagetext' => 'The following pages have been deleted but are still in the archive and
1722 can be restored. The archive may be periodically cleaned out.',
1723 'undeleteextrahelp' => "To restore the entire page, leave all checkboxes deselected and
1724 click '''''Restore'''''. To perform a selective restoration, check the boxes corresponding to the
1725 revisions to be restored, and click '''''Restore'''''. Clicking '''''Reset''''' will clear the
1726 comment field and all checkboxes.",
1727 'undeletearticle' => 'Restore deleted page',
1728 'undeleterevisions' => "$1 revisions archived",
1729 'undeletehistory' => 'If you restore the page, all revisions will be restored to the history.
1730 If a new page with the same name has been created since the deletion, the restored
1731 revisions will appear in the prior history, and the current revision of the live page
1732 will not be automatically replaced.',
1733 'undeletehistorynoadmin' => 'This article has been deleted. The reason for deletion is
1734 shown in the summary below, along with details of the users who had edited this page
1735 before deletion. The actual text of these deleted revisions is only available to administrators.',
1736 'undeleterevision' => "Deleted revision as of $1",
1737 'undeleterevision-missing' => "Invalid or missing revision. You may have a bad link, or the
1738 revision may have been restored or removed from the archive.",
1739 'undeletebtn' => 'Restore',
1740 'undeletereset' => 'Reset',
1741 'undeletecomment' => 'Comment:',
1742 'undeletedarticle' => "restored \"[[$1]]\"",
1743 'undeletedrevisions' => "$1 revisions restored",
1744 'undeletedrevisions-files' => "$1 revisions and $2 file(s) restored",
1745 'undeletedfiles' => "$1 file(s) restored",
1746 'cannotundelete' => 'Undelete failed; someone else may have undeleted the page first.',
1747 'undeletedpage' => "<big>'''$1 has been restored'''</big>
1748
1749 Consult the [[Special:Log/delete|deletion log]] for a record of recent deletions and restorations.",
1750
1751 # Namespace form on various pages
1752 'namespace' => 'Namespace:',
1753 'invert' => 'Invert selection',
1754
1755 # Contributions
1756 #
1757 'contributions' => 'User contributions',
1758 'mycontris' => 'My contributions',
1759 'contribsub' => "For $1",
1760 'nocontribs' => 'No changes were found matching these criteria.',
1761 'ucnote' => "Below are this user's last <b>$1</b> changes in the last <b>$2</b> days.",
1762 'uclinks' => "View the last $1 changes; view the last $2 days.",
1763 'uctop' => ' (top)' ,
1764 'newbies' => 'newbies',
1765
1766 'sp-newimages-showfrom' => 'Show new images starting from $1',
1767
1768 'sp-contributions-newest' => 'Newest',
1769 'sp-contributions-oldest' => 'Oldest',
1770 'sp-contributions-newer' => 'Newer $1',
1771 'sp-contributions-older' => 'Older $1',
1772 'sp-contributions-newbies-sub' => 'For newbies',
1773
1774
1775 # What links here
1776 #
1777 'whatlinkshere' => 'What links here',
1778 'whatlinkshere-summary' => '',
1779 'whatlinkshere-barrow' => '&lt;',
1780 'notargettitle' => 'No target',
1781 'notargettext' => 'You have not specified a target page or user
1782 to perform this function on.',
1783 'linklistsub' => '(List of links)',
1784 'linkshere' => "The following pages link to '''[[:$1]]''':",
1785 'nolinkshere' => "No pages link to '''[[:$1]]'''.",
1786 'isredirect' => 'redirect page',
1787 'istemplate' => 'inclusion',
1788
1789 # Block/unblock IP
1790 #
1791 'blockip' => 'Block user',
1792 'blockiptext' => "Use the form below to block write access
1793 from a specific IP address or username.
1794 This should be done only only to prevent vandalism, and in
1795 accordance with [[{{ns:project}}:Policy|policy]].
1796 Fill in a specific reason below (for example, citing particular
1797 pages that were vandalized).",
1798 'ipaddress' => 'IP Address',
1799 'ipadressorusername' => 'IP Address or username',
1800 'ipbexpiry' => 'Expiry',
1801 'ipbreason' => 'Reason',
1802 'ipbanononly' => 'Block anonymous users only',
1803 'ipbcreateaccount' => 'Prevent account creation',
1804 'ipbenableautoblock' => 'Automatically block the last IP address used by this user, and any subsequent addresses they try to edit from',
1805 'ipbsubmit' => 'Block this user',
1806 'ipbother' => 'Other time',
1807 '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',
1808 'ipbotheroption' => 'other',
1809 'badipaddress' => 'Invalid IP address',
1810 'blockipsuccesssub' => 'Block succeeded',
1811 'blockipsuccesstext' => '[[{{ns:Special}}:Contributions/$1|$1]] has been blocked.
1812 <br />See [[{{ns:Special}}:Ipblocklist|IP block list]] to review blocks.',
1813 'unblockip' => 'Unblock user',
1814 'unblockiptext' => 'Use the form below to restore write access
1815 to a previously blocked IP address or username.',
1816 'ipusubmit' => 'Unblock this address',
1817 'unblocked' => '[[User:$1|$1]] has been unblocked',
1818 'ipblocklist' => 'List of blocked IP addresses and usernames',
1819 'ipblocklist-summary' => '',
1820 'blocklistline' => "$1, $2 blocked $3 ($4)",
1821 'infiniteblock' => 'infinite',
1822 'expiringblock' => 'expires $1',
1823 'anononlyblock' => 'anon. only',
1824 'noautoblockblock' => 'autoblock disabled',
1825 'createaccountblock' => 'account creation blocked',
1826 'ipblocklistempty' => 'The blocklist is empty.',
1827 'blocklink' => 'block',
1828 'unblocklink' => 'unblock',
1829 'contribslink' => 'contribs',
1830 'autoblocker' => 'Autoblocked because your IP address has been recently used by "[[User:$1|$1]]". The reason given for $1\'s block is: "\'\'\'$2\'\'\'"',
1831 'blocklogpage' => 'Block log',
1832 'blocklogentry' => 'blocked "[[$1]]" with an expiry time of $2',
1833 'blocklogtext' => 'This is a log of user blocking and unblocking actions. Automatically
1834 blocked IP addresses are not listed. See the [[Special:Ipblocklist|IP block list]] for
1835 the list of currently operational bans and blocks.',
1836 'unblocklogentry' => 'unblocked $1',
1837 'range_block_disabled' => 'The sysop ability to create range blocks is disabled.',
1838 'ipb_expiry_invalid' => 'Expiry time invalid.',
1839 'ipb_already_blocked' => '"$1" is already blocked',
1840 'ip_range_invalid' => 'Invalid IP range.',
1841 'proxyblocker' => 'Proxy blocker',
1842 'ipb_cant_unblock' => 'Error: Block ID $1 not found. It may have been unblocked already.',
1843 '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.',
1844 'proxyblocksuccess' => 'Done.',
1845 'sorbs' => 'DNSBL',
1846 'sorbsreason' => 'Your IP address is listed as an open proxy in the DNSBL used by this site.',
1847 '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',
1848
1849
1850 # Developer tools
1851 #
1852 'lockdb' => 'Lock database',
1853 'unlockdb' => 'Unlock database',
1854 'lockdbtext' => 'Locking the database will suspend the ability of all
1855 users to edit pages, change their preferences, edit their watchlists, and
1856 other things requiring changes in the database.
1857 Please confirm that this is what you intend to do, and that you will
1858 unlock the database when your maintenance is done.',
1859 'unlockdbtext' => 'Unlocking the database will restore the ability of all
1860 users to edit pages, change their preferences, edit their watchlists, and
1861 other things requiring changes in the database.
1862 Please confirm that this is what you intend to do.',
1863 'lockconfirm' => 'Yes, I really want to lock the database.',
1864 'unlockconfirm' => 'Yes, I really want to unlock the database.',
1865 'lockbtn' => 'Lock database',
1866 'unlockbtn' => 'Unlock database',
1867 'locknoconfirm' => 'You did not check the confirmation box.',
1868 'lockdbsuccesssub' => 'Database lock succeeded',
1869 'unlockdbsuccesssub' => 'Database lock removed',
1870 'lockdbsuccesstext' => 'The database has been locked.
1871 <br />Remember to [[Special:Unlockdb|remove the lock]] after your maintenance is complete.',
1872 'unlockdbsuccesstext' => 'The database has been unlocked.',
1873 'lockfilenotwritable' => 'The database lock file is not writable. To lock or unlock the database, this needs to be writable by the web server.',
1874 'databasenotlocked' => 'The database is not locked.',
1875
1876 # Make sysop
1877 'makesysoptitle' => 'Make a user into a sysop',
1878 'makesysoptext' => 'This form is used by bureaucrats to turn ordinary users into administrators.
1879 Type the name of the user in the box and press the button to make the user an administrator',
1880 'makesysopname' => 'Name of the user:',
1881 'makesysopsubmit' => 'Make this user into a sysop',
1882 'makesysopok' => "<b>User \"$1\" is now a sysop</b>",
1883 'makesysopfail' => "<b>User \"$1\" could not be made into a sysop. (Did you enter the name correctly?)</b>",
1884 'setbureaucratflag' => 'Set bureaucrat flag',
1885 'rightslog' => 'User rights log',
1886 'rightslogtext' => 'This is a log of changes to user rights.',
1887 'rightslogentry' => 'changed group membership for $1 from $2 to $3',
1888 'rights' => 'Rights:',
1889 'set_user_rights' => 'Set user rights',
1890 'user_rights_set' => "<b>User rights for \"$1\" updated</b>",
1891 'set_rights_fail' => "<b>User rights for \"$1\" could not be set. (Did you enter the name correctly?)</b>",
1892 'makesysop' => 'Make a user into a sysop',
1893 'already_sysop' => 'This user is already an administrator',
1894 'already_bureaucrat' => 'This user is already a bureaucrat',
1895 'rightsnone' => '(none)',
1896
1897 # Move page
1898 #
1899 'movepage' => 'Move page',
1900 'movepagetext' => 'Using the form below will rename a page, moving all
1901 of its history to the new name.
1902 The old title will become a redirect page to the new title.
1903 Links to the old page title will not be changed; be sure to
1904 check for double or broken redirects.
1905 You are responsible for making sure that links continue to
1906 point where they are supposed to go.
1907
1908 Note that the page will \'\'\'not\'\'\' be moved if there is already
1909 a page at the new title, unless it is empty or a redirect and has no
1910 past edit history. This means that you can rename a page back to where
1911 it was just renamed from if you make a mistake, and you cannot overwrite
1912 an existing page.
1913
1914 <b>WARNING!</b>
1915 This can be a drastic and unexpected change for a popular page;
1916 please be sure you understand the consequences of this before
1917 proceeding.',
1918 'movepagetalktext' => 'The associated talk page will be automatically moved along with it \'\'\'unless:\'\'\'
1919 *A non-empty talk page already exists under the new name, or
1920 *You uncheck the box below.
1921
1922 In those cases, you will have to move or merge the page manually if desired.',
1923 'movearticle' => 'Move page',
1924 'movenologin' => 'Not logged in',
1925 'movenologintext' => "You must be a registered user and [[Special:Userlogin|logged in]]
1926 to move a page.",
1927 'newtitle' => 'To new title',
1928 'movepagebtn' => 'Move page',
1929 'pagemovedsub' => 'Move succeeded',
1930 'pagemovedtext' => "Page \"[[$1]]\" moved to \"[[$2]]\".",
1931 'articleexists' => 'A page of that name already exists, or the
1932 name you have chosen is not valid.
1933 Please choose another name.',
1934 '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.'''",
1935 'movedto' => 'moved to',
1936 'movetalk' => 'Move associated talk page',
1937 'talkpagemoved' => 'The corresponding talk page was also moved.',
1938 'talkpagenotmoved' => 'The corresponding talk page was <strong>not</strong> moved.',
1939 '1movedto2' => '[[$1]] moved to [[$2]]',
1940 '1movedto2_redir' => '[[$1]] moved to [[$2]] over redirect',
1941 'movelogpage' => 'Move log',
1942 'movelogpagetext' => 'Below is a list of page moved.',
1943 'movereason' => 'Reason',
1944 'revertmove' => 'revert',
1945 'delete_and_move' => 'Delete and move',
1946 'delete_and_move_text' =>
1947 '==Deletion required==
1948
1949 The destination article "[[$1]]" already exists. Do you want to delete it to make way for the move?',
1950 'delete_and_move_confirm' => 'Yes, delete the page',
1951 'delete_and_move_reason' => 'Deleted to make way for move',
1952 'selfmove' => "Source and destination titles are the same; can't move a page over itself.",
1953 'immobile_namespace' => "Source or destination title is of a special type; cannot move pages from and into that namespace.",
1954
1955 # Export
1956
1957 'export' => 'Export pages',
1958 'exporttext' => 'You can export the text and editing history of a particular page or
1959 set of pages wrapped in some XML. This can be imported into another wiki using MediaWiki
1960 via the Special:Import page.
1961
1962 To export pages, enter the titles in the text box below, one title per line, and
1963 select whether you want the current version as well as all old versions, with the page
1964 history lines, or just the current version with the info about the last edit.
1965
1966 In the latter case you can also use a link, e.g. [[{{ns:Special}}:Export/{{int:mainpage}}]] for the page {{int:mainpage}}.',
1967 'exportcuronly' => 'Include only the current revision, not the full history',
1968 'exportnohistory' => "----
1969 '''Note:''' Exporting the full history of pages through this form has been disabled due to performance reasons.",
1970 'export-submit' => 'Export',
1971
1972 # Namespace 8 related
1973
1974 'allmessages' => 'System messages',
1975 'allmessagesname' => 'Name',
1976 'allmessagesdefault' => 'Default text',
1977 'allmessagescurrent' => 'Current text',
1978 'allmessagestext' => 'This is a list of system messages available in the MediaWiki namespace.',
1979 'allmessagesnotsupportedUI' => 'Your current interface language <b>$1</b> is not supported by Special:Allmessages at this site.',
1980 'allmessagesnotsupportedDB' => '\'\'\'Special:Allmessages\'\'\' cannot be used because \'\'\'$wgUseDatabaseMessages\'\'\' is switched off.',
1981 'allmessagesfilter' => 'Message name filter:',
1982 'allmessagesmodified' => 'Show only modified',
1983
1984
1985 # Thumbnails
1986
1987 'thumbnail-more' => 'Enlarge',
1988 'missingimage' => '<b>Missing image</b><br /><i>$1</i>',
1989 'filemissing' => 'File missing',
1990 'thumbnail_error' => 'Error creating thumbnail: $1',
1991
1992 # Special:Import
1993 'import' => 'Import pages',
1994 'importinterwiki' => 'Transwiki import',
1995 'import-interwiki-text' => 'Select a wiki and page title to import.
1996 Revision dates and editors\' names will be preserved.
1997 All transwiki import actions are logged at the [[Special:Log/import|import log]].',
1998 'import-interwiki-history' => 'Copy all history versions for this page',
1999 'import-interwiki-submit' => 'Import',
2000 'import-interwiki-namespace' => 'Transfer pages into namespace:',
2001 'importtext' => 'Please export the file from the source wiki using the Special:Export utility, save it to your disk and upload it here.',
2002 'importstart' => "Importing pages...",
2003 'import-revision-count' => '$1 {{PLURAL:$1|revision|revisions}}',
2004 'importnopages' => "No pages to import.",
2005 'importfailed' => "Import failed: $1",
2006 'importunknownsource' => "Unknown import source type",
2007 'importcantopen' => "Couldn't open import file",
2008 'importbadinterwiki' => "Bad interwiki link",
2009 'importnotext' => 'Empty or no text',
2010 'importsuccess' => 'Import succeeded!',
2011 'importhistoryconflict' => 'Conflicting history revision exists (may have imported this page before)',
2012 'importnosources' => 'No transwiki import sources have been defined and direct history uploads are disabled.',
2013 'importnofile' => 'No import file was uploaded.',
2014 'importuploaderror' => 'Upload of import file failed; perhaps the file is bigger than the allowed upload size.',
2015
2016 # import log
2017 'importlogpage' => 'Import log',
2018 'importlogpagetext' => 'Administrative imports of pages with edit history from other wikis.',
2019 'import-logentry-upload' => 'imported [[$1]] by file upload',
2020 'import-logentry-upload-detail' => '$1 revision(s)',
2021 'import-logentry-interwiki' => 'transwikied $1',
2022 'import-logentry-interwiki-detail' => '$1 revision(s) from $2',
2023
2024
2025 # Keyboard access keys for power users
2026 'accesskey-search' => 'f',
2027 'accesskey-minoredit' => 'i',
2028 'accesskey-save' => 's',
2029 'accesskey-preview' => 'p',
2030 'accesskey-diff' => 'v',
2031 'accesskey-compareselectedversions' => 'v',
2032 'accesskey-watch' => 'w',
2033
2034 # tooltip help for some actions, most are in Monobook.js
2035 'tooltip-search' => 'Search {{SITENAME}} [alt-f]',
2036 'tooltip-minoredit' => 'Mark this as a minor edit [alt-i]',
2037 'tooltip-save' => 'Save your changes [alt-s]',
2038 'tooltip-preview' => 'Preview your changes, please use this before saving! [alt-p]',
2039 'tooltip-diff' => 'Show which changes you made to the text. [alt-v]',
2040 'tooltip-compareselectedversions' => 'See the differences between the two selected versions of this page. [alt-v]',
2041 'tooltip-watch' => 'Add this page to your watchlist [alt-w]',
2042
2043 # stylesheets
2044 'Common.css' => '/** CSS placed here will be applied to all skins */',
2045 'Monobook.css' => '/* CSS placed here will affect users of the Monobook skin */',
2046
2047 # Metadata
2048 'nodublincore' => 'Dublin Core RDF metadata disabled for this server.',
2049 'nocreativecommons' => 'Creative Commons RDF metadata disabled for this server.',
2050 'notacceptable' => 'The wiki server can\'t provide data in a format your client can read.',
2051
2052 # Attribution
2053
2054 'anonymous' => 'Anonymous user(s) of {{SITENAME}}',
2055 'siteuser' => '{{SITENAME}} user $1',
2056 'lastmodifiedatby' => 'This page was last modified $2, $1 by $3.', // $1 date, $2 time. $3 user
2057 'and' => 'and',
2058 'othercontribs' => 'Based on work by $1.',
2059 'others' => 'others',
2060 'siteusers' => '{{SITENAME}} user(s) $1',
2061 'creditspage' => 'Page credits',
2062 'nocredits' => 'There is no credits info available for this page.',
2063
2064 # Spam protection
2065
2066 'spamprotectiontitle' => 'Spam protection filter',
2067 'spamprotectiontext' => 'The page you wanted to save was blocked by the spam filter. This is probably caused by a link to an external site.',
2068 'spamprotectionmatch' => 'The following text is what triggered our spam filter: $1',
2069 'subcategorycount' => "There {{PLURAL:$1|is one subcategory|are $1 subcategories}} to this category.",
2070 'categoryarticlecount' => "There {{PLURAL:$1|is one article|are $1 articles}} in this category.",
2071 'category-media-count' => "There {{PLURAL:$1|is one file|are $1 files}} in this category.",
2072 'listingcontinuesabbrev' => " cont.",
2073 'spambot_username' => 'MediaWiki spam cleanup',
2074 'spam_reverting' => 'Reverting to last version not containing links to $1',
2075 'spam_blanking' => 'All revisions contained links to $1, blanking',
2076
2077 # Info page
2078 'infosubtitle' => 'Information for page',
2079 'numedits' => 'Number of edits (article): $1',
2080 'numtalkedits' => 'Number of edits (discussion page): $1',
2081 'numwatchers' => 'Number of watchers: $1',
2082 'numauthors' => 'Number of distinct authors (article): $1',
2083 'numtalkauthors' => 'Number of distinct authors (discussion page): $1',
2084
2085 # Math options
2086 'mw_math_png' => 'Always render PNG',
2087 'mw_math_simple' => 'HTML if very simple or else PNG',
2088 'mw_math_html' => 'HTML if possible or else PNG',
2089 'mw_math_source' => 'Leave it as TeX (for text browsers)',
2090 'mw_math_modern' => 'Recommended for modern browsers',
2091 'mw_math_mathml' => 'MathML if possible (experimental)',
2092
2093 # Patrolling
2094 'markaspatrolleddiff' => "Mark as patrolled",
2095 'markaspatrolledlink' => "[$1]",
2096 'markaspatrolledtext' => "Mark this article as patrolled",
2097 'markedaspatrolled' => "Marked as patrolled",
2098 'markedaspatrolledtext' => "The selected revision has been marked as patrolled.",
2099 'rcpatroldisabled' => "Recent Changes Patrol disabled",
2100 'rcpatroldisabledtext' => "The Recent Changes Patrol feature is currently disabled.",
2101 'markedaspatrollederror' => "Cannot mark as patrolled",
2102 'markedaspatrollederrortext' => "You need to specify a revision to mark as patrolled.",
2103
2104 # Monobook.js: tooltips and access keys for monobook
2105 'Monobook.js' => '/* tooltips and access keys */
2106 var ta = new Object();
2107 ta[\'pt-userpage\'] = new Array(\'.\',\'My user page\');
2108 ta[\'pt-anonuserpage\'] = new Array(\'.\',\'The user page for the ip you\\\'re editing as\');
2109 ta[\'pt-mytalk\'] = new Array(\'n\',\'My talk page\');
2110 ta[\'pt-anontalk\'] = new Array(\'n\',\'Discussion about edits from this ip address\');
2111 ta[\'pt-preferences\'] = new Array(\'\',\'My preferences\');
2112 ta[\'pt-watchlist\'] = new Array(\'l\',\'The list of pages you\\\'re monitoring for changes.\');
2113 ta[\'pt-mycontris\'] = new Array(\'y\',\'List of my contributions\');
2114 ta[\'pt-login\'] = new Array(\'o\',\'You are encouraged to log in, it is not mandatory however.\');
2115 ta[\'pt-anonlogin\'] = new Array(\'o\',\'You are encouraged to log in, it is not mandatory however.\');
2116 ta[\'pt-logout\'] = new Array(\'o\',\'Log out\');
2117 ta[\'ca-talk\'] = new Array(\'t\',\'Discussion about the content page\');
2118 ta[\'ca-edit\'] = new Array(\'e\',\'You can edit this page. Please use the preview button before saving.\');
2119 ta[\'ca-addsection\'] = new Array(\'+\',\'Add a comment to this discussion.\');
2120 ta[\'ca-viewsource\'] = new Array(\'e\',\'This page is protected. You can view its source.\');
2121 ta[\'ca-history\'] = new Array(\'h\',\'Past versions of this page.\');
2122 ta[\'ca-protect\'] = new Array(\'=\',\'Protect this page\');
2123 ta[\'ca-delete\'] = new Array(\'d\',\'Delete this page\');
2124 ta[\'ca-undelete\'] = new Array(\'d\',\'Restore the edits done to this page before it was deleted\');
2125 ta[\'ca-move\'] = new Array(\'m\',\'Move this page\');
2126 ta[\'ca-watch\'] = new Array(\'w\',\'Add this page to your watchlist\');
2127 ta[\'ca-unwatch\'] = new Array(\'w\',\'Remove this page from your watchlist\');
2128 ta[\'search\'] = new Array(\'f\',\'Search this wiki\');
2129 ta[\'p-logo\'] = new Array(\'\',\'Main Page\');
2130 ta[\'n-mainpage\'] = new Array(\'z\',\'Visit the Main Page\');
2131 ta[\'n-portal\'] = new Array(\'\',\'About the project, what you can do, where to find things\');
2132 ta[\'n-currentevents\'] = new Array(\'\',\'Find background information on current events\');
2133 ta[\'n-recentchanges\'] = new Array(\'r\',\'The list of recent changes in the wiki.\');
2134 ta[\'n-randompage\'] = new Array(\'x\',\'Load a random page\');
2135 ta[\'n-help\'] = new Array(\'\',\'The place to find out.\');
2136 ta[\'n-sitesupport\'] = new Array(\'\',\'Support us\');
2137 ta[\'t-whatlinkshere\'] = new Array(\'j\',\'List of all wiki pages that link here\');
2138 ta[\'t-recentchangeslinked\'] = new Array(\'k\',\'Recent changes in pages linked from this page\');
2139 ta[\'feed-rss\'] = new Array(\'\',\'RSS feed for this page\');
2140 ta[\'feed-atom\'] = new Array(\'\',\'Atom feed for this page\');
2141 ta[\'t-contributions\'] = new Array(\'\',\'View the list of contributions of this user\');
2142 ta[\'t-emailuser\'] = new Array(\'\',\'Send a mail to this user\');
2143 ta[\'t-upload\'] = new Array(\'u\',\'Upload images or media files\');
2144 ta[\'t-specialpages\'] = new Array(\'q\',\'List of all special pages\');
2145 ta[\'ca-nstab-main\'] = new Array(\'c\',\'View the content page\');
2146 ta[\'ca-nstab-user\'] = new Array(\'c\',\'View the user page\');
2147 ta[\'ca-nstab-media\'] = new Array(\'c\',\'View the media page\');
2148 ta[\'ca-nstab-special\'] = new Array(\'\',\'This is a special page, you can\\\'t edit the page itself.\');
2149 ta[\'ca-nstab-project\'] = new Array(\'a\',\'View the project page\');
2150 ta[\'ca-nstab-image\'] = new Array(\'c\',\'View the image page\');
2151 ta[\'ca-nstab-mediawiki\'] = new Array(\'c\',\'View the system message\');
2152 ta[\'ca-nstab-template\'] = new Array(\'c\',\'View the template\');
2153 ta[\'ca-nstab-help\'] = new Array(\'c\',\'View the help page\');
2154 ta[\'ca-nstab-category\'] = new Array(\'c\',\'View the category page\');',
2155
2156 # Common.js: contains nothing but a placeholder comment
2157 'Common.js' => '/* Any JavaScript here will be loaded for all users on every page load. */',
2158
2159 # image deletion
2160 'deletedrevision' => 'Deleted old revision $1.',
2161
2162 # browsing diffs
2163 'previousdiff' => '← Previous diff',
2164 'nextdiff' => 'Next diff →',
2165
2166 'imagemaxsize' => 'Limit images on image description pages to:',
2167 'thumbsize' => 'Thumbnail size:',
2168 'showbigimage' => 'Download high resolution version ($1x$2, $3 KB)',
2169
2170 'newimages' => 'Gallery of new files',
2171 'newimages-summary' => '',
2172 'showhidebots' => '($1 bots)',
2173 'noimages' => 'Nothing to see.',
2174
2175 # short names for language variants used for language conversion links.
2176 # to disable showing a particular link, set it to 'disable', e.g.
2177 # 'variantname-zh-sg' => 'disable',
2178 'variantname-zh-cn' => 'cn',
2179 'variantname-zh-tw' => 'tw',
2180 'variantname-zh-hk' => 'hk',
2181 'variantname-zh-sg' => 'sg',
2182 'variantname-zh' => 'zh',
2183 # variants for Serbian language
2184 'variantname-sr-ec' => 'sr-ec',
2185 'variantname-sr-el' => 'sr-el',
2186 'variantname-sr-jc' => 'sr-jc',
2187 'variantname-sr-jl' => 'sr-jl',
2188 'variantname-sr' => 'sr',
2189 # variants for Kazakh language
2190 'variantname-kk-tr' => 'kk-tr',
2191 'variantname-kk-kz' => 'kk-kz',
2192 'variantname-kk-cn' => 'kk-cn',
2193 'variantname-kk' => 'kk',
2194
2195 # labels for User: and Title: on Special:Log pages
2196 'specialloguserlabel' => 'User:',
2197 'speciallogtitlelabel' => 'Title:',
2198
2199 'passwordtooshort' => 'Your password is too short. It must have at least $1 characters.',
2200
2201 # Media Warning
2202 'mediawarning' => '\'\'\'Warning\'\'\': This file may contain malicious code, by executing it your system may be compromised.<hr />',
2203
2204 'fileinfo' => '$1KB, MIME type: <code>$2</code>',
2205
2206 # Metadata
2207 'metadata' => 'Metadata',
2208 '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.',
2209 'metadata-expand' => 'Show extended details',
2210 'metadata-collapse' => 'Hide extended details',
2211 'metadata-fields' => 'EXIF metadata fields listed in this message will
2212 be included on image page display when the metadata table
2213 is collapsed. Others will be hidden by default.
2214 * make
2215 * model
2216 * datetimeoriginal
2217 * exposuretime
2218 * fnumber
2219 * focallength',
2220
2221 # Exif tags
2222 'exif-imagewidth' =>'Width',
2223 'exif-imagelength' =>'Height',
2224 'exif-bitspersample' =>'Bits per component',
2225 'exif-compression' =>'Compression scheme',
2226 'exif-photometricinterpretation' =>'Pixel composition',
2227 'exif-orientation' =>'Orientation',
2228 'exif-samplesperpixel' =>'Number of components',
2229 'exif-planarconfiguration' =>'Data arrangement',
2230 'exif-ycbcrsubsampling' =>'Subsampling ratio of Y to C',
2231 'exif-ycbcrpositioning' =>'Y and C positioning',
2232 'exif-xresolution' =>'Horizontal resolution',
2233 'exif-yresolution' =>'Vertical resolution',
2234 'exif-resolutionunit' =>'Unit of X and Y resolution',
2235 'exif-stripoffsets' =>'Image data location',
2236 'exif-rowsperstrip' =>'Number of rows per strip',
2237 'exif-stripbytecounts' =>'Bytes per compressed strip',
2238 'exif-jpeginterchangeformat' =>'Offset to JPEG SOI',
2239 'exif-jpeginterchangeformatlength' =>'Bytes of JPEG data',
2240 'exif-transferfunction' =>'Transfer function',
2241 'exif-whitepoint' =>'White point chromaticity',
2242 'exif-primarychromaticities' =>'Chromaticities of primarities',
2243 'exif-ycbcrcoefficients' =>'Color space transformation matrix coefficients',
2244 'exif-referenceblackwhite' =>'Pair of black and white reference values',
2245 'exif-datetime' =>'File change date and time',
2246 'exif-imagedescription' =>'Image title',
2247 'exif-make' =>'Camera manufacturer',
2248 'exif-model' =>'Camera model',
2249 'exif-software' =>'Software used',
2250 'exif-artist' =>'Author',
2251 'exif-copyright' =>'Copyright holder',
2252 'exif-exifversion' =>'Exif version',
2253 'exif-flashpixversion' =>'Supported Flashpix version',
2254 'exif-colorspace' =>'Color space',
2255 'exif-componentsconfiguration' =>'Meaning of each component',
2256 'exif-compressedbitsperpixel' =>'Image compression mode',
2257 'exif-pixelydimension' =>'Valid image width',
2258 'exif-pixelxdimension' =>'Valid image height',
2259 'exif-makernote' =>'Manufacturer notes',
2260 'exif-usercomment' =>'User comments',
2261 'exif-relatedsoundfile' =>'Related audio file',
2262 'exif-datetimeoriginal' =>'Date and time of data generation',
2263 'exif-datetimedigitized' =>'Date and time of digitizing',
2264 'exif-subsectime' =>'DateTime subseconds',
2265 'exif-subsectimeoriginal' =>'DateTimeOriginal subseconds',
2266 'exif-subsectimedigitized' =>'DateTimeDigitized subseconds',
2267 'exif-exposuretime' =>'Exposure time',
2268 'exif-exposuretime-format' => '$1 sec ($2)',
2269 'exif-fnumber' =>'F Number',
2270 'exif-fnumber-format' =>'f/$1',
2271 'exif-exposureprogram' =>'Exposure Program',
2272 'exif-spectralsensitivity' =>'Spectral sensitivity',
2273 'exif-isospeedratings' =>'ISO speed rating',
2274 'exif-oecf' =>'Optoelectronic conversion factor',
2275 'exif-shutterspeedvalue' =>'Shutter speed',
2276 'exif-aperturevalue' =>'Aperture',
2277 'exif-brightnessvalue' =>'Brightness',
2278 'exif-exposurebiasvalue' =>'Exposure bias',
2279 'exif-maxaperturevalue' =>'Maximum land aperture',
2280 'exif-subjectdistance' =>'Subject distance',
2281 'exif-meteringmode' =>'Metering mode',
2282 'exif-lightsource' =>'Light source',
2283 'exif-flash' =>'Flash',
2284 'exif-focallength' =>'Lens focal length',
2285 'exif-focallength-format' =>'$1 mm',
2286 'exif-subjectarea' =>'Subject area',
2287 'exif-flashenergy' =>'Flash energy',
2288 'exif-spatialfrequencyresponse' =>'Spatial frequency response',
2289 'exif-focalplanexresolution' =>'Focal plane X resolution',
2290 'exif-focalplaneyresolution' =>'Focal plane Y resolution',
2291 'exif-focalplaneresolutionunit' =>'Focal plane resolution unit',
2292 'exif-subjectlocation' =>'Subject location',
2293 'exif-exposureindex' =>'Exposure index',
2294 'exif-sensingmethod' =>'Sensing method',
2295 'exif-filesource' =>'File source',
2296 'exif-scenetype' =>'Scene type',
2297 'exif-cfapattern' =>'CFA pattern',
2298 'exif-customrendered' =>'Custom image processing',
2299 'exif-exposuremode' =>'Exposure mode',
2300 'exif-whitebalance' =>'White Balance',
2301 'exif-digitalzoomratio' =>'Digital zoom ratio',
2302 'exif-focallengthin35mmfilm' =>'Focal length in 35 mm film',
2303 'exif-scenecapturetype' =>'Scene capture type',
2304 'exif-gaincontrol' =>'Scene control',
2305 'exif-contrast' =>'Contrast',
2306 'exif-saturation' =>'Saturation',
2307 'exif-sharpness' =>'Sharpness',
2308 'exif-devicesettingdescription' =>'Device settings description',
2309 'exif-subjectdistancerange' =>'Subject distance range',
2310 'exif-imageuniqueid' =>'Unique image ID',
2311 'exif-gpsversionid' =>'GPS tag version',
2312 'exif-gpslatituderef' =>'North or South Latitude',
2313 'exif-gpslatitude' =>'Latitude',
2314 'exif-gpslongituderef' =>'East or West Longitude',
2315 'exif-gpslongitude' =>'Longitude',
2316 'exif-gpsaltituderef' =>'Altitude reference',
2317 'exif-gpsaltitude' =>'Altitude',
2318 'exif-gpstimestamp' =>'GPS time (atomic clock)',
2319 'exif-gpssatellites' =>'Satellites used for measurement',
2320 'exif-gpsstatus' =>'Receiver status',
2321 'exif-gpsmeasuremode' =>'Measurement mode',
2322 'exif-gpsdop' =>'Measurement precision',
2323 'exif-gpsspeedref' =>'Speed unit',
2324 'exif-gpsspeed' =>'Speed of GPS receiver',
2325 'exif-gpstrackref' =>'Reference for direction of movement',
2326 'exif-gpstrack' =>'Direction of movement',
2327 'exif-gpsimgdirectionref' =>'Reference for direction of image',
2328 'exif-gpsimgdirection' =>'Direction of image',
2329 'exif-gpsmapdatum' =>'Geodetic survey data used',
2330 'exif-gpsdestlatituderef' =>'Reference for latitude of destination',
2331 'exif-gpsdestlatitude' =>'Latitude destination',
2332 'exif-gpsdestlongituderef' =>'Reference for longitude of destination',
2333 'exif-gpsdestlongitude' =>'Longitude of destination',
2334 'exif-gpsdestbearingref' =>'Reference for bearing of destination',
2335 'exif-gpsdestbearing' =>'Bearing of destination',
2336 'exif-gpsdestdistanceref' =>'Reference for distance to destination',
2337 'exif-gpsdestdistance' =>'Distance to destination',
2338 'exif-gpsprocessingmethod' =>'Name of GPS processing method',
2339 'exif-gpsareainformation' =>'Name of GPS area',
2340 'exif-gpsdatestamp' =>'GPS date',
2341 'exif-gpsdifferential' =>'GPS differential correction',
2342
2343 # Make & model, can be wikified in order to link to the camera and model name
2344
2345 'exif-make-value' => '$1',
2346 'exif-model-value' =>'$1',
2347 'exif-software-value' => '$1',
2348
2349 # Exif attributes
2350
2351 'exif-compression-1' => 'Uncompressed',
2352 'exif-compression-6' => 'JPEG',
2353
2354 'exif-photometricinterpretation-2' => 'RGB',
2355 'exif-photometricinterpretation-6' => 'YCbCr',
2356
2357 'exif-orientation-1' => 'Normal', // 0th row: top; 0th column: left
2358 'exif-orientation-2' => 'Flipped horizontally', // 0th row: top; 0th column: right
2359 'exif-orientation-3' => 'Rotated 180°', // 0th row: bottom; 0th column: right
2360 'exif-orientation-4' => 'Flipped vertically', // 0th row: bottom; 0th column: left
2361 'exif-orientation-5' => 'Rotated 90° CCW and flipped vertically', // 0th row: left; 0th column: top
2362 'exif-orientation-6' => 'Rotated 90° CW', // 0th row: right; 0th column: top
2363 'exif-orientation-7' => 'Rotated 90° CW and flipped vertically', // 0th row: right; 0th column: bottom
2364 'exif-orientation-8' => 'Rotated 90° CCW', // 0th row: left; 0th column: bottom
2365
2366 'exif-planarconfiguration-1' => 'chunky format',
2367 'exif-planarconfiguration-2' => 'planar format',
2368
2369 'exif-xyresolution-i' => '$1 dpi',
2370 'exif-xyresolution-c' => '$1 dpc',
2371
2372 'exif-colorspace-1' => 'sRGB',
2373 'exif-colorspace-ffff.h' => 'FFFF.H',
2374
2375 'exif-componentsconfiguration-0' => 'does not exist',
2376 'exif-componentsconfiguration-1' => 'Y',
2377 'exif-componentsconfiguration-2' => 'Cb',
2378 'exif-componentsconfiguration-3' => 'Cr',
2379 'exif-componentsconfiguration-4' => 'R',
2380 'exif-componentsconfiguration-5' => 'G',
2381 'exif-componentsconfiguration-6' => 'B',
2382
2383 'exif-exposureprogram-0' => 'Not defined',
2384 'exif-exposureprogram-1' => 'Manual',
2385 'exif-exposureprogram-2' => 'Normal program',
2386 'exif-exposureprogram-3' => 'Aperture priority',
2387 'exif-exposureprogram-4' => 'Shutter priority',
2388 'exif-exposureprogram-5' => 'Creative program (biased toward depth of field)',
2389 'exif-exposureprogram-6' => 'Action program (biased toward fast shutter speed)',
2390 'exif-exposureprogram-7' => 'Portrait mode (for closeup photos with the background out of focus)',
2391 'exif-exposureprogram-8' => 'Landscape mode (for landscape photos with the background in focus)',
2392
2393 'exif-subjectdistance-value' => '$1 metres',
2394
2395 'exif-meteringmode-0' => 'Unknown',
2396 'exif-meteringmode-1' => 'Average',
2397 'exif-meteringmode-2' => 'CenterWeightedAverage',
2398 'exif-meteringmode-3' => 'Spot',
2399 'exif-meteringmode-4' => 'MultiSpot',
2400 'exif-meteringmode-5' => 'Pattern',
2401 'exif-meteringmode-6' => 'Partial',
2402 'exif-meteringmode-255' => 'Other',
2403
2404 'exif-lightsource-0' => 'Unknown',
2405 'exif-lightsource-1' => 'Daylight',
2406 'exif-lightsource-2' => 'Fluorescent',
2407 'exif-lightsource-3' => 'Tungsten (incandescent light)',
2408 'exif-lightsource-4' => 'Flash',
2409 'exif-lightsource-9' => 'Fine weather',
2410 'exif-lightsource-10' => 'Cloudy weather',
2411 'exif-lightsource-11' => 'Shade',
2412 'exif-lightsource-12' => 'Daylight fluorescent (D 5700 – 7100K)',
2413 'exif-lightsource-13' => 'Day white fluorescent (N 4600 – 5400K)',
2414 'exif-lightsource-14' => 'Cool white fluorescent (W 3900 – 4500K)',
2415 'exif-lightsource-15' => 'White fluorescent (WW 3200 – 3700K)',
2416 'exif-lightsource-17' => 'Standard light A',
2417 'exif-lightsource-18' => 'Standard light B',
2418 'exif-lightsource-19' => 'Standard light C',
2419 'exif-lightsource-20' => 'D55',
2420 'exif-lightsource-21' => 'D65',
2421 'exif-lightsource-22' => 'D75',
2422 'exif-lightsource-23' => 'D50',
2423 'exif-lightsource-24' => 'ISO studio tungsten',
2424 'exif-lightsource-255' => 'Other light source',
2425
2426 'exif-focalplaneresolutionunit-2' => 'inches',
2427
2428 'exif-sensingmethod-1' => 'Undefined',
2429 'exif-sensingmethod-2' => 'One-chip color area sensor',
2430 'exif-sensingmethod-3' => 'Two-chip color area sensor',
2431 'exif-sensingmethod-4' => 'Three-chip color area sensor',
2432 'exif-sensingmethod-5' => 'Color sequential area sensor',
2433 'exif-sensingmethod-7' => 'Trilinear sensor',
2434 'exif-sensingmethod-8' => 'Color sequential linear sensor',
2435
2436 'exif-filesource-3' => 'DSC',
2437
2438 'exif-scenetype-1' => 'A directly photographed image',
2439
2440 'exif-customrendered-0' => 'Normal process',
2441 'exif-customrendered-1' => 'Custom process',
2442
2443 'exif-exposuremode-0' => 'Auto exposure',
2444 'exif-exposuremode-1' => 'Manual exposure',
2445 'exif-exposuremode-2' => 'Auto bracket',
2446
2447 'exif-whitebalance-0' => 'Auto white balance',
2448 'exif-whitebalance-1' => 'Manual white balance',
2449
2450 'exif-scenecapturetype-0' => 'Standard',
2451 'exif-scenecapturetype-1' => 'Landscape',
2452 'exif-scenecapturetype-2' => 'Portrait',
2453 'exif-scenecapturetype-3' => 'Night scene',
2454
2455 'exif-gaincontrol-0' => 'None',
2456 'exif-gaincontrol-1' => 'Low gain up',
2457 'exif-gaincontrol-2' => 'High gain up',
2458 'exif-gaincontrol-3' => 'Low gain down',
2459 'exif-gaincontrol-4' => 'High gain down',
2460
2461 'exif-contrast-0' => 'Normal',
2462 'exif-contrast-1' => 'Soft',
2463 'exif-contrast-2' => 'Hard',
2464
2465 'exif-saturation-0' => 'Normal',
2466 'exif-saturation-1' => 'Low saturation',
2467 'exif-saturation-2' => 'High saturation',
2468
2469 'exif-sharpness-0' => 'Normal',
2470 'exif-sharpness-1' => 'Soft',
2471 'exif-sharpness-2' => 'Hard',
2472
2473 'exif-subjectdistancerange-0' => 'Unknown',
2474 'exif-subjectdistancerange-1' => 'Macro',
2475 'exif-subjectdistancerange-2' => 'Close view',
2476 'exif-subjectdistancerange-3' => 'Distant view',
2477
2478 // Pseudotags used for GPSLatitudeRef and GPSDestLatitudeRef
2479 'exif-gpslatitude-n' => 'North latitude',
2480 'exif-gpslatitude-s' => 'South latitude',
2481
2482 // Pseudotags used for GPSLongitudeRef and GPSDestLongitudeRef
2483 'exif-gpslongitude-e' => 'East longitude',
2484 'exif-gpslongitude-w' => 'West longitude',
2485
2486 'exif-gpsstatus-a' => 'Measurement in progress',
2487 'exif-gpsstatus-v' => 'Measurement interoperability',
2488
2489 'exif-gpsmeasuremode-2' => '2-dimensional measurement',
2490 'exif-gpsmeasuremode-3' => '3-dimensional measurement',
2491
2492 // Pseudotags used for GPSSpeedRef and GPSDestDistanceRef
2493 'exif-gpsspeed-k' => 'Kilometres per hour',
2494 'exif-gpsspeed-m' => 'Miles per hour',
2495 'exif-gpsspeed-n' => 'Knots',
2496
2497 // Pseudotags used for GPSTrackRef, GPSImgDirectionRef and GPSDestBearingRef
2498 'exif-gpsdirection-t' => 'True direction',
2499 'exif-gpsdirection-m' => 'Magnetic direction',
2500
2501 # external editor support
2502 'edit-externally' => 'Edit this file using an external application',
2503 'edit-externally-help' => 'See the [http://meta.wikimedia.org/wiki/Help:External_editors setup instructions] for more information.',
2504
2505 # 'all' in various places, this might be different for inflected languages
2506 'recentchangesall' => 'all',
2507 'imagelistall' => 'all',
2508 'watchlistall1' => 'all',
2509 'watchlistall2' => 'all',
2510 'namespacesall' => 'all',
2511
2512 # E-mail address confirmation
2513 'confirmemail' => 'Confirm E-mail address',
2514 'confirmemail_noemail' => 'You do not have a valid email address set in your [[Special:Preferences|user preferences]].',
2515 'confirmemail_text' => "This wiki requires that you validate your e-mail address
2516 before using e-mail features. Activate the button below to send a confirmation
2517 mail to your address. The mail will include a link containing a code; load the
2518 link in your browser to confirm that your e-mail address is valid.",
2519 'confirmemail_send' => 'Mail a confirmation code',
2520 'confirmemail_sent' => 'Confirmation e-mail sent.',
2521 'confirmemail_sendfailed' => 'Could not send confirmation mail. Check address for invalid characters.
2522
2523 Mailer returned: $1',
2524 'confirmemail_invalid' => 'Invalid confirmation code. The code may have expired.',
2525 'confirmemail_needlogin' => 'You need to $1 to confirm your email address.',
2526 'confirmemail_success' => 'Your e-mail address has been confirmed. You may now log in and enjoy the wiki.',
2527 'confirmemail_loggedin' => 'Your e-mail address has now been confirmed.',
2528 'confirmemail_error' => 'Something went wrong saving your confirmation.',
2529
2530 'confirmemail_subject' => '{{SITENAME}} e-mail address confirmation',
2531 'confirmemail_body' => "Someone, probably you from IP address $1, has registered an
2532 account \"$2\" with this e-mail address on {{SITENAME}}.
2533
2534 To confirm that this account really does belong to you and activate
2535 e-mail features on {{SITENAME}}, open this link in your browser:
2536
2537 $3
2538
2539 If this is *not* you, don't follow the link. This confirmation code
2540 will expire at $4.",
2541
2542 # Inputbox extension, may be useful in other contexts as well
2543 'tryexact' => 'Try exact match',
2544 'searchfulltext' => 'Search full text',
2545 'createarticle' => 'Create article',
2546
2547 # Scary transclusion
2548 'scarytranscludedisabled' => '[Interwiki transcluding is disabled]',
2549 'scarytranscludefailed' => '[Template fetch failed for $1; sorry]',
2550 'scarytranscludetoolong' => '[URL is too long; sorry]',
2551
2552 # Trackbacks
2553 'trackbackbox' => '<div id="mw_trackbacks">
2554 Trackbacks for this article:<br />
2555 $1
2556 </div>',
2557 'trackback' => '; $4$5 : [$2 $1]',
2558 'trackbackexcerpt' => '; $4$5 : [$2 $1]: <nowiki>$3</nowiki>',
2559 'trackbackremove' => ' ([$1 Delete])',
2560 'trackbacklink' => 'Trackback',
2561 'trackbackdeleteok' => 'The trackback was successfully deleted.',
2562
2563
2564 # delete conflict
2565
2566 'deletedwhileediting' => 'Warning: This page has been deleted after you started editing!',
2567 'confirmrecreate' => 'User [[User:$1|$1]] ([[User talk:$1|talk]]) deleted this page after you started editing with reason:
2568 : \'\'$2\'\'
2569 Please confirm that really want to recreate this page.',
2570 'recreate' => 'Recreate',
2571 'tooltip-recreate' => 'Recreate the page despite it has been deleted',
2572
2573 'unit-pixel' => 'px',
2574
2575 # HTML dump
2576 'redirectingto' => 'Redirecting to [[$1]]...',
2577
2578 # action=purge
2579 'confirm_purge' => "Clear the cache of this page?\n\n$1",
2580 'confirm_purge_button' => 'OK',
2581
2582 'youhavenewmessagesmulti' => "You have new messages on $1",
2583 'newtalkseperator' => ',_',
2584 'searchcontaining' => "Search for articles containing ''$1''.",
2585 'searchnamed' => "Search for articles named ''$1''.",
2586 'articletitles' => "Articles starting with ''$1''",
2587 'hideresults' => 'Hide results',
2588
2589 # DISPLAYTITLE
2590 'displaytitle' => '(Link to this page as [[$1]])',
2591
2592 # Separator for categories in page lists
2593 # Please don't localise this
2594 'catseparator' => '|',
2595
2596 'loginlanguagelabel' => 'Language: $1',
2597
2598 # Don't duplicate this in translations; defaults should remain consistent
2599 'loginlanguagelinks' => "* Deutsch|de
2600 * English|en
2601 * Esperanto|eo
2602 * Français|fr
2603 * Español|es
2604 * Italiano|it
2605 * Nederlands|nl",
2606
2607 # Multipage image navigation
2608 'imgmultipageprev' => '&larr; previous page',
2609 'imgmultipagenext' => 'next page &rarr;',
2610 'imgmultigo' => 'Go!',
2611 'imgmultigotopre' => 'Go to page',
2612 'imgmultigotopost' => '',
2613
2614 # Table pager
2615 'ascending_abbrev' => 'asc',
2616 'descending_abbrev' => 'desc',
2617 'table_pager_next' => 'Next page',
2618 'table_pager_prev' => 'Previous page',
2619 'table_pager_first' => 'First page',
2620 'table_pager_last' => 'Last page',
2621 'table_pager_limit' => 'Show $1 items per page',
2622 'table_pager_limit_submit' => 'Go',
2623 'table_pager_empty' => 'No results',
2624
2625 # Auto-summaries
2626 'autosumm-blank' => 'Removing all content from page',
2627 'autosumm-replace' => 'Replacing page with \'$1\'',
2628 'autoredircomment' => 'Redirecting to [[$1]]', # This should be changed to the new naming convention, but existed beforehand.
2629 'autosumm-new' => 'New page: $1',
2630
2631 # Autoblock whitelist
2632 'autoblock_whitelist' => 'AOL http://webmaster.info.aol.com/proxyinfo.html
2633 *64.12.96.0/19
2634 *149.174.160.0/20
2635 *152.163.240.0/21
2636 *152.163.248.0/22
2637 *152.163.252.0/23
2638 *152.163.96.0/22
2639 *152.163.100.0/23
2640 *195.93.32.0/22
2641 *195.93.48.0/22
2642 *195.93.64.0/19
2643 *195.93.96.0/19
2644 *195.93.16.0/20
2645 *198.81.0.0/22
2646 *198.81.16.0/20
2647 *198.81.8.0/23
2648 *202.67.64.128/25
2649 *205.188.192.0/20
2650 *205.188.208.0/23
2651 *205.188.112.0/20
2652 *205.188.146.144/30
2653 *207.200.112.0/21',
2654
2655 );
2656
2657 ?>