BUG#236 Log deletion of old image revisions.
[lhc/web/wiklou.git] / languages / Language.php
1 <?php
2 if( defined( 'MEDIAWIKI' ) ) {
3
4 #
5 # In general you should not make customizations in these language files
6 # directly, but should use the MediaWiki: special namespace to customize
7 # user interface messages through the wiki.
8 # See http://meta.wikipedia.org/wiki/MediaWiki_namespace
9 #
10 # NOTE TO TRANSLATORS: Do not copy this whole file when making translations!
11 # A lot of common constants and a base class with inheritable methods are
12 # defined here, which should not be redefined. See the other LanguageXx.php
13 # files for examples.
14 #
15
16 #--------------------------------------------------------------------------
17 # Language-specific text
18 #--------------------------------------------------------------------------
19
20 # The names of the namespaces can be set here, but the numbers
21 # are magical, so don't change or move them! The Namespace class
22 # encapsulates some of the magic-ness.
23 #
24
25 if($wgMetaNamespace === FALSE)
26 $wgMetaNamespace = str_replace( ' ', '_', $wgSitename );
27
28 /* private */ $wgNamespaceNamesEn = array(
29 NS_MEDIA => 'Media',
30 NS_SPECIAL => 'Special',
31 NS_MAIN => '',
32 NS_TALK => 'Talk',
33 NS_USER => 'User',
34 NS_USER_TALK => 'User_talk',
35 NS_WIKIPEDIA => $wgMetaNamespace,
36 NS_WIKIPEDIA_TALK => $wgMetaNamespace . '_talk',
37 NS_IMAGE => 'Image',
38 NS_IMAGE_TALK => 'Image_talk',
39 NS_MEDIAWIKI => 'MediaWiki',
40 NS_MEDIAWIKI_TALK => 'MediaWiki_talk',
41 NS_TEMPLATE => 'Template',
42 NS_TEMPLATE_TALK => 'Template_talk',
43 NS_HELP => 'Help',
44 NS_HELP_TALK => 'Help_talk',
45 NS_CATEGORY => 'Category',
46 NS_CATEGORY_TALK => 'Category_talk'
47 );
48
49 /* private */ $wgDefaultUserOptionsEn = array(
50 'quickbar' => 1, 'underline' => 1, 'hover' => 1,
51 'cols' => 80, 'rows' => 25, 'searchlimit' => 20,
52 'contextlines' => 5, 'contextchars' => 50,
53 'skin' => $wgDefaultSkin, 'math' => 1, 'rcdays' => 7, 'rclimit' => 50,
54 'highlightbroken' => 1, 'stubthreshold' => 0,
55 'previewontop' => 1, 'editsection'=>1,'editsectiononrightclick'=>0, 'showtoc'=>1,
56 'showtoolbar' =>1,
57 'date' => 0
58 );
59
60 /* private */ $wgQuickbarSettingsEn = array(
61 'None', 'Fixed left', 'Fixed right', 'Floating left'
62 );
63
64 /* private */ $wgSkinNamesEn = array(
65 'standard' => 'Classic',
66 'nostalgia' => 'Nostalgia',
67 'cologneblue' => 'Cologne Blue',
68 'davinci' => 'DaVinci',
69 'mono' => 'Mono',
70 'monobook' => 'MonoBook',
71 'myskin' => 'MySkin',
72 'chick' => 'Chick'
73 );
74
75 define( 'MW_MATH_PNG', 0 );
76 define( 'MW_MATH_SIMPLE', 1 );
77 define( 'MW_MATH_HTML', 2 );
78 define( 'MW_MATH_SOURCE', 3 );
79 define( 'MW_MATH_MODERN', 4 );
80 define( 'MW_MATH_MATHML', 5 );
81
82 # Validation types
83 $wgValidationTypesEn = array (
84 '0' => "Style|Awful|Awesome|5",
85 '1' => "Legal|Illegal|Legal|5",
86 '2' => "Completeness|Stub|Extensive|5",
87 '3' => "Facts|Wild guesses|Solid as a rock|5",
88 '4' => "Suitable for 1.0 (paper)|No|Yes|2",
89 '5' => "Suitable for 1.0 (CD)|No|Yes|2"
90 );
91
92 /* private */ $wgMathNamesEn = array(
93 MW_MATH_PNG => 'mw_math_png',
94 MW_MATH_SIMPLE => 'mw_math_simple',
95 MW_MATH_HTML => 'mw_math_html',
96 MW_MATH_SOURCE => 'mw_math_source',
97 MW_MATH_MODERN => 'mw_math_modern',
98 MW_MATH_MATHML => 'mw_math_mathml'
99 );
100
101 # Whether to use user or default setting in Language::date()
102 define( 'MW_DATE_DEFAULT', false );
103 define( 'MW_DATE_USER_FORMAT', true );
104
105 /* private */ $wgDateFormatsEn = array(
106 'No preference',
107 'January 15, 2001',
108 '15 January 2001',
109 '2001 January 15',
110 '2001-01-15'
111 );
112
113 /* private */ $wgUserTogglesEn = array(
114 'hover',
115 'underline',
116 'highlightbroken',
117 'justify',
118 'hideminor',
119 'usenewrc',
120 'numberheadings',
121 'showtoolbar',
122 'editondblclick',
123 'editsection',
124 'editsectiononrightclick',
125 'showtoc',
126 'rememberpassword',
127 'editwidth',
128 'watchdefault',
129 'minordefault',
130 'previewontop',
131 'nocache',
132 );
133
134 /* private */ $wgBookstoreListEn = array(
135 'AddALL' => 'http://www.addall.com/New/Partner.cgi?query=$1&type=ISBN',
136 'PriceSCAN' => 'http://www.pricescan.com/books/bookDetail.asp?isbn=$1',
137 'Barnes & Noble' => 'http://shop.barnesandnoble.com/bookSearch/isbnInquiry.asp?isbn=$1',
138 'Amazon.com' => 'http://www.amazon.com/exec/obidos/ISBN=$1'
139 );
140
141 # Read language names
142 global $wgLanguageNames;
143 require_once( 'Names.php' );
144
145 $wgLanguageNamesEn =& $wgLanguageNames;
146
147
148 /* private */ $wgWeekdayNamesEn = array(
149 'sunday', 'monday', 'tuesday', 'wednesday', 'thursday',
150 'friday', 'saturday'
151 );
152
153
154 /* private */ $wgMonthNamesEn = array(
155 'january', 'february', 'march', 'april', 'may_long', 'june',
156 'july', 'august', 'september', 'october', 'november',
157 'december'
158 );
159 /* private */ $wgMonthNamesGenEn = array(
160 'january-gen', 'february-gen', 'march-gen', 'april-gen', 'may-gen', 'june-gen',
161 'july-gen', 'august-gen', 'september-gen', 'october-gen', 'november-gen',
162 'december-gen'
163 );
164
165 /* private */ $wgMonthAbbreviationsEn = array(
166 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug',
167 'sep', 'oct', 'nov', 'dec'
168 );
169
170 # Note to translators:
171 # Please include the English words as synonyms. This allows people
172 # from other wikis to contribute more easily.
173 #
174 /* private */ $wgMagicWordsEn = array(
175 # ID CASE SYNONYMS
176 MAG_REDIRECT => array( 0, '#redirect' ),
177 MAG_NOTOC => array( 0, '__NOTOC__' ),
178 MAG_FORCETOC => array( 0, '__FORCETOC__' ),
179 MAG_TOC => array( 0, '__TOC__' ),
180 MAG_NOEDITSECTION => array( 0, '__NOEDITSECTION__' ),
181 MAG_START => array( 0, '__START__' ),
182 MAG_CURRENTMONTH => array( 1, 'CURRENTMONTH' ),
183 MAG_CURRENTMONTHNAME => array( 1, 'CURRENTMONTHNAME' ),
184 MAG_CURRENTDAY => array( 1, 'CURRENTDAY' ),
185 MAG_CURRENTDAYNAME => array( 1, 'CURRENTDAYNAME' ),
186 MAG_CURRENTYEAR => array( 1, 'CURRENTYEAR' ),
187 MAG_CURRENTTIME => array( 1, 'CURRENTTIME' ),
188 MAG_NUMBEROFARTICLES => array( 1, 'NUMBEROFARTICLES' ),
189 MAG_CURRENTMONTHNAMEGEN => array( 1, 'CURRENTMONTHNAMEGEN' ),
190 MAG_PAGENAME => array( 1, 'PAGENAME' ),
191 MAG_PAGENAMEE => array( 1, 'PAGENAMEE' ),
192 MAG_NAMESPACE => array( 1, 'NAMESPACE' ),
193 MAG_MSG => array( 0, 'MSG:' ),
194 MAG_SUBST => array( 0, 'SUBST:' ),
195 MAG_MSGNW => array( 0, 'MSGNW:' ),
196 MAG_END => array( 0, '__END__' ),
197 MAG_IMG_THUMBNAIL => array( 1, 'thumbnail', 'thumb' ),
198 MAG_IMG_RIGHT => array( 1, 'right' ),
199 MAG_IMG_LEFT => array( 1, 'left' ),
200 MAG_IMG_NONE => array( 1, 'none' ),
201 MAG_IMG_WIDTH => array( 1, '$1px' ),
202 MAG_IMG_CENTER => array( 1, 'center', 'centre' ),
203 MAG_IMG_FRAMED => array( 1, 'framed', 'enframed', 'frame' ),
204 MAG_INT => array( 0, 'INT:' ),
205 MAG_SITENAME => array( 1, 'SITENAME' ),
206 MAG_NS => array( 0, 'NS:' ),
207 MAG_LOCALURL => array( 0, 'LOCALURL:' ),
208 MAG_LOCALURLE => array( 0, 'LOCALURLE:' ),
209 MAG_SERVER => array( 0, 'SERVER' ),
210 MAG_GRAMMAR => array( 0, 'GRAMMAR:' )
211 );
212
213 #-------------------------------------------------------------------
214 # Default messages
215 #-------------------------------------------------------------------
216 # Allowed characters in keys are: A-Z, a-z, 0-9, underscore (_) and
217 # hyphen (-). If you need more characters, you may be able to change
218 # the regex in MagicWord::initRegex
219
220 # NOTE: To turn off "Current Events" in the sidebar,
221 # set "currentevents" => ""
222
223 # NOTE: To turn off "Disclaimers" in the title links,
224 # set "disclaimers" => ""
225
226 # NOTE: To turn off "Community portal" in the title links,
227 # set "portal" => ""
228
229
230 # required for copyrightwarning
231 global $wgRightsText;
232
233 /* private */ $wgAllMessagesEn = array(
234 'special_version_prefix' => '&nbsp;',
235 'special_version_postfix' => '&nbsp;',
236 # User preference toggles
237 'tog-hover' => 'Show hoverbox over wiki links',
238 'tog-underline' => 'Underline links',
239 'tog-highlightbroken' => 'Format broken links <a href="" class="new">like this</a> (alternative: like this<a href="" class="internal">?</a>).',
240 'tog-justify' => 'Justify paragraphs',
241 'tog-hideminor' => 'Hide minor edits in recent changes',
242 'tog-usenewrc' => 'Enhanced recent changes (not for all browsers)',
243 'tog-numberheadings' => 'Auto-number headings',
244 'tog-showtoolbar'=>'Show edit toolbar',
245 'tog-editondblclick' => 'Edit pages on double click (JavaScript)',
246 'tog-editsection'=>'Enable section editing via [edit] links',
247 'tog-editsectiononrightclick'=>'Enable section editing by right clicking<br /> on section titles (JavaScript)',
248 'tog-showtoc'=>'Show table of contents<br />(for pages with more than 3 headings)',
249 'tog-rememberpassword' => 'Remember password across sessions',
250 'tog-editwidth' => 'Edit box has full width',
251 'tog-watchdefault' => 'Add pages you edit to your watchlist',
252 'tog-minordefault' => 'Mark all edits minor by default',
253 'tog-previewontop' => 'Show preview before edit box and not after it',
254 'tog-nocache' => 'Disable page caching',
255
256 # dates
257 'sunday' => 'Sunday',
258 'monday' => 'Monday',
259 'tuesday' => 'Tuesday',
260 'wednesday' => 'Wednesday',
261 'thursday' => 'Thursday',
262 'friday' => 'Friday',
263 'saturday' => 'Saturday',
264 'january' => 'January',
265 'february' => 'February',
266 'march' => 'March',
267 'april' => 'April',
268 'may_long' => 'May',
269 'june' => 'June',
270 'july' => 'July',
271 'august' => 'August',
272 'september' => 'September',
273 'october' => 'October',
274 'november' => 'November',
275 'december' => 'December',
276 'jan' => 'Jan',
277 'feb' => 'Feb',
278 'mar' => 'Mar',
279 'apr' => 'Apr',
280 'may' => 'May',
281 'jun' => 'Jun',
282 'jul' => 'Jul',
283 'aug' => 'Aug',
284 'sep' => 'Sep',
285 'oct' => 'Oct',
286 'nov' => 'Nov',
287 'dec' => 'Dec',
288 # Bits of text used by many pages:
289 #
290 'categories' => 'Categories',
291 'category' => 'category',
292 'category_header' => 'Articles in category "$1"',
293 'subcategories' => 'Subcategories',
294
295
296 'linktrail' => '/^([a-z]+)(.*)$/sD',
297 'mainpage' => 'Main Page',
298 'mainpagetext' => 'Wiki software successfully installed.',
299 "mainpagedocfooter" => "Please see [http://meta.wikipedia.org/wiki/MediaWiki_i18n documentation on customizing the interface]
300 and the [http://meta.wikipedia.org/wiki/MediaWiki_User%27s_Guide User's Guide] for usage and configuration help.",
301 'portal' => 'Community portal',
302 'portal-url' => '{{ns:4}}:Community Portal',
303 'about' => 'About',
304 "aboutwikipedia" => "About {{SITENAME}}",
305 "aboutpage" => "{{ns:4}}:About",
306 'article' => 'Content page',
307 'help' => 'Help',
308 "helppage" => "{{ns:12}}:Contents",
309 "wikititlesuffix" => "{{SITENAME}}",
310 "bugreports" => "Bug reports",
311 "bugreportspage" => "{{ns:4}}:Bug_reports",
312 'sitesupport' => 'Donations', # Set a URL in $wgSiteSupportPage in LocalSettings.php
313 'faq' => 'FAQ',
314 "faqpage" => "{{ns:4}}:FAQ",
315 "edithelp" => "Editing help",
316 "newwindow" => "(opens in new window)",
317 "edithelppage" => "{{ns:12}}:Editing",
318 'cancel' => 'Cancel',
319 'qbfind' => 'Find',
320 'qbbrowse' => 'Browse',
321 'qbedit' => 'Edit',
322 'qbpageoptions' => 'This page',
323 'qbpageinfo' => 'Context',
324 'qbmyoptions' => 'My pages',
325 'qbspecialpages' => 'Special pages',
326 'moredotdotdot' => 'More...',
327 'mypage' => 'My page',
328 'mytalk' => 'My talk',
329 'anontalk' => 'Talk for this IP',
330 'navigation' => 'Navigation',
331 'currentevents' => 'Current events',
332 'disclaimers' => 'Disclaimers',
333 "disclaimerpage" => "{{ns:4}}:General_disclaimer",
334 "errorpagetitle" => "Error",
335 "returnto" => "Return to $1.",
336 "fromwikipedia" => "From {{SITENAME}}",
337 'whatlinkshere' => 'Pages that link here',
338 'help' => 'Help',
339 'search' => 'Search',
340 'go' => 'Go',
341 "history" => 'Page history',
342 'history_short' => 'History',
343 'info_short' => 'Information',
344 'printableversion' => 'Printable version',
345 'edit' => 'Edit',
346 'editthispage' => 'Edit this page',
347 'delete' => 'Delete',
348 "deletethispage" => "Delete this page",
349 "undelete_short" => "Undelete $1 edits",
350 'protect' => 'Protect',
351 'protectthispage' => 'Protect this page',
352 'unprotect' => 'Unprotect',
353 'unprotectthispage' => 'Unprotect this page',
354 'newpage' => 'New page',
355 'talkpage' => 'Discuss this page',
356 'specialpage' => 'Special Page',
357 'personaltools' => 'Personal tools',
358 'postcomment' => 'Post a comment',
359 'addsection' => '+',
360 'articlepage' => 'View content page',
361 'subjectpage' => 'View subject', # For compatibility
362 'talk' => 'Discussion',
363 'toolbox' => 'Toolbox',
364 'userpage' => 'View user page',
365 'wikipediapage' => 'View project page',
366 'imagepage' => 'View image page',
367 'viewtalkpage' => 'View discussion',
368 'otherlanguages' => 'Other languages',
369 'redirectedfrom' => '(Redirected from $1)',
370 'lastmodified' => 'This page was last modified $1.',
371 'viewcount' => 'This page has been accessed $1 times.',
372 'copyright' => 'Content is available under $1.',
373 'poweredby' => "{{SITENAME}} is powered by [http://www.mediawiki.org/ MediaWiki], an open source wiki engine.",
374 'printsubtitle' => "(From {{SERVER}})",
375 'protectedpage' => 'Protected page',
376 'administrators' => "{{ns:4}}:Administrators",
377 'sysoptitle' => 'Sysop access required',
378 'sysoptext' => "The action you have requested can only be
379 performed by users with \"sysop\" status.
380 See $1.",
381 'developertitle' => 'Developer access required',
382 "developertext" => "The action you have requested can only be
383 performed by users with \"developer\" status.
384 See $1.",
385 'bureaucrattitle' => 'Bureaucrat access required',
386 "bureaucrattext" => "The action you have requested can only be
387 performed by sysops with \"bureaucrat\" status.",
388 'nbytes' => '$1 bytes',
389 'go' => 'Go',
390 'ok' => 'OK',
391 'sitetitle' => "{{SITENAME}}",
392 'pagetitle' => "$1 - {{SITENAME}}",
393 'sitesubtitle' => 'The Free Encyclopedia', # FIXME
394 'retrievedfrom' => "Retrieved from \"$1\"",
395 'newmessages' => "You have $1.",
396 'newmessageslink' => 'new messages',
397 'editsection'=>'edit',
398 'toc' => 'Table of contents',
399 'showtoc' => 'show',
400 'hidetoc' => 'hide',
401 'thisisdeleted' => "View or restore $1?",
402 'restorelink' => "$1 deleted edits",
403 'feedlinks' => 'Feed:',
404 'sitenotice' => '', # the equivalent to wgSiteNotice
405
406 # Short words for each namespace, by default used in the 'article' tab in monobook
407 'nstab-main' => 'Article',
408 'nstab-user' => 'User page',
409 'nstab-media' => 'Media',
410 'nstab-special' => 'Special',
411 'nstab-wp' => 'About',
412 'nstab-image' => 'Image',
413 'nstab-mediawiki' => 'Message',
414 'nstab-template' => 'Template',
415 'nstab-help' => 'Help',
416 'nstab-category' => 'Category',
417
418 # Main script and global functions
419 #
420 'nosuchaction' => 'No such action',
421 'nosuchactiontext' => 'The action specified by the URL is not
422 recognized by the wiki',
423 'nosuchspecialpage' => 'No such special page',
424 'nospecialpagetext' => 'You have requested a special page that is not
425 recognized by the wiki.',
426
427 # General errors
428 #
429 'error' => 'Error',
430 'databaseerror' => 'Database error',
431 'dberrortext' => "A database query syntax error has occurred.
432 This may indicate a bug in the software.
433 The last attempted database query was:
434 <blockquote><tt>$1</tt></blockquote>
435 from within function \"<tt>$2</tt>\".
436 MySQL returned error \"<tt>$3: $4</tt>\".",
437 'dberrortextcl' => "A database query syntax error has occurred.
438 The last attempted database query was:
439 \"$1\"
440 from within function \"$2\".
441 MySQL returned error \"$3: $4\".\n",
442 'noconnect' => 'Sorry! The wiki is experiencing some technical difficulties, and cannot contact the database server. <br />
443 $1',
444 'nodb' => "Could not select database $1",
445 'cachederror' => 'The following is a cached copy of the requested page, and may not be up to date.',
446 'readonly' => 'Database locked',
447 'enterlockreason' => 'Enter a reason for the lock, including an estimate
448 of when the lock will be released',
449 'readonlytext' => "The database is currently locked to new
450 entries and other modifications, probably for routine database maintenance,
451 after which it will be back to normal.
452 The administrator who locked it offered this explanation:
453 <p>$1",
454 'missingarticle' => "The database did not find the text of a page
455 that it should have found, named \"$1\".
456
457 <p>This is usually caused by following an outdated diff or history link to a
458 page that has been deleted.
459
460 <p>If this is not the case, you may have found a bug in the software.
461 Please report this to an administrator, making note of the URL.",
462 'internalerror' => 'Internal error',
463 'filecopyerror' => "Could not copy file \"$1\" to \"$2\".",
464 'filerenameerror' => "Could not rename file \"$1\" to \"$2\".",
465 'filedeleteerror' => "Could not delete file \"$1\".",
466 'filenotfound' => "Could not find file \"$1\".",
467 'unexpected' => "Unexpected value: \"$1\"=\"$2\".",
468 'formerror' => 'Error: could not submit form',
469 'badarticleerror' => 'This action cannot be performed on this page.',
470 'cannotdelete' => 'Could not delete the page or image specified. (It may have already been deleted by someone else.)',
471 'badtitle' => 'Bad title',
472 'badtitletext' => "The requested page title was invalid, empty, or
473 an incorrectly linked inter-language or inter-wiki title.",
474 'perfdisabled' => 'Sorry! This feature has been temporarily disabled
475 because it slows the database down to the point that no one can use
476 the wiki.',
477 'perfdisabledsub' => "Here's a saved copy from $1:", # obsolete?
478 'perfcached' => 'The following data is cached and may not be completely up to date:',
479 'wrong_wfQuery_params' => "Incorrect parameters to wfQuery()<br />
480 Function: $1<br />
481 Query: $2
482 ",
483 'viewsource' => 'View source',
484 'protectedtext' => "This page has been locked to prevent editing; there are
485 a number of reasons why this may be so, please see
486 [[{{ns:4}}:Protected page]].
487
488 You can view and copy the source of this page:",
489 'seriousxhtmlerrors' => 'There were serious xhtml markup errors detected by tidy.',
490
491 # Login and logout pages
492 #
493 "logouttitle" => 'User logout',
494 "logouttext" => "You are now logged out.
495 You can continue to use {{SITENAME}} anonymously, or you can log in
496 again as the same or as a different user. Note that some pages may
497 continue to be displayed as if you were still logged in, until you clear
498 your browser cache\n",
499
500 'welcomecreation' => "== Welcome, $1! ==
501
502 Your account has been created. Don't forget to change your {{SITENAME}} preferences.",
503
504 'loginpagetitle' => 'User login',
505 'yourname' => 'Your user name',
506 'yourpassword' => 'Your password',
507 'yourpasswordagain' => 'Retype password',
508 'newusersonly' => ' (new users only)',
509 'remembermypassword' => 'Remember my password across sessions.',
510 'loginproblem' => '<b>There has been a problem with your login.</b><br />Try again!',
511 'alreadyloggedin' => "<font color=red><b>User $1, you are already logged in!</b></font><br />\n",
512
513 'login' => 'Log in',
514 'loginprompt' => "You must have cookies enabled to log in to {{SITENAME}}.",
515 'userlogin' => 'Create an account or log in',
516 'logout' => 'Log out',
517 'userlogout' => 'Log out',
518 'notloggedin' => 'Not logged in',
519 'createaccount' => 'Create new account',
520 'createaccountmail' => 'by email',
521 'badretype' => 'The passwords you entered do not match.',
522 'userexists' => 'The user name you entered is already in use. Please choose a different name.',
523 'youremail' => 'Your email*',
524 'yourrealname' => 'Your real name*',
525 'yournick' => 'Your nickname (for signatures)',
526 'emailforlost' => "Fields marked with a star (*) are optional. Storing an email address enables people to contact you through the website without you having to reveal your
527 email address to them, and it can be used to send you a new password if you forget it.<br /><br />Your real name, if you choose to provide it, will be used for giving you attribution for your work.",
528 'prefs-help-userdata' => '* <strong>Real name</strong> (optional): if you choose to provide it this will be used for giving you attribution for your work.<br/>
529 * <strong>Email</strong> (optional): Enables people to contact you through the website without you having to reveal your
530 email address to them, and it can be used to send you a new password if you forget it.',
531 'loginerror' => 'Login error',
532 '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.",
533 "nocookieslogin" => "{{SITENAME}} uses cookies to log in users. You have cookies disabled. Please enable them and try again.",
534 'noname' => 'You have not specified a valid user name.',
535 'loginsuccesstitle' => 'Login successful',
536 'loginsuccess' => "You are now logged in to {{SITENAME}} as \"$1\".",
537 'nosuchuser' => "There is no user by the name \"$1\".
538 Check your spelling, or use the form below to create a new user account.",
539 'wrongpassword' => 'The password you entered is incorrect. Please try again.',
540 'mailmypassword' => 'Mail me a new password',
541 'passwordremindertitle' => "Password reminder from {{SITENAME}}",
542 'passwordremindertext' => "Someone (probably you, from IP address $1)
543 requested that we send you a new {{SITENAME}} login password.
544 The password for user \"$2\" is now \"$3\".
545 You should log in and change your password now.",
546 'noemail' => "There is no e-mail address recorded for user \"$1\".",
547 'passwordsent' => "A new password has been sent to the e-mail address
548 registered for \"$1\".
549 Please log in again after you receive it.",
550 'loginend' => '&nbsp;',
551 'mailerror' => "Error sending mail: $1",
552 'acct_creation_throttle_hit' => 'Sorry, you have already created $1 accounts. You can\'t make any more.',
553
554 # Edit page toolbar
555 'bold_sample'=>'Bold text',
556 'bold_tip'=>'Bold text',
557 'italic_sample'=>'Italic text',
558 'italic_tip'=>'Italic text',
559 'link_sample'=>'Link title',
560 'link_tip'=>'Internal link',
561 'extlink_sample'=>'http://www.example.com link title',
562 'extlink_tip'=>'External link (remember http:// prefix)',
563 'headline_sample'=>'Headline text',
564 'headline_tip'=>'Level 2 headline',
565 'math_sample'=>'Insert formula here',
566 'math_tip'=>'Mathematical formula (LaTeX)',
567 'nowiki_sample'=>'Insert non-formatted text here',
568 'nowiki_tip'=>'Ignore wiki formatting',
569 'image_sample'=>'Example.jpg',
570 'image_tip'=>'Embedded image',
571 'media_sample'=>'Example.mp3',
572 'media_tip'=>'Media file link',
573 'sig_tip'=>'Your signature with timestamp',
574 'hr_tip'=>'Horizontal line (use sparingly)',
575 'infobox'=>'Click a button to get an example text',
576 # alert box shown in browsers where text selection does not work, test e.g. with mozilla or konqueror
577 'infobox_alert'=>"Please enter the text you want to be formatted.\\n It will be shown in the infobox for copy and pasting.\\nExample:\\n$1\\nwill become:\\n$2",
578
579 # Edit pages
580 #
581 'summary' => 'Summary',
582 'subject' => 'Subject/headline',
583 'minoredit' => 'This is a minor edit',
584 'watchthis' => 'Watch this page',
585 'savearticle' => 'Save page',
586 'preview' => 'Preview',
587 'showpreview' => 'Show preview',
588 'blockedtitle' => 'User is blocked',
589 'blockedtext' => "Your user name or IP address has been blocked by $1.
590 The reason given is this:<br />''$2''<p>You may contact $1 or one of the other
591 [[{{ns:4}}:Administrators|administrators]] to discuss the block.
592
593 Note that you may not use the \"email this user\" feature unless you have a valid email address registered in your [[Special:Preferences|user preferences]].
594
595 Your IP address is $3. Please include this address in any queries you make.
596 ",
597 'whitelistedittitle' => 'Login required to edit',
598 'whitelistedittext' => 'You have to [[Special:Userlogin|login]] to edit pages.',
599 'whitelistreadtitle' => 'Login required to read',
600 'whitelistreadtext' => 'You have to [[Special:Userlogin|login]] to read pages.',
601 'whitelistacctitle' => 'You are not allowed to create an account',
602 'whitelistacctext' => 'To be allowed to create accounts in this Wiki you have to [[Special:Userlogin|log]] in and have the appropriate permissions.',
603 'loginreqtitle' => 'Login Required',
604 'loginreqtext' => 'You must [[special:Userlogin|login]] to view other pages.',
605 'accmailtitle' => 'Password sent.',
606 'accmailtext' => "The Password for '$1' has been sent to $2.",
607 'newarticle' => '(New)',
608 'newarticletext' =>
609 "You've followed a link to a page that doesn't exist yet.
610 To create the page, start typing in the box below
611 (see the [[{{ns:4}}:Help|help page]] for more info).
612 If you are here by mistake, just click your browser's '''back''' button.",
613 'talkpagetext' => '<!-- MediaWiki:talkpagetext -->',
614 '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.'' ",
615 'noarticletext' => '(There is currently no text in this page)',
616 'clearyourcache' => "'''Note:''' After saving, you have to clear your browser cache to see the changes: '''Mozilla:''' click ''Reload'' (or ''Ctrl-R''), '''IE / Opera:''' ''Ctrl-F5'', '''Safari:''' ''Cmd-R'', '''Konqueror''' ''Ctrl-R''.",
617 'usercssjsyoucanpreview' => "<strong>Tip:</strong> Use the 'Show preview' button to test your new CSS/JS before saving.",
618 'usercsspreview' => "'''Remember that you are only previewing your user CSS, it has not yet been saved!'''",
619 'userjspreview' => "'''Remember that you are only testing/previewing your user JavaScript, it has not yet been saved!'''",
620 'updated' => '(Updated)',
621 'note' => '<strong>Note:</strong> ',
622 'previewnote' => 'Remember that this is only a preview, and has not yet been saved!',
623 'previewconflict' => 'This preview reflects the text in the upper
624 text editing area as it will appear if you choose to save.',
625 'editing' => "Editing $1",
626 "sectionedit" => " (section)",
627 'commentedit' => ' (comment)',
628 'editconflict' => 'Edit conflict: $1',
629 'explainconflict' => "Someone else has changed this page since you
630 started editing it.
631 The upper text area contains the page text as it currently exists.
632 Your changes are shown in the lower text area.
633 You will have to merge your changes into the existing text.
634 <b>Only</b> the text in the upper text area will be saved when you
635 press \"Save page\".\n<p>",
636 'yourtext' => 'Your text',
637 'storedversion' => 'Stored version',
638 'editingold' => '<strong>WARNING: You are editing an out-of-date
639 revision of this page.
640 If you save it, any changes made since this revision will be lost.</strong>\n',
641 'yourdiff' => 'Differences',
642 'copyrightwarning' => "Please note that all contributions to {{SITENAME}} are
643 considered to be released under the $2 (see $1 for details).
644 If you don't want your writing to be edited mercilessly and redistributed
645 at will, then don't submit it here.<br />
646 You are also promising us that you wrote this yourself, or copied it from a
647 public domain or similar free resource.
648 <strong>DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION!</strong>",
649 'copyrightwarning2' => "Please note that all contributions to {{SITENAME}}
650 may be edited, altered, or removed by other contributors.
651 If you don't want your writing to be edited mercilessly, then don't submit it here.<br />
652 You are also promising us that you wrote this yourself, or copied it from a
653 public domain or similar free resource (see $1 for details).
654 <strong>DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION!</strong>",
655 'longpagewarning' => "WARNING: This page is $1 kilobytes long; some
656 browsers may have problems editing pages approaching or longer than 32kb.
657 Please consider breaking the page into smaller sections.",
658 'readonlywarning' => 'WARNING: The database has been locked for maintenance,
659 so you will not be able to save your edits right now. You may wish to cut-n-paste
660 the text into a text file and save it for later.',
661 'protectedpagewarning' => "WARNING: This page has been locked so that only
662 users with sysop privileges can edit it. Be sure you are following the
663 <a href='$wgScript/{{ns:4}}:Protected_page_guidelines'>protected page
664 guidelines</a>.",
665 'templatesused' => 'Templates used on this page:',
666
667 # History pages
668 #
669 'revhistory' => 'Revision history',
670 'nohistory' => 'There is no edit history for this page.',
671 'revnotfound' => 'Revision not found',
672 'revnotfoundtext' => "The old revision of the page you asked for could not be found.
673 Please check the URL you used to access this page.\n",
674 'loadhist' => 'Loading page history',
675 'currentrev' => 'Current revision',
676 'revisionasof' => "Revision as of $1",
677 'cur' => 'cur',
678 'next' => 'next',
679 'last' => 'last',
680 'orig' => 'orig',
681 'histlegend' => 'Diff selection: mark the radio boxes of the versions to compare and hit enter or the button at the bottom.<br/>
682 Legend: (cur) = difference with current version,
683 (last) = difference with preceding version, M = minor edit.',
684 'history_copyright' => '-',
685
686 # Diffs
687 #
688 'difference' => '(Difference between revisions)',
689 'loadingrev' => 'loading revision for diff',
690 'lineno' => "Line $1:",
691 'editcurrent' => 'Edit the current version of this page',
692 'selectnewerversionfordiff' => 'Select a newer version for comparison',
693 'selectolderversionfordiff' => 'Select an older version for comparison',
694 'compareselectedversions' => 'Compare selected versions',
695
696 # Search results
697 #
698 'searchresults' => 'Search results',
699 'searchresulttext' => "For more information about searching {{SITENAME}}, see [[Project:Searching|Searching {{SITENAME}}]].",
700 'searchquery' => "For query \"$1\"",
701 'badquery' => 'Badly formed search query',
702 'badquerytext' => 'We could not process your query.
703 This is probably because you have attempted to search for a
704 word fewer than three letters long, which is not yet supported.
705 It could also be that you have mistyped the expression, for
706 example "fish and and scales".
707 Please try another query.',
708 'matchtotals' => "The query \"$1\" matched $2 page titles
709 and the text of $3 pages.",
710 'nogomatch' => 'No page with this exact title exists, trying full text search.',
711 'titlematches' => 'Article title matches',
712 'notitlematches' => 'No page title matches',
713 'textmatches' => 'Page text matches',
714 'notextmatches' => 'No page text matches',
715 'prevn' => "previous $1",
716 'nextn' => "next $1",
717 'viewprevnext' => "View ($1) ($2) ($3).",
718 'showingresults' => "Showing below <b>$1</b> results starting with #<b>$2</b>.",
719 'showingresultsnum' => "Showing below <b>$3</b> results starting with #<b>$2</b>.",
720 'nonefound' => "'''Note''': unsuccessful searches are
721 often caused by searching for common words like \"have\" and \"from\",
722 which are not indexed, or by specifying more than one search term (only pages
723 containing all of the search terms will appear in the result).",
724 'powersearch' => 'Search',
725 'powersearchtext' => "
726 Search in namespaces :<br />
727 $1<br />
728 $2 List redirects &nbsp; Search for $3 $9",
729 "searchdisabled" => "<p>Sorry! Full text search has been disabled temporarily, for performance reasons. In the meantime, you can use the Google search below, which may be out of date.</p>",
730 'googlesearch' => "
731 <!-- SiteSearch Google -->
732 <FORM method=GET action=\"http://www.google.com/search\">
733 <TABLE bgcolor=\"#FFFFFF\"><tr><td>
734 <A HREF=\"http://www.google.com/\">
735 <IMG SRC=\"http://www.google.com/logos/Logo_40wht.gif\"
736 border=\"0\" ALT=\"Google\"></A>
737 </td>
738 <td>
739 <INPUT TYPE=text name=q size=31 maxlength=255 value=\"$1\">
740 <INPUT type=submit name=btnG VALUE=\"Google Search\">
741 <font size=-1>
742 <input type=hidden name=domains value=\"{{SERVER}}\"><br /><input type=radio name=sitesearch value=\"\"> WWW <input type=radio name=sitesearch value=\"{{SERVER}}\" checked> {{SERVER}} <br />
743 <input type='hidden' name='ie' value='$2'>
744 <input type='hidden' name='oe' value='$2'>
745 </font>
746 </td></tr></TABLE>
747 </FORM>
748 <!-- SiteSearch Google -->",
749 'blanknamespace' => '(Main)',
750
751 # Preferences page
752 #
753 'preferences' => 'Preferences',
754 'prefsnologin' => 'Not logged in',
755 'prefsnologintext' => "You must be <a href=\"{{localurl:Special:Userlogin}}\">logged in</a>
756 to set user preferences.",
757 'prefslogintext' => "You are logged in as \"$1\".
758 Your internal ID number is $2.
759
760 See [[{{ns:4}}:User preferences help]] for help deciphering the options.",
761 'prefsreset' => 'Preferences have been reset from storage.',
762 'qbsettings' => 'Quickbar settings',
763 'qbsettingsnote' => 'This preference only works in the \'Standard\' and the \'CologneBlue\' skin.',
764 'changepassword' => 'Change password',
765 'skin' => 'Skin',
766 'math' => 'Rendering math',
767 'dateformat' => 'Date format',
768 'math_failure' => 'Failed to parse',
769 'math_unknown_error' => 'unknown error',
770 'math_unknown_function' => 'unknown function ',
771 'math_lexing_error' => 'lexing error',
772 'math_syntax_error' => 'syntax error',
773 'math_image_error' => 'PNG conversion failed; check for correct installation of latex, dvips, gs, and convert',
774 'math_bad_tmpdir' => 'Can\'t write to or create math temp directory',
775 'math_bad_output' => 'Can\'t write to or create math output directory',
776 'math_notexvc' => 'Missing texvc executable; please see math/README to configure.',
777 'prefs-personal' => 'User data',
778 'prefs-rc' => 'Recent changes and stub display',
779 'prefs-misc' => 'Misc settings',
780 'saveprefs' => 'Save preferences',
781 'resetprefs' => 'Reset preferences',
782 'oldpassword' => 'Old password',
783 'newpassword' => 'New password',
784 'retypenew' => 'Retype new password',
785 'textboxsize' => 'Editing',
786 'rows' => 'Rows',
787 'columns' => 'Columns',
788 'searchresultshead' => 'Search result settings',
789 'resultsperpage' => 'Hits to show per page',
790 'contextlines' => 'Lines to show per hit',
791 'contextchars' => 'Characters of context per line',
792 'stubthreshold' => 'Threshold for stub display',
793 'recentchangescount' => 'Number of titles in recent changes',
794 'savedprefs' => 'Your preferences have been saved.',
795 'timezonelegend' => 'Time zone',
796 'timezonetext' => 'Enter number of hours your local time differs
797 from server time (UTC).',
798 'localtime' => 'Local time display',
799 'timezoneoffset' => 'Offset',
800 'servertime' => 'Server time is now',
801 'guesstimezone' => 'Fill in from browser',
802 'emailflag' => 'Disable e-mail from other users',
803 'defaultns' => 'Search in these namespaces by default:',
804
805 # Recent changes
806 #
807 'changes' => 'changes',
808 'recentchanges' => 'Recent changes',
809 'recentchangestext' => 'Track the most recent changes to the wiki on this page.',
810 'rcloaderr' => 'Loading recent changes',
811 'rcnote' => "Below are the last <strong>$1</strong> changes in last <strong>$2</strong> days.",
812 'rcnotefrom' => "Below are the changes since <b>$2</b> (up to <b>$1</b> shown).",
813 'rclistfrom' => "Show new changes starting from $1",
814 'showhideminor' => "$1 minor edits | $2 bots | $3 logged in users | $4 patrolled edits ",
815 'rclinks' => "Show last $1 changes in last $2 days<br />$3",
816 'rchide' => "in $4 form; $1 minor edits; $2 secondary namespaces; $3 multiple edits.",
817 'rcliu' => "; $1 edits from logged in users",
818 'diff' => 'diff',
819 'hist' => 'hist',
820 'hide' => 'hide',
821 'show' => 'show',
822 'tableform' => 'table',
823 'listform' => 'list',
824 'nchanges' => "$1 changes",
825 'minoreditletter' => 'm',
826 'newpageletter' => 'N',
827 'sectionlink' => '&rarr;',
828
829 # Upload
830 #
831 'upload' => 'Upload file',
832 'uploadbtn' => 'Upload file',
833 'uploadlink' => 'Upload images',
834 'reupload' => 'Re-upload',
835 'reuploaddesc' => 'Return to the upload form.',
836 'uploadnologin' => 'Not logged in',
837 'uploadnologintext' => "You must be <a href=\"{{localurl:Special:Userlogin}}\">logged in</a>
838 to upload files.",
839 'uploadfile' => 'Upload images, sounds, documents etc.',
840 'uploaderror' => 'Upload error',
841 'uploadtext' =>
842 "'''STOP!''' Before you upload here,
843 make sure to read and follow the [[Project:Image use policy|image use policy]].
844
845 To view or search previously uploaded images,
846 go to the [[Special:Imagelist|list of uploaded images]].
847 Uploads and deletions are logged on the
848 [[Project:Upload log|upload log]].
849
850 Use the form below to upload new image files for use in
851 illustrating your pages.
852 On most browsers, you will see a \"Browse...\" button, which will
853 bring up your operating system's standard file open dialog.
854 Choosing a file will fill the name of that file into the text
855 field next to the button.
856 You must also check the box affirming that you are not
857 violating any copyrights by uploading the file.
858 Press the \"Upload\" button to finish the upload.
859 This may take some time if you have a slow internet connection.
860
861 The preferred formats are JPEG for photographic images, PNG
862 for drawings and other iconic images, and OGG for sounds.
863 Please name your files descriptively to avoid confusion.
864 To include the image in a page, use a link in the form
865 '''<nowiki>[[{{ns:6}}:file.jpg]]</nowiki>''' or
866 '''<nowiki>[[{{ns:6}}:file.png|alt text]]</nowiki>''' or
867 '''<nowiki>[[{{ns:-2}}:file.ogg]]</nowiki>''' for sounds.
868
869 Please note that as with wiki pages, others may edit or
870 delete your uploads if they think it serves the project, and
871 you may be blocked from uploading if you abuse the system.",
872
873 'uploadlog' => 'upload log',
874 'uploadlogpage' => 'Upload_log',
875 'uploadlogpagetext' => 'Below is a list of the most recent file uploads.',
876 'filename' => 'Filename',
877 'filedesc' => 'Summary',
878 'filestatus' => 'Copyright status',
879 'filesource' => 'Source',
880 'affirmation' => "I affirm that the copyright holder of this file
881 agrees to license it under the terms of the $1.",
882 'copyrightpage' => "{{ns:4}}:Copyrights",
883 'copyrightpagename' => "{{SITENAME}} copyright",
884 'uploadedfiles' => 'Uploaded files',
885 'noaffirmation' => 'You must affirm that your upload does not violate any copyrights.',
886 'ignorewarning' => 'Ignore warning and save file anyway.',
887 'minlength' => 'Image names must be at least three letters.',
888 'illegalfilename' => 'The filename "$1" contains characters that are not allowed in page titles. Please rename the file and try uploading it again.',
889 'badfilename' => "Image name has been changed to \"$1\".",
890 'badfiletype' => "\".$1\" is not a recommended image file format.",
891 'largefile' => 'It is recommended that images not exceed 100k in size.',
892 '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.',
893 'fileexists' => 'A file with this name exists already, please check $1 if you are not sure if you want to change it.',
894 'successfulupload' => 'Successful upload',
895 'fileuploaded' => "File uploaded successfully.
896 Please follow this link: $2 to the description page and fill
897 in information about the file, such as where it came from, when it was
898 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>",
899 'uploadwarning' => 'Upload warning',
900 'savefile' => 'Save file',
901 'uploadedimage' => "uploaded \"$1\"",
902 'uploaddisabled' => 'Sorry, uploading is disabled.',
903
904 # Image list
905 #
906 'imagelist' => 'Image list',
907 'imagelisttext' => "Below is a list of $1 images sorted $2.",
908 'getimagelist' => 'fetching image list',
909 'ilshowmatch' => 'Show all images with names matching',
910 'ilsubmit' => 'Search',
911 'showlast' => "Show last $1 images sorted $2.",
912 'all' => 'all',
913 'byname' => 'by name',
914 'bydate' => 'by date',
915 'bysize' => 'by size',
916 'imgdelete' => 'del',
917 'imgdesc' => 'desc',
918 'imglegend' => 'Legend: (desc) = show/edit image description.',
919 'imghistory' => 'Image history',
920 'revertimg' => 'rev',
921 'deleteimg' => 'del',
922 'deleteimgcompletely' => 'Delete all revisions',
923 'imghistlegend' => 'Legend: (cur) = this is the current image, (del) = delete
924 this old version, (rev) = revert to this old version.
925 <br /><i>Click on date to see image uploaded on that date</i>.',
926 'imagelinks' => 'Image links',
927 'linkstoimage' => 'The following pages link to this image:',
928 'nolinkstoimage' => 'There are no pages that link to this image.',
929
930 # Statistics
931 #
932 'statistics' => 'Statistics',
933 'sitestats' => 'Site statistics',
934 'userstats' => 'User statistics',
935 'sitestatstext' => "There are '''$1''' total pages in the database.
936 This includes \"talk\" pages, pages about {{SITENAME}}, minimal \"stub\"
937 pages, redirects, and others that probably don't qualify as content pages.
938 Excluding those, there are '''$2''' pages that are probably legitimate
939 content pages.
940
941 There have been a total of '''$3''' page views, and '''$4''' page edits
942 since the wiki was setup.
943 That comes to '''$5''' average edits per page, and '''$6''' views per edit.",
944 'userstatstext' => "There are '''$1''' registered users.
945 '''$2''' of these are administrators (see $3).",
946
947 # Maintenance Page
948 #
949 'maintenance' => 'Maintenance page',
950 'maintnancepagetext' => 'This page includes several handy tools for everyday maintenance. Some of these functions tend to stress the database, so please do not hit reload after every item you fixed ;-)',
951 'maintenancebacklink' => 'Back to Maintenance Page',
952 'disambiguations' => 'Disambiguation pages',
953 'disambiguationspage' => "{{ns:4}}:Links_to_disambiguating_pages",
954 '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 dismbiguation if it is linked from $1.<br />Links from other namespaces are <i>not</i> listed here.",
955 'doubleredirects' => 'Double Redirects',
956 'doubleredirectstext' => "<b>Attention:</b> This list may contain false positives. That usually means there is additional text with links below the first #REDIRECT.<br />\nEach 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.",
957 'brokenredirects' => 'Broken Redirects',
958 'brokenredirectstext' => 'The following redirects link to a non-existing pages.',
959 'selflinks' => 'Pages with Self Links',
960 'selflinkstext' => 'The following pages contain a link to themselves, which they should not.',
961 'mispeelings' => 'Pages with misspellings',
962 'mispeelingstext' => "The following pages contain a common misspelling, which are listed on $1. The correct spelling might be given (like this).",
963 'mispeelingspage' => 'List of common misspellings',
964 'missinglanguagelinks' => 'Missing Language Links',
965 'missinglanguagelinksbutton' => 'Find missing language links for',
966 'missinglanguagelinkstext' => "These pages do <i>not</i> link to their counterpart in $1. Redirects and subpages are <i>not</i> shown.",
967
968
969 # Miscellaneous special pages
970 #
971 'orphans' => 'Orphaned pages',
972 'geo' => 'GEO coordinates',
973 'validate' => 'Validate page',
974 'lonelypages' => 'Orphaned pages',
975 'uncategorizedpages' => 'Uncategorized pages',
976 'unusedimages' => 'Unused images',
977 'popularpages' => 'Popular pages',
978 'nviews' => '$1 views',
979 'wantedpages' => 'Wanted pages',
980 'nlinks' => '$1 links',
981 'allpages' => 'All pages',
982 'randompage' => 'Random page',
983 'shortpages' => 'Short pages',
984 'longpages' => 'Long pages',
985 'deadendpages' => 'Dead-end pages',
986 'listusers' => 'User list',
987 'listadmins' => 'Admins list',
988 'specialpages' => 'Special pages',
989 'spheading' => 'Special pages for all users',
990 'sysopspheading' => 'For sysop use only',
991 'developerspheading' => 'For developer use only',
992 'protectpage' => 'Protect page',
993 'recentchangeslinked' => 'Related changes',
994 'rclsub' => "(to pages linked from \"$1\")",
995 'debug' => 'Debug',
996 'newpages' => 'New pages',
997 'ancientpages' => 'Oldest pages',
998 'intl' => 'Interlanguage links',
999 'move' => 'Move',
1000 'movethispage' => 'Move this page',
1001 'unusedimagestext' => '<p>Please note that other web sites may link to an image with
1002 a direct URL, and so may still be listed here despite being
1003 in active use.',
1004 'booksources' => 'Book sources',
1005 # FIXME: Other sites, of course, may have affiliate relations with the booksellers list
1006 'booksourcetext' => "Below is a list of links to other sites that
1007 sell new and used books, and may also have further information
1008 about books you are looking for.
1009 {{SITENAME}} is not affiliated with any of these businesses, and
1010 this list should not be construed as an endorsement.",
1011 'isbn' => 'ISBN',
1012 'rfcurl' => "http://www.faqs.org/rfcs/rfc$1.html",
1013 'alphaindexline' => "$1 to $2",
1014 'version' => 'Version',
1015 'log' => 'Logs',
1016 'alllogstext' => 'Combined display of upload, deletion, protection, blocking, and sysop logs.
1017 You can narrow down the view by selecting a log type, the user name, or the affected page.',
1018
1019 # Special:Allpages
1020 'nextpage' => 'Next page ($1)',
1021 'articlenamespace' => '(articles)',
1022 'allpagesformtext' => 'Display pages starting at: $1 Choose namespace: $2 $3',
1023 'allarticles' => 'All articles',
1024 'allpagesprev' => 'Previous',
1025 'allpagesnext' => 'Next',
1026 'allpagesnamespace' => 'All pages ($1 namespace)',
1027 'allpagessubmit' => 'Go',
1028
1029 # Email this user
1030 #
1031 'mailnologin' => 'No send address',
1032 'mailnologintext' => "You must be <a href=\"{{localurl:Special:Userlogin\">logged in</a>
1033 and have a valid e-mail address in your <a href=\"{{localurl:Special:Preferences}}\">preferences</a>
1034 to send e-mail to other users.",
1035 'emailuser' => 'E-mail this user',
1036 'emailpage' => 'E-mail user',
1037 'emailpagetext' => 'If this user has entered a valid e-mail address in
1038 his or her user preferences, the form below will send a single message.
1039 The e-mail address you entered in your user preferences will appear
1040 as the "From" address of the mail, so the recipient will be able
1041 to reply.',
1042 'usermailererror' => 'Mail object returned error: ',
1043 'defemailsubject' => "{{SITENAME}} e-mail",
1044 'noemailtitle' => 'No e-mail address',
1045 'noemailtext' => 'This user has not specified a valid e-mail address,
1046 or has chosen not to receive e-mail from other users.',
1047 'emailfrom' => 'From',
1048 'emailto' => 'To',
1049 'emailsubject' => 'Subject',
1050 'emailmessage' => 'Message',
1051 'emailsend' => 'Send',
1052 'emailsent' => 'E-mail sent',
1053 'emailsenttext' => 'Your e-mail message has been sent.',
1054
1055 # Watchlist
1056 #
1057 'watchlist' => 'My watchlist',
1058 'watchlistsub' => "(for user \"$1\")",
1059 'nowatchlist' => 'You have no items on your watchlist.',
1060 'watchnologin' => 'Not logged in',
1061 'watchnologintext' => "You must be <a href=\"{{localurl:Special:Userlogin}}\">logged in</a>
1062 to modify your watchlist.",
1063 'addedwatch' => 'Added to watchlist',
1064 'addedwatchtext' => "The page \"$1\" has been added to your [[{{ns:-1}}:Watchlist|watchlist]].
1065 Future changes to this page and its associated Talk page will be listed there,
1066 and the page will appear '''bolded''' in the [[Special:Recentchanges|list of recent changes]] to
1067 make it easier to pick out.
1068
1069 <p>If you want to remove the page from your watchlist later, click \"Stop watching\" in the sidebar.",
1070 'removedwatch' => 'Removed from watchlist',
1071 'removedwatchtext' => "The page \"$1\" has been removed from your watchlist.",
1072 'watch' => 'Watch',
1073 'watchthispage' => 'Watch this page',
1074 'unwatch' => 'Unwatch',
1075 'unwatchthispage' => 'Stop watching',
1076 'notanarticle' => 'Not a content page',
1077 'watchnochange' => 'None of your watched items were edited in the time period displayed.',
1078 'watchdetails' => "($1 pages watched not counting talk pages;
1079 $2 total pages edited since cutoff;
1080 $3...
1081 <a href='$4'>show and edit complete list</a>.)",
1082 'watchmethod-recent'=> 'checking recent edits for watched pages',
1083 'watchmethod-list' => 'checking watched pages for recent edits',
1084 'removechecked' => 'Remove checked items from watchlist',
1085 'watchlistcontains' => "Your watchlist contains $1 pages.",
1086 'watcheditlist' => 'Here\'s an alphabetical list of your
1087 watched pages. Check the boxes of pages you want to remove
1088 from your watchlist and click the \'remove checked\' button
1089 at the bottom of the screen.',
1090 'removingchecked' => 'Removing requested items from watchlist...',
1091 'couldntremove' => "Couldn't remove item '$1'...",
1092 'iteminvalidname' => "Problem with item '$1', invalid name...",
1093 'wlnote' => "Below are the last $1 changes in the last <b>$2</b> hours.",
1094 'wlshowlast' => "Show last $1 hours $2 days $3",
1095 'wlsaved' => 'This is a saved version of your watchlist.',
1096
1097
1098 # Delete/protect/revert
1099 #
1100 'deletepage' => 'Delete page',
1101 'confirm' => 'Confirm',
1102 'excontent' => 'content was:',
1103 'exbeforeblank' => 'content before blanking was:',
1104 'exblank' => 'page was empty',
1105 'confirmdelete' => 'Confirm delete',
1106 'deletesub' => "(Deleting \"$1\")",
1107 'historywarning' => 'Warning: The page you are about to delete has a history: ',
1108 'confirmdeletetext' => "You are about to permanently delete a page
1109 or image along with all of its history from the database.
1110 Please confirm that you intend to do this, that you understand the
1111 consequences, and that you are doing this in accordance with
1112 [[{{ns:4}}:Policy]].",
1113 'confirmcheck' => 'Yes, I really want to delete this.',
1114 'actioncomplete' => 'Action complete',
1115 'deletedtext' => "\"$1\" has been deleted.
1116 See $2 for a record of recent deletions.",
1117 'deletedarticle' => "deleted \"$1\"",
1118 'dellogpage' => 'Deletion_log',
1119 'dellogpagetext' => 'Below is a list of the most recent deletions.',
1120 'deletionlog' => 'deletion log',
1121 'reverted' => 'Reverted to earlier revision',
1122 'deletecomment' => 'Reason for deletion',
1123 'imagereverted' => 'Revert to earlier version was successful.',
1124 'rollback' => 'Roll back edits',
1125 'rollback_short' => 'Rollback',
1126 'rollbacklink' => 'rollback',
1127 'rollbackfailed' => 'Rollback failed',
1128 'cantrollback' => 'Cannot revert edit; last contributor is only author of this page.',
1129 'alreadyrolled' => "Cannot rollback last edit of [[$1]]
1130 by [[User:$2|$2]] ([[User talk:$2|Talk]]); someone else has edited or rolled back the page already.
1131
1132 Last edit was by [[User:$3|$3]] ([[User talk:$3|Talk]]). ",
1133 # only shown if there is an edit comment
1134 'editcomment' => "The edit comment was: \"<i>$1</i>\".",
1135 'revertpage' => "Reverted edit of $2, changed back to last version by $1",
1136 'protectlogpage' => 'Protection_log',
1137 'protectlogtext' => "Below is a list of page locks/unlocks.
1138 See [[{{ns:4}}:Protected page]] for more information.",
1139 'protectedarticle' => "protected [[$1]]",
1140 'unprotectedarticle' => "unprotected [[$1]]",
1141 'protectsub' =>"(Protecting \"$1\")",
1142 'confirmprotecttext' => 'Do you really want to protect this page?',
1143 'confirmprotect' => 'Confirm protection',
1144 'protectcomment' => 'Reason for protecting',
1145 'unprotectsub' =>"(Unprotecting \"$1\")",
1146 'confirmunprotecttext' => 'Do you really want to unprotect this page?',
1147 'confirmunprotect' => 'Confirm unprotection',
1148 'unprotectcomment' => 'Reason for unprotecting',
1149 'protectreason' => '(give a reason)',
1150
1151 # Undelete
1152 'undelete' => 'Restore deleted page',
1153 'undeletepage' => 'View and restore deleted pages',
1154 'undeletepagetext' => 'The following pages have been deleted but are still in the archive and
1155 can be restored. The archive may be periodically cleaned out.',
1156 'undeletearticle' => 'Restore deleted page',
1157 'undeleterevisions' => "$1 revisions archived",
1158 'undeletehistory' => 'If you restore the page, all revisions will be restored to the history.
1159 If a new page with the same name has been created since the deletion, the restored
1160 revisions will appear in the prior history, and the current revision of the live page
1161 will not be automatically replaced.',
1162 'undeleterevision' => "Deleted revision as of $1",
1163 'undeletebtn' => 'Restore!',
1164 'undeletedarticle' => "restored \"$1\"",
1165 'undeletedtext' => "[[$1]] has been successfully restored.
1166 See [[{{ns:4}}:Deletion_log]] for a record of recent deletions and restorations.",
1167
1168 # Contributions
1169 #
1170 'contributions' => 'User contributions',
1171 'mycontris' => 'My contributions',
1172 'contribsub' => "For $1",
1173 'nocontribs' => 'No changes were found matching these criteria.',
1174 'ucnote' => "Below are this user's last <b>$1</b> changes in the last <b>$2</b> days.",
1175 'uclinks' => "View the last $1 changes; view the last $2 days.",
1176 'uctop' => ' (top)' ,
1177 'newbies' => 'newbies',
1178
1179 # What links here
1180 #
1181 'whatlinkshere' => 'What links here',
1182 'notargettitle' => 'No target',
1183 'notargettext' => 'You have not specified a target page or user
1184 to perform this function on.',
1185 'linklistsub' => '(List of links)',
1186 'linkshere' => 'The following pages link to here:',
1187 'nolinkshere' => 'No pages link to here.',
1188 'isredirect' => 'redirect page',
1189
1190 # Block/unblock IP
1191 #
1192 'blockip' => 'Block user',
1193 'blockiptext' => "Use the form below to block write access
1194 from a specific IP address or username.
1195 This should be done only only to prevent vandalism, and in
1196 accordance with [[{{ns:4}}:Policy|policy]].
1197 Fill in a specific reason below (for example, citing particular
1198 pages that were vandalized).",
1199 'ipaddress' => 'IP Address/username',
1200 'ipbexpiry' => 'Expiry',
1201 'ipbreason' => 'Reason',
1202 'ipbsubmit' => 'Block this user',
1203 'badipaddress' => 'Invalid IP address',
1204 'noblockreason' => 'You must supply a reason for the block.',
1205 'blockipsuccesssub' => 'Block succeeded',
1206 'blockipsuccesstext' => "\"$1\" has been blocked.
1207 <br />See [[Special:Ipblocklist|IP block list]] to review blocks.",
1208 'unblockip' => 'Unblock user',
1209 'unblockiptext' => 'Use the form below to restore write access
1210 to a previously blocked IP address or username.',
1211 'ipusubmit' => 'Unblock this address',
1212 'ipusuccess' => "\"$1\" unblocked",
1213 'ipblocklist' => 'List of blocked IP addresses and usernames',
1214 'blocklistline' => "$1, $2 blocked $3 (expires $4)",
1215 'blocklink' => 'block',
1216 'unblocklink' => 'unblock',
1217 'contribslink' => 'contribs',
1218 'autoblocker' => "Autoblocked because you share an IP address with \"$1\". Reason \"$2\".",
1219 'blocklogpage' => 'Block_log',
1220 'blocklogentry' => 'blocked "$1" with an expiry time of $2',
1221 'blocklogtext' => 'This is a log of user blocking and unblocking actions. Automatically
1222 blocked IP addresses are not be listed. See the [[Special:Ipblocklist|IP block list]] for
1223 the list of currently operational bans and blocks.',
1224 'unblocklogentry' => 'unblocked "$1"',
1225 'range_block_disabled' => 'The sysop ability to create range blocks is disabled.',
1226 'ipb_expiry_invalid' => 'Expiry time invalid.',
1227 'ip_range_invalid' => "Invalid IP range.\n",
1228 'proxyblocker' => 'Proxy blocker',
1229 '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.',
1230 'proxyblocksuccess' => "Done.\n",
1231
1232 # Developer tools
1233 #
1234 'lockdb' => 'Lock database',
1235 'unlockdb' => 'Unlock database',
1236 'lockdbtext' => 'Locking the database will suspend the ability of all
1237 users to edit pages, change their preferences, edit their watchlists, and
1238 other things requiring changes in the database.
1239 Please confirm that this is what you intend to do, and that you will
1240 unlock the database when your maintenance is done.',
1241 'unlockdbtext' => 'Unlocking the database will restore the ability of all
1242 users to edit pages, change their preferences, edit their watchlists, and
1243 other things requiring changes in the database.
1244 Please confirm that this is what you intend to do.',
1245 'lockconfirm' => 'Yes, I really want to lock the database.',
1246 'unlockconfirm' => 'Yes, I really want to unlock the database.',
1247 'lockbtn' => 'Lock database',
1248 'unlockbtn' => 'Unlock database',
1249 'locknoconfirm' => 'You did not check the confirmation box.',
1250 'lockdbsuccesssub' => 'Database lock succeeded',
1251 'unlockdbsuccesssub' => 'Database lock removed',
1252 'lockdbsuccesstext' => 'The database has been locked.
1253 <br />Remember to remove the lock after your maintenance is complete.',
1254 'unlockdbsuccesstext' => 'The database has been unlocked.',
1255
1256 # SQL query
1257 #
1258 'asksql' => 'SQL query',
1259 'asksqltext' => "Use the form below to make a direct query of the
1260 database.
1261 Use single quotes ('like this') to delimit string literals.
1262 This can often add considerable load to the server, so please use
1263 this function sparingly.",
1264 'sqlislogged' => 'Please note that all queries are logged.',
1265 'sqlquery' => 'Enter query',
1266 'querybtn' => 'Submit query',
1267 'selectonly' => 'Only read-only queries are allowed.',
1268 'querysuccessful' => 'Query successful',
1269
1270 # Make sysop
1271 'makesysoptitle' => 'Make a user into a sysop',
1272 'makesysoptext' => 'This form is used by bureaucrats to turn ordinary users into administrators.
1273 Type the name of the user in the box and press the button to make the user an administrator',
1274 'makesysopname' => 'Name of the user:',
1275 'makesysopsubmit' => 'Make this user into a sysop',
1276 'makesysopok' => "<b>User \"$1\" is now a sysop</b>",
1277 'makesysopfail' => "<b>User \"$1\" could not be made into a sysop. (Did you enter the name correctly?)</b>",
1278 'setbureaucratflag' => 'Set bureaucrat flag',
1279 'bureaucratlog' => 'Bureaucrat_log',
1280 'bureaucratlogentry' => "Rights for user \"$1\" set \"$2\"",
1281 'rights' => 'Rights:',
1282 'set_user_rights' => 'Set user rights',
1283 'user_rights_set' => "<b>User rights for \"$1\" updated</b>",
1284 'set_rights_fail' => "<b>User rights for \"$1\" could not be set. (Did you enter the name correctly?)</b>",
1285 'makesysop' => 'Make a user into a sysop',
1286
1287 # Validation
1288 'val_clear_old' => 'Clear my other validation data for $1',
1289 'val_merge_old' => 'Use my previous assessment where selected \'No opinion\'',
1290 'val_form_note' => '<b>Hint:</b> Merging your data means that for the article
1291 revision you select, all options where you have specified <i>no opinion</i>
1292 will be set to the value and comment of the most recent revision for which you
1293 have expressed an opinion. For example, if you want to change a single option
1294 for a newer revision, but also keep your other settings for this article in
1295 this revision, just select which option you intend to <i>change</i>, and
1296 merging will fill in the other options with your previous settings.',
1297 'val_noop' => 'No opinion',
1298 'val_percent' => '<b>$1%</b><br>($2 of $3 points<br>by $4 users)',
1299 'val_percent_single' => '<b>$1%</b><br>($2 of $3 points<br>by one user)',
1300 'val_total' => 'Total',
1301 'val_version' => 'Version',
1302 'val_tab' => 'Validate',
1303 'val_this_is_current_version' => 'this is the latest version',
1304 'val_version_of' => "Version of $1" ,
1305 'val_table_header' => "<tr><th>Class</th>$1<th colspan=4>Opinion</th>$1<th>Comment</th></tr>\n",
1306 'val_stat_link_text' => 'Validation statistics for this article',
1307 'val_view_version' => 'View this version',
1308 'val_validate_version' => 'Validate this version',
1309 'val_user_validations' => 'This user has validated $1 pages.',
1310 'val_no_anon_validation' => 'You have to be logged in to validate an article.',
1311 'val_validate_article_namespace_only' => 'Only articles can be validated. This page is <i>not</i> in the article namespace.',
1312 'val_validated' => 'Validation done.',
1313 'val_article_lists' => 'List of validated articles',
1314 'val_page_validation_statistics' => 'Page validation statistics for $1',
1315
1316 # Move page
1317 #
1318 'movepage' => 'Move page',
1319 'movepagetext' => 'Using the form below will rename a page, moving all
1320 of its history to the new name.
1321 The old title will become a redirect page to the new title.
1322 Links to the old page title will not be changed; be sure to
1323 [[Special:Maintenance|check]] for double or broken redirects.
1324 You are responsible for making sure that links continue to
1325 point where they are supposed to go.
1326
1327 Note that the page will \'\'\'not\'\'\' be moved if there is already
1328 a page at the new title, unless it is empty or a redirect and has no
1329 past edit history. This means that you can rename a page back to where
1330 it was just renamed from if you make a mistake, and you cannot overwrite
1331 an existing page.
1332
1333 <b>WARNING!</b>
1334 This can be a drastic and unexpected change for a popular page;
1335 please be sure you understand the consequences of this before
1336 proceeding.',
1337 'movepagetalktext' => 'The associated talk page, if any, will be automatically moved along with it \'\'\'unless:\'\'\'
1338 *You are moving the page across namespaces,
1339 *A non-empty talk page already exists under the new name, or
1340 *You uncheck the box below.
1341
1342 In those cases, you will have to move or merge the page manually if desired.',
1343 'movearticle' => 'Move page',
1344 'movenologin' => 'Not logged in',
1345 'movenologintext' => "You must be a registered user and <a href=\"{{localurl:Special:Userlogin}}\">logged in</a>
1346 to move a page.",
1347 'newtitle' => 'To new title',
1348 'movepagebtn' => 'Move page',
1349 'pagemovedsub' => 'Move succeeded',
1350 'pagemovedtext' => "Page \"[[$1]]\" moved to \"[[$2]]\".",
1351 'articleexists' => 'A page of that name already exists, or the
1352 name you have chosen is not valid.
1353 Please choose another name.',
1354 'talkexists' => 'The page itself was moved successfully, but the
1355 talk page could not be moved because one already exists at the new
1356 title. Please merge them manually.',
1357 'movedto' => 'moved to',
1358 'movetalk' => 'Move "talk" page as well, if applicable.',
1359 'talkpagemoved' => 'The corresponding talk page was also moved.',
1360 'talkpagenotmoved' => 'The corresponding talk page was <strong>not</strong> moved.',
1361 '1movedto2' => "$1 moved to $2",
1362 '1movedto2_redir' => '$1 moved to $2 over redirect',
1363
1364 # Export
1365
1366 'export' => 'Export pages',
1367 'exporttext' => 'You can export the text and editing history of a particular page or
1368 set of pages wrapped in some XML. In the future, this may then be imported into another
1369 wiki running MediaWiki software, although there is no support for this feature in the
1370 current version.
1371
1372 To export article pages, enter the titles in the text box below, one title per line, and
1373 select whether you want the current version as well as all old versions, with the page
1374 history lines, or just the current version with the info about the last edit.
1375
1376 In the latter case you can also use a link, e.g. [[{{ns:Special}}:Export/Train]] for the
1377 article [[Train]].
1378 ',
1379 'exportcuronly' => 'Include only the current revision, not the full history',
1380
1381 # Namespace 8 related
1382
1383 'allmessages' => 'All system messages',
1384 'allmessagestext' => 'This is a list of all system messages available in the MediaWiki: namespace.',
1385
1386 # Thumbnails
1387
1388 'thumbnail-more' => 'Enlarge',
1389 'missingimage' => "<b>Missing image</b><br /><i>$1</i>\n",
1390
1391 # Special:Import
1392 'import' => 'Import pages',
1393 'importtext' => 'Please export the file from the source wiki using the Special:Export utility, save it to your disk and upload it here.',
1394 'importfailed' => "Import failed: $1",
1395 'importnotext' => 'Empty or no text',
1396 'importsuccess' => 'Import succeeded!',
1397 'importhistoryconflict' => 'Conflicting history revision exists (may have imported this page before)',
1398
1399 # Keyboard access keys for power users
1400 'accesskey-search' => 'f',
1401 'accesskey-minoredit' => 'i',
1402 'accesskey-save' => 's',
1403 'accesskey-preview' => 'p',
1404 'accesskey-compareselectedversions' => 'v',
1405
1406 # tooltip help for some actions, most are in Monobook.js
1407 'tooltip-search' => 'Search this wiki [alt-f]',
1408 'tooltip-minoredit' => 'Mark this as a minor edit [alt-i]',
1409 'tooltip-save' => 'Save your changes [alt-s]',
1410 'tooltip-preview' => 'Preview your changes, please use this before saving! [alt-p]',
1411 'tooltip-compareselectedversions' => 'See the differences between the two selected versions of this page. [alt-v]',
1412
1413 # stylesheets
1414
1415 'Monobook.css' => '/* edit this file to customize the monobook skin for the entire site */',
1416 #'Monobook.js' => '/* edit this file to change js things in the monobook skin */',
1417
1418 # Metadata
1419 'nodublincore' => 'Dublin Core RDF metadata disabled for this server.',
1420 'nocreativecommons' => 'Creative Commons RDF metadata disabled for this server.',
1421 'notacceptable' => 'The wiki server can\'t provide data in a format your client can read.',
1422
1423 # Attribution
1424
1425 'anonymous' => "Anonymous user(s) of $wgSitename",
1426 'siteuser' => "$wgSitename user $1",
1427 'lastmodifiedby' => "This page was last modified $1 by $2.",
1428 'and' => 'and',
1429 'othercontribs' => "Based on work by $1.",
1430 'others' => 'others',
1431 'siteusers' => "$wgSitename user(s) $1",
1432 'creditspage' => 'Page credits',
1433 'nocredits' => 'There is no credits info available for this page.',
1434
1435 # Spam protection
1436
1437 'spamprotectiontitle' => 'Spam protection filter',
1438 'spamprotectiontext' => 'The page you wanted to save was blocked by the spam filter. This is probably caused by a link to an external site.',
1439 'spamprotectionmatch' => 'The following text is what triggered our spam filter: $1',
1440 'subcategorycount' => "There are $1 subcategories to this category.",
1441 'subcategorycount1' => "There is $1 subcategorie to this category.",
1442 'categoryarticlecount' => "There are $1 articles in this category.",
1443 'categoryarticlecount1' => "There is $1 article in this category.",
1444 'usenewcategorypage' => "1\n\nSet first character to \"0\" to disable the new category page layout.",
1445
1446 # Info page
1447 "infosubtitle" => "Information for page",
1448 "numedits" => "Number of edits (article): $1",
1449 "numtalkedits" => "Number of edits (discussion page): $1",
1450 "numwatchers" => "Number of watchers: $1",
1451 "numauthors" => "Number of distinct authors (article): $1",
1452 "numtalkauthors" => "Number of distinct authors (discussion page): $1",
1453
1454 # Math options
1455 'mw_math_png' => 'Always render PNG',
1456 'mw_math_simple' => 'HTML if very simple or else PNG',
1457 'mw_math_html' => 'HTML if possible or else PNG',
1458 'mw_math_source' => 'Leave it as TeX (for text browsers)',
1459 'mw_math_modern' => 'Recommended for modern browsers',
1460 'mw_math_mathml' => 'MathML if possible (experimental)',
1461
1462 # Patrolling
1463 'markaspatrolleddiff' => "Mark as patrolled",
1464 'markaspatrolledlink' => "<div class='patrollink'>[$1]</div>",
1465 'markaspatrolledtext' => "Mark this article as patrolled",
1466 'markedaspatrolled' => "Marked as patrolled",
1467 'markedaspatrolledtext' => "The selected revision has been marked as patrolled.",
1468 'rcpatroldisabled' => "Recent Changes Patrol disabled",
1469 'rcpatroldisabledtext' => "The Recent Changes Patrol feature is currently disabled.",
1470
1471 # Monobook.js: tooltips and access keys for monobook
1472 'Monobook.js' => '/* tooltips and access keys */
1473 ta = new Object();
1474 ta[\'pt-userpage\'] = new Array(\'.\',\'My user page\');
1475 ta[\'pt-anonuserpage\'] = new Array(\'.\',\'The user page for the ip you\\\'re editing as\');
1476 ta[\'pt-mytalk\'] = new Array(\'n\',\'My talk page\');
1477 ta[\'pt-anontalk\'] = new Array(\'n\',\'Discussion about edits from this ip address\');
1478 ta[\'pt-preferences\'] = new Array(\'\',\'My preferences\');
1479 ta[\'pt-watchlist\'] = new Array(\'l\',\'The list of pages you\\\'re monitoring for changes.\');
1480 ta[\'pt-mycontris\'] = new Array(\'y\',\'List of my contributions\');
1481 ta[\'pt-login\'] = new Array(\'o\',\'You are encouraged to log in, it is not mandatory however.\');
1482 ta[\'pt-anonlogin\'] = new Array(\'o\',\'You are encouraged to log in, it is not mandatory however.\');
1483 ta[\'pt-logout\'] = new Array(\'o\',\'Log out\');
1484 ta[\'ca-talk\'] = new Array(\'t\',\'Discussion about the content page\');
1485 ta[\'ca-edit\'] = new Array(\'e\',\'You can edit this page. Please use the preview button before saving.\');
1486 ta[\'ca-addsection\'] = new Array(\'+\',\'Add a comment to this discussion.\');
1487 ta[\'ca-viewsource\'] = new Array(\'e\',\'This page is protected. You can view its source.\');
1488 ta[\'ca-history\'] = new Array(\'h\',\'Past versions of this page.\');
1489 ta[\'ca-protect\'] = new Array(\'=\',\'Protect this page\');
1490 ta[\'ca-delete\'] = new Array(\'d\',\'Delete this page\');
1491 ta[\'ca-undelete\'] = new Array(\'d\',\'Restore the edits done to this page before it was deleted\');
1492 ta[\'ca-move\'] = new Array(\'m\',\'Move this page\');
1493 ta[\'ca-nomove\'] = new Array(\'\',\'You don\\\'t have the permissions to move this page\');
1494 ta[\'ca-watch\'] = new Array(\'w\',\'Add this page to your watchlist\');
1495 ta[\'ca-unwatch\'] = new Array(\'w\',\'Remove this page from your watchlist\');
1496 ta[\'search\'] = new Array(\'f\',\'Search this wiki\');
1497 ta[\'p-logo\'] = new Array(\'\',\'Main Page\');
1498 ta[\'n-mainpage\'] = new Array(\'z\',\'Visit the Main Page\');
1499 ta[\'n-portal\'] = new Array(\'\',\'About the project, what you can do, where to find things\');
1500 ta[\'n-currentevents\'] = new Array(\'\',\'Find background information on current events\');
1501 ta[\'n-recentchanges\'] = new Array(\'r\',\'The list of recent changes in the wiki.\');
1502 ta[\'n-randompage\'] = new Array(\'x\',\'Load a random page\');
1503 ta[\'n-help\'] = new Array(\'\',\'The place to find out.\');
1504 ta[\'n-sitesupport\'] = new Array(\'\',\'Support us\');
1505 ta[\'t-whatlinkshere\'] = new Array(\'j\',\'List of all wiki pages that link here\');
1506 ta[\'t-recentchangeslinked\'] = new Array(\'k\',\'Recent changes in pages linking to this page\');
1507 ta[\'feed-rss\'] = new Array(\'\',\'RSS feed for this page\');
1508 ta[\'feed-atom\'] = new Array(\'\',\'Atom feed for this page\');
1509 ta[\'t-contributions\'] = new Array(\'\',\'View the list of contributions of this user\');
1510 ta[\'t-emailuser\'] = new Array(\'\',\'Send a mail to this user\');
1511 ta[\'t-upload\'] = new Array(\'u\',\'Upload images or media files\');
1512 ta[\'t-specialpages\'] = new Array(\'q\',\'List of all special pages\');
1513 ta[\'ca-nstab-main\'] = new Array(\'c\',\'View the content page\');
1514 ta[\'ca-nstab-user\'] = new Array(\'c\',\'View the user page\');
1515 ta[\'ca-nstab-media\'] = new Array(\'c\',\'View the media page\');
1516 ta[\'ca-nstab-special\'] = new Array(\'\',\'This is a special page, you can\\\'t edit the page itself.\');
1517 ta[\'ca-nstab-wp\'] = new Array(\'a\',\'View the project page\');
1518 ta[\'ca-nstab-image\'] = new Array(\'c\',\'View the image page\');
1519 ta[\'ca-nstab-mediawiki\'] = new Array(\'c\',\'View the system message\');
1520 ta[\'ca-nstab-template\'] = new Array(\'c\',\'View the template\');
1521 ta[\'ca-nstab-help\'] = new Array(\'c\',\'View the help page\');
1522 ta[\'ca-nstab-category\'] = new Array(\'c\',\'View the category page\');
1523 ',
1524
1525 # image deletion
1526 'deletedrevision' => 'Deleted old revision $1.',
1527
1528
1529 );
1530
1531 #--------------------------------------------------------------------------
1532 # Internationalisation code
1533 #--------------------------------------------------------------------------
1534
1535 class Language {
1536 function Language(){
1537 # Copies any missing values in the specified arrays from En to the current language
1538 $fillin = array( 'wgSysopSpecialPages', 'wgValidSpecialPages', 'wgDeveloperSpecialPages' );
1539 $name = get_class( $this );
1540 if( strpos( $name, 'language' ) == 0){
1541 $lang = ucfirst( substr( $name, 8 ) );
1542 foreach( $fillin as $arrname ){
1543 $langver = "{$arrname}{$lang}";
1544 $enver = "{$arrname}En";
1545 if( ! isset( $GLOBALS[$langver] ) || ! isset( $GLOBALS[$enver] ))
1546 continue;
1547 foreach($GLOBALS[$enver] as $spage => $text){
1548 if( ! isset( $GLOBALS[$langver][$spage] ) )
1549 $GLOBALS[$langver][$spage] = $text;
1550 }
1551 }
1552 }
1553 }
1554
1555 function getDefaultUserOptions () {
1556 global $wgDefaultUserOptionsEn ;
1557 return $wgDefaultUserOptionsEn ;
1558 }
1559
1560 function getBookstoreList () {
1561 global $wgBookstoreListEn ;
1562 return $wgBookstoreListEn ;
1563 }
1564
1565 function getNamespaces() {
1566 global $wgNamespaceNamesEn;
1567 return $wgNamespaceNamesEn;
1568 }
1569
1570 function getNsText( $index ) {
1571 global $wgNamespaceNamesEn;
1572 return $wgNamespaceNamesEn[$index];
1573 }
1574
1575 function getNsIndex( $text ) {
1576 global $wgNamespaceNamesEn;
1577
1578 foreach ( $wgNamespaceNamesEn as $i => $n ) {
1579 if ( 0 == strcasecmp( $n, $text ) ) { return $i; }
1580 }
1581 return false;
1582 }
1583
1584 function specialPage( $name ) {
1585 return $this->getNsText( Namespace::getSpecial() ) . ':' . $name;
1586 }
1587
1588 function getQuickbarSettings() {
1589 global $wgQuickbarSettingsEn;
1590 return $wgQuickbarSettingsEn;
1591 }
1592
1593 function getSkinNames() {
1594 global $wgSkinNamesEn;
1595 return $wgSkinNamesEn;
1596 }
1597
1598 function getMathNames() {
1599 global $wgMathNamesEn;
1600 return $wgMathNamesEn;
1601 }
1602
1603 function getDateFormats() {
1604 global $wgDateFormatsEn;
1605 return $wgDateFormatsEn;
1606 }
1607
1608 function getValidationTypes() {
1609 global $wgValidationTypesEn;
1610 return $wgValidationTypesEn;
1611 }
1612
1613 function getUserToggles() {
1614 global $wgUserTogglesEn;
1615 return $wgUserTogglesEn;
1616 }
1617
1618 function getUserToggle( $tog ) {
1619 $togs =& $this->getUserToggles();
1620 return wfMsg("tog-".$tog);
1621 }
1622
1623 function getLanguageNames() {
1624 global $wgLanguageNamesEn;
1625 return $wgLanguageNamesEn;
1626 }
1627
1628 function getLanguageName( $code ) {
1629 global $wgLanguageNamesEn;
1630 if ( ! array_key_exists( $code, $wgLanguageNamesEn ) ) {
1631 return "";
1632 }
1633 return $wgLanguageNamesEn[$code];
1634 }
1635
1636 function getMonthName( $key )
1637 {
1638 global $wgMonthNamesEn;
1639 return wfMsg($wgMonthNamesEn[$key-1]);
1640 }
1641
1642 /* by default we just return base form */
1643 function getMonthNameGen( $key )
1644 {
1645 return $this->getMonthName( $key );
1646 }
1647
1648 function getMonthAbbreviation( $key )
1649 {
1650 global $wgMonthAbbreviationsEn;
1651 return wfMsg(@$wgMonthAbbreviationsEn[$key-1]);
1652 }
1653
1654 function getWeekdayName( $key )
1655 {
1656 global $wgWeekdayNamesEn;
1657 return wfMsg($wgWeekdayNamesEn[$key-1]);
1658 }
1659
1660 function userAdjust( $ts )
1661 {
1662 global $wgUser, $wgLocalTZoffset;
1663
1664 $tz = $wgUser->getOption( 'timecorrection' );
1665 if ( $tz === '' ) {
1666 $hrDiff = isset( $wgLocalTZoffset ) ? $wgLocalTZoffset : 0;
1667 $minDiff = 0;
1668 } elseif ( strpos( $tz, ':' ) !== false ) {
1669 $tzArray = explode( ':', $tz );
1670 $hrDiff = intval($tzArray[0]);
1671 $minDiff = intval($hrDiff < 0 ? -$tzArray[1] : $tzArray[1]);
1672 } else {
1673 $hrDiff = intval( $tz );
1674 }
1675 if ( 0 == $hrDiff && 0 == $minDiff ) { return $ts; }
1676
1677 $t = mktime( (
1678 (int)substr( $ts, 8, 2) ) + $hrDiff, # Hours
1679 (int)substr( $ts, 10, 2 ) + $minDiff, # Minutes
1680 (int)substr( $ts, 12, 2 ), # Seconds
1681 (int)substr( $ts, 4, 2 ), # Month
1682 (int)substr( $ts, 6, 2 ), # Day
1683 (int)substr( $ts, 0, 4 ) ); #Year
1684 return date( 'YmdHis', $t );
1685 }
1686
1687 function date( $ts, $adj = false, $format = MW_DATE_USER_FORMAT )
1688 {
1689 global $wgAmericanDates, $wgUser, $wgUseDynamicDates;
1690
1691 if ( $adj ) { $ts = $this->userAdjust( $ts ); }
1692 if ( $wgUseDynamicDates ) {
1693 if ( $format == MW_DATE_USER_FORMAT ) {
1694 $datePreference = $wgUser->getOption( 'date' );
1695 } else {
1696 $options = $this->getDefaultUserOptions();
1697 $datePreference = $options['date'];
1698 }
1699 if ( $datePreference == 0 ) {
1700 $datePreference = $wgAmericanDates ? 1 : 2;
1701 }
1702 } else {
1703 $datePreference = $wgAmericanDates ? 1 : 2;
1704 }
1705
1706 $month = $this->getMonthAbbreviation( substr( $ts, 4, 2 ) );
1707 $day = $this->formatNum( 0 + substr( $ts, 6, 2 ) );
1708 $year = $this->formatNum( substr( $ts, 0, 4 ) );
1709
1710 switch( $datePreference ) {
1711 case 1: return "$month $day, $year";
1712 case 2: return "$day $month $year";
1713 default: return "$year $month $day";
1714 }
1715 }
1716
1717 function time( $ts, $adj = false, $seconds = false )
1718 {
1719 if ( $adj ) { $ts = $this->userAdjust( $ts ); }
1720
1721 $t = substr( $ts, 8, 2 ) . ':' . substr( $ts, 10, 2 );
1722 if ( $seconds ) {
1723 $t .= ':' . substr( $ts, 12, 2 );
1724 }
1725 return $this->formatNum( $t );
1726 }
1727
1728 function timeanddate( $ts, $adj = false, $format = MW_DATE_USER_FORMAT )
1729 {
1730 return $this->time( $ts, $adj ) . ', ' . $this->date( $ts, $adj, $format );
1731 }
1732
1733 function rfc1123( $ts )
1734 {
1735 return date( 'D, d M Y H:i:s T', $ts );
1736 }
1737
1738 function getValidSpecialPages()
1739 {
1740 global $wgValidSpecialPagesEn;
1741 return $wgValidSpecialPagesEn;
1742 }
1743
1744 function getSysopSpecialPages()
1745 {
1746 global $wgSysopSpecialPagesEn;
1747 return $wgSysopSpecialPagesEn;
1748 }
1749
1750 function getDeveloperSpecialPages()
1751 {
1752 global $wgDeveloperSpecialPagesEn;
1753 return $wgDeveloperSpecialPagesEn;
1754 }
1755
1756 function getMessage( $key )
1757 {
1758 global $wgAllMessagesEn;
1759 return @$wgAllMessagesEn[$key];
1760 }
1761
1762 function getAllMessages()
1763 {
1764 global $wgAllMessagesEn;
1765 return $wgAllMessagesEn;
1766 }
1767
1768 function iconv( $in, $out, $string ) {
1769 # For most languages, this is a wrapper for iconv
1770 return iconv( $in, $out, $string );
1771 }
1772
1773 function ucfirst( $string ) {
1774 # For most languages, this is a wrapper for ucfirst()
1775 return ucfirst( $string );
1776 }
1777
1778 function lcfirst( $s ) {
1779 return strtolower( $s{0} ). substr( $s, 1 );
1780 }
1781
1782 function checkTitleEncoding( $s ) {
1783 global $wgInputEncoding;
1784
1785 # Check for UTF-8 URLs; Internet Explorer produces these if you
1786 # type non-ASCII chars in the URL bar or follow unescaped links.
1787 $ishigh = preg_match( '/[\x80-\xff]/', $s);
1788 $isutf = ($ishigh ? preg_match( '/^([\x00-\x7f]|[\xc0-\xdf][\x80-\xbf]|' .
1789 '[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xf7][\x80-\xbf]{3})+$/', $s ) : true );
1790
1791 if( ($wgInputEncoding != 'utf-8') and $ishigh and $isutf )
1792 return @iconv( 'UTF-8', $wgInputEncoding, $s );
1793
1794 if( ($wgInputEncoding == 'utf-8') and $ishigh and !$isutf )
1795 return utf8_encode( $s );
1796
1797 # Other languages can safely leave this function, or replace
1798 # it with one to detect and convert another legacy encoding.
1799 return $s;
1800 }
1801
1802 function stripForSearch( $in ) {
1803 # Some languages have special punctuation to strip out
1804 # or characters which need to be converted for MySQL's
1805 # indexing to grok it correctly. Make such changes here.
1806 return strtolower( $in );
1807 }
1808
1809 function firstChar( $s ) {
1810 # Get the first character of a string. In ASCII, return
1811 # first byte of the string. UTF8 and others have to
1812 # overload this.
1813 return $s[0];
1814 }
1815
1816 function setAltEncoding() {
1817 # Some languages may have an alternate char encoding option
1818 # (Esperanto X-coding, Japanese furigana conversion, etc)
1819 # If 'altencoding' is checked in user prefs, this gives a
1820 # chance to swap out the default encoding settings.
1821 #global $wgInputEncoding, $wgOutputEncoding, $wgEditEncoding;
1822 }
1823
1824 function recodeForEdit( $s ) {
1825 # For some languages we'll want to explicitly specify
1826 # which characters make it into the edit box raw
1827 # or are converted in some way or another.
1828 # Note that if wgOutputEncoding is different from
1829 # wgInputEncoding, this text will be further converted
1830 # to wgOutputEncoding.
1831 global $wgInputEncoding, $wgEditEncoding;
1832 if( $wgEditEncoding == '' or
1833 $wgEditEncoding == $wgInputEncoding ) {
1834 return $s;
1835 } else {
1836 return $this->iconv( $wgInputEncoding, $wgEditEncoding, $s );
1837 }
1838 }
1839
1840 function recodeInput( $s ) {
1841 # Take the previous into account.
1842 global $wgInputEncoding, $wgOutputEncoding, $wgEditEncoding;
1843 if($wgEditEncoding != "") {
1844 $enc = $wgEditEncoding;
1845 } else {
1846 $enc = $wgOutputEncoding;
1847 }
1848 if( $enc == $wgInputEncoding ) {
1849 return $s;
1850 } else {
1851 return $this->iconv( $enc, $wgInputEncoding, $s );
1852 }
1853 }
1854
1855 # For right-to-left language support
1856 function isRTL() { return false; }
1857
1858 # To allow "foo[[bar]]" to extend the link over the whole word "foobar"
1859 function linkPrefixExtension() { return false; }
1860
1861
1862 function &getMagicWords()
1863 {
1864 global $wgMagicWordsEn;
1865 return $wgMagicWordsEn;
1866 }
1867
1868 # Fill a MagicWord object with data from here
1869 function getMagic( &$mw )
1870 {
1871 $raw =& $this->getMagicWords();
1872 if( !isset( $raw[$mw->mId] ) ) {
1873 # Fall back to English if local list is incomplete
1874 $raw =& Language::getMagicWords();
1875 }
1876 $rawEntry = $raw[$mw->mId];
1877 $mw->mCaseSensitive = $rawEntry[0];
1878 $mw->mSynonyms = array_slice( $rawEntry, 1 );
1879 }
1880
1881 # Italic is unsuitable for some languages
1882 function emphasize( $text )
1883 {
1884 return '<em>'.$text.'</em>';
1885 }
1886
1887
1888 # Normally we use the plain ASCII digits. Some languages such as Arabic will
1889 # want to output numbers using script-appropriate characters: override this
1890 # function with a translator. See LanguageAr.php for an example.
1891 function formatNum( $number ) {
1892 return $number;
1893 }
1894
1895 function listToText( $l ) {
1896 $s = '';
1897 $m = count($l) - 1;
1898 for ($i = $m; $i >= 0; $i--) {
1899 if ($i == $m) {
1900 $s = $l[$i];
1901 } else if ($i == $m - 1) {
1902 $s = $l[$i] . ' ' . $this->getMessage('and') . ' ' . $s;
1903 } else {
1904 $s = $l[$i] . ', ' . $s;
1905 }
1906 }
1907 return $s;
1908 }
1909
1910 # Crop a string from the beginning or end to a certain number of bytes.
1911 # (Bytes are used because our storage has limited byte lengths for some
1912 # columns in the database.) Multibyte charsets will need to make sure that
1913 # only whole characters are included!
1914 #
1915 # $length does not include the optional ellipsis.
1916 # If $length is negative, snip from the beginning
1917 function truncate( $string, $length, $ellipsis = '' ) {
1918 if( $length == 0 ) {
1919 return $ellipsis;
1920 }
1921 if ( strlen( $string ) <= abs( $length ) ) {
1922 return $string;
1923 }
1924 if( $length > 0 ) {
1925 $string = substr( $string, 0, $length );
1926 return $string . $ellipsis;
1927 } else {
1928 $string = substr( $string, $length );
1929 return $ellipsis . $string;
1930 }
1931 }
1932
1933 # Grammatical transformations, needed for inflected languages
1934 # Invoked by putting {{grammar:case|word}} in a message
1935 function convertGrammar( $word, $case ) {
1936 return $word;
1937 }
1938 }
1939
1940 # This should fail gracefully if there's not a localization available
1941 include_once( 'Language' . ucfirst( $wgLanguageCode ) . '.php' );
1942
1943 }
1944 ?>