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