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