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