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