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