* (bug 814) Integrate AuthPlugin changes to support Ryan Lane's external
[lhc/web/wiklou.git] / languages / Language.php
1 <?php
2 /**
3 * @package MediaWiki
4 * @subpackage Language
5 */
6
7 if( defined( 'MEDIAWIKI' ) ) {
8
9 #
10 # In general you should not make customizations in these language files
11 # directly, but should use the MediaWiki: special namespace to customize
12 # user interface messages through the wiki.
13 # See http://meta.wikipedia.org/wiki/MediaWiki_namespace
14 #
15 # NOTE TO TRANSLATORS: Do not copy this whole file when making translations!
16 # A lot of common constants and a base class with inheritable methods are
17 # defined here, which should not be redefined. See the other LanguageXx.php
18 # files for examples.
19 #
20
21 #--------------------------------------------------------------------------
22 # Language-specific text
23 #--------------------------------------------------------------------------
24
25 # The names of the namespaces can be set here, but the numbers
26 # are magical, so don't change or move them! The Namespace class
27 # encapsulates some of the magic-ness.
28 #
29
30 if($wgMetaNamespace === FALSE)
31 $wgMetaNamespace = str_replace( ' ', '_', $wgSitename );
32
33 /* private */ $wgNamespaceNamesEn = array(
34 NS_MEDIA => 'Media',
35 NS_SPECIAL => 'Special',
36 NS_MAIN => '',
37 NS_TALK => 'Talk',
38 NS_USER => 'User',
39 NS_USER_TALK => 'User_talk',
40 NS_PROJECT => $wgMetaNamespace,
41 NS_PROJECT_TALK => $wgMetaNamespace . '_talk',
42 NS_IMAGE => 'Image',
43 NS_IMAGE_TALK => 'Image_talk',
44 NS_MEDIAWIKI => 'MediaWiki',
45 NS_MEDIAWIKI_TALK => 'MediaWiki_talk',
46 NS_TEMPLATE => 'Template',
47 NS_TEMPLATE_TALK => 'Template_talk',
48 NS_HELP => 'Help',
49 NS_HELP_TALK => 'Help_talk',
50 NS_CATEGORY => 'Category',
51 NS_CATEGORY_TALK => 'Category_talk',
52 );
53
54 if(isset($wgExtraNamespaces)) {
55 $wgNamespaceNamesEn=$wgNamespaceNamesEn+$wgExtraNamespaces;
56 }
57
58 /* private */ $wgDefaultUserOptionsEn = array(
59 'quickbar' => 1,
60 'underline' => 1,
61 'cols' => 80,
62 'rows' => 25,
63 'searchlimit' => 20,
64 'contextlines' => 5,
65 'contextchars' => 50,
66 'skin' => $wgDefaultSkin,
67 'math' => 1,
68 'rcdays' => 7,
69 'rclimit' => 50,
70 'highlightbroken' => 1,
71 'stubthreshold' => 0,
72 'previewontop' => 1,
73 'editsection' => 1,
74 'editsectiononrightclick'=> 0,
75 'showtoc' => 1,
76 'showtoolbar' => 1,
77 'date' => 0,
78 'imagesize' => 2,
79 'thumbsize' => 2,
80 'rememberpassword' => 0,
81 'enotifwatchlistpages' => 0,
82 'enotifusertalkpages' => 1,
83 'enotifminoredits' => 0,
84 'enotifrevealaddr' => 0,
85 'shownumberswatching' => 1,
86 'rcusemodstyle' => 1,
87 'fancysig' => 0,
88 'externaleditor' => 0,
89 'externaldiff' => 0,
90 );
91
92 /* private */ $wgQuickbarSettingsEn = array(
93 'None', 'Fixed left', 'Fixed right', 'Floating left'
94 );
95
96 /* private */ $wgSkinNamesEn = array(
97 'standard' => 'Classic',
98 'nostalgia' => 'Nostalgia',
99 'cologneblue' => 'Cologne Blue',
100 'davinci' => 'DaVinci',
101 'mono' => 'Mono',
102 'monobook' => 'MonoBook',
103 'myskin' => 'MySkin',
104 'chick' => 'Chick'
105 );
106
107 /* private */ $wgMathNamesEn = array(
108 MW_MATH_PNG => 'mw_math_png',
109 MW_MATH_SIMPLE => 'mw_math_simple',
110 MW_MATH_HTML => 'mw_math_html',
111 MW_MATH_SOURCE => 'mw_math_source',
112 MW_MATH_MODERN => 'mw_math_modern',
113 MW_MATH_MATHML => 'mw_math_mathml'
114 );
115
116 # Whether to use user or default setting in Language::date()
117
118 /* private */ $wgDateFormatsEn = array(
119 'Default',
120 '16:12, January 15, 2001',
121 '16:12, 15 January 2001',
122 '16:12, 2001 January 15',
123 'ISO 8601' => '2001-01-15 16:12:34'
124 );
125
126 /* private */ $wgUserTogglesEn = array(
127 'underline',
128 'highlightbroken',
129 'justify',
130 'hideminor',
131 'usenewrc',
132 'numberheadings',
133 'showtoolbar',
134 'editondblclick',
135 'editsection',
136 'editsectiononrightclick',
137 'showtoc',
138 'rememberpassword',
139 'editwidth',
140 'watchdefault',
141 'minordefault',
142 'previewontop',
143 'previewonfirst',
144 'nocache',
145 'enotifwatchlistpages',
146 'enotifusertalkpages',
147 'enotifminoredits',
148 'enotifrevealaddr',
149 'shownumberswatching',
150 'rcusemodstyle',
151 'fancysig',
152 'externaleditor',
153 'externaldiff',
154 );
155
156 /* private */ $wgBookstoreListEn = array(
157 'AddALL' => 'http://www.addall.com/New/Partner.cgi?query=$1&type=ISBN',
158 'PriceSCAN' => 'http://www.pricescan.com/books/bookDetail.asp?isbn=$1',
159 'Barnes & Noble' => 'http://shop.barnesandnoble.com/bookSearch/isbnInquiry.asp?isbn=$1',
160 'Amazon.com' => 'http://www.amazon.com/exec/obidos/ISBN=$1'
161 );
162
163 # Read language names
164 global $wgLanguageNames;
165 require_once( 'Names.php' );
166
167 $wgLanguageNamesEn =& $wgLanguageNames;
168
169
170 /* private */ $wgWeekdayNamesEn = array(
171 'sunday', 'monday', 'tuesday', 'wednesday', 'thursday',
172 'friday', 'saturday'
173 );
174
175
176 /* private */ $wgMonthNamesEn = array(
177 'january', 'february', 'march', 'april', 'may_long', 'june',
178 'july', 'august', 'september', 'october', 'november',
179 'december'
180 );
181 /* private */ $wgMonthNamesGenEn = array(
182 'january-gen', 'february-gen', 'march-gen', 'april-gen', 'may-gen', 'june-gen',
183 'july-gen', 'august-gen', 'september-gen', 'october-gen', 'november-gen',
184 'december-gen'
185 );
186
187 /* private */ $wgMonthAbbreviationsEn = array(
188 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug',
189 'sep', 'oct', 'nov', 'dec'
190 );
191
192 # Note to translators:
193 # Please include the English words as synonyms. This allows people
194 # from other wikis to contribute more easily.
195 #
196 /* private */ $wgMagicWordsEn = array(
197 # ID CASE SYNONYMS
198 MAG_REDIRECT => array( 0, '#redirect' ),
199 MAG_NOTOC => array( 0, '__NOTOC__' ),
200 MAG_FORCETOC => array( 0, '__FORCETOC__' ),
201 MAG_TOC => array( 0, '__TOC__' ),
202 MAG_NOEDITSECTION => array( 0, '__NOEDITSECTION__' ),
203 MAG_START => array( 0, '__START__' ),
204 MAG_CURRENTMONTH => array( 1, 'CURRENTMONTH' ),
205 MAG_CURRENTMONTHNAME => array( 1, 'CURRENTMONTHNAME' ),
206 MAG_CURRENTMONTHNAMEGEN => array( 1, 'CURRENTMONTHNAMEGEN' ),
207 MAG_CURRENTMONTHABBREV => array( 1, 'CURRENTMONTHABBREV' ),
208 MAG_CURRENTDAY => array( 1, 'CURRENTDAY' ),
209 MAG_CURRENTDAYNAME => array( 1, 'CURRENTDAYNAME' ),
210 MAG_CURRENTYEAR => array( 1, 'CURRENTYEAR' ),
211 MAG_CURRENTTIME => array( 1, 'CURRENTTIME' ),
212 MAG_NUMBEROFARTICLES => array( 1, 'NUMBEROFARTICLES' ),
213 MAG_PAGENAME => array( 1, 'PAGENAME' ),
214 MAG_PAGENAMEE => array( 1, 'PAGENAMEE' ),
215 MAG_NAMESPACE => array( 1, 'NAMESPACE' ),
216 MAG_MSG => array( 0, 'MSG:' ),
217 MAG_SUBST => array( 0, 'SUBST:' ),
218 MAG_MSGNW => array( 0, 'MSGNW:' ),
219 MAG_END => array( 0, '__END__' ),
220 MAG_IMG_THUMBNAIL => array( 1, 'thumbnail', 'thumb' ),
221 MAG_IMG_RIGHT => array( 1, 'right' ),
222 MAG_IMG_LEFT => array( 1, 'left' ),
223 MAG_IMG_NONE => array( 1, 'none' ),
224 MAG_IMG_WIDTH => array( 1, '$1px' ),
225 MAG_IMG_CENTER => array( 1, 'center', 'centre' ),
226 MAG_IMG_FRAMED => array( 1, 'framed', 'enframed', 'frame' ),
227 MAG_INT => array( 0, 'INT:' ),
228 MAG_SITENAME => array( 1, 'SITENAME' ),
229 MAG_NS => array( 0, 'NS:' ),
230 MAG_LOCALURL => array( 0, 'LOCALURL:' ),
231 MAG_LOCALURLE => array( 0, 'LOCALURLE:' ),
232 MAG_SERVER => array( 0, 'SERVER' ),
233 MAG_GRAMMAR => array( 0, 'GRAMMAR:' ),
234 MAG_NOTITLECONVERT => array( 0, '__NOTITLECONVERT__', '__NOTC__'),
235 MAG_NOCONTENTCONVERT => array( 0, '__NOCONTENTCONVERT__', '__NOCC__'),
236 MAG_CURRENTWEEK => array( 1, 'CURRENTWEEK' ),
237 MAG_CURRENTDOW => array( 1, 'CURRENTDOW' ),
238 MAG_REVISIONID => array( 1, 'REVISIONID' ),
239 );
240
241 #-------------------------------------------------------------------
242 # Default messages
243 #-------------------------------------------------------------------
244 # Allowed characters in keys are: A-Z, a-z, 0-9, underscore (_) and
245 # hyphen (-). If you need more characters, you may be able to change
246 # the regex in MagicWord::initRegex
247
248 # required for copyrightwarning
249 global $wgRightsText;
250
251 /* private */ $wgAllMessagesEn = array(
252
253 # The navigation toolbar, int: is used here to make sure that the appropriate
254 # messages are automatically pulled from the user-selected language file.
255
256 'sidebar' => "
257 This is the markup that's parsed when the sidebar(s) are generated, lines that
258 do not begin with * or ** are automatically discarded.
259
260 Only put [a-z-] in the level one headings since it will be used as an XHMTL id.
261
262 * navigation
263 ** mainpage|mainpage
264 ** portal-url|portal
265 ** currentevents-url|currentevents
266 ** recentchanges-url|recentchanges
267 ** randompage-url|randompage
268 ** helppage|help
269 ** sitesupport-url|sitesupport
270 ",
271
272 # User preference toggles
273 'tog-underline' => 'Underline links',
274 'tog-highlightbroken' => 'Format broken links <a href="" class="new">like this</a> (alternative: like this<a href="" class="internal">?</a>).',
275 'tog-justify' => 'Justify paragraphs',
276 'tog-hideminor' => 'Hide minor edits in recent changes',
277 'tog-usenewrc' => 'Enhanced recent changes (JavaScript)',
278 'tog-numberheadings' => 'Auto-number headings',
279 'tog-showtoolbar' => 'Show edit toolbar (JavaScript)',
280 'tog-editondblclick' => 'Edit pages on double click (JavaScript)',
281 'tog-editsection' => 'Enable section editing via [edit] links',
282 'tog-editsectiononrightclick' => 'Enable section editing by right clicking<br /> on section titles (JavaScript)',
283 'tog-showtoc' => 'Show table of contents<br />(for pages with more than 3 headings)',
284 'tog-rememberpassword' => 'Remember across sessions',
285 'tog-editwidth' => 'Edit box has full width',
286 'tog-watchdefault' => 'Add pages you edit to your watchlist',
287 'tog-minordefault' => 'Mark all edits minor by default',
288 'tog-previewontop' => 'Show preview before edit box',
289 'tog-previewonfirst' => 'Show preview on first edit',
290 'tog-nocache' => 'Disable page caching',
291 'tog-enotifwatchlistpages' => 'Send me an email on page changes',
292 'tog-enotifusertalkpages' => 'Send me an email when my user talk page is changed',
293 'tog-enotifminoredits' => 'Send me an email also for minor edits of pages',
294 'tog-enotifrevealaddr' => 'Reveal my email address in notification mails',
295 'tog-shownumberswatching' => 'Show the number of watching users',
296 'tog-rcusemodstyle' => 'Show recent changes in UseMod style: only the most recent change of any page is listed.',
297 'tog-fancysig' => 'Raw signatures (without automatic link)',
298 'tog-externaleditor' => 'Use external editor by default',
299 'tog-externaldiff' => 'Use external diff by default',
300
301 # dates
302 'sunday' => 'Sunday',
303 'monday' => 'Monday',
304 'tuesday' => 'Tuesday',
305 'wednesday' => 'Wednesday',
306 'thursday' => 'Thursday',
307 'friday' => 'Friday',
308 'saturday' => 'Saturday',
309 'january' => 'January',
310 'february' => 'February',
311 'march' => 'March',
312 'april' => 'April',
313 'may_long' => 'May',
314 'june' => 'June',
315 'july' => 'July',
316 'august' => 'August',
317 'september' => 'September',
318 'october' => 'October',
319 'november' => 'November',
320 'december' => 'December',
321 'jan' => 'Jan',
322 'feb' => 'Feb',
323 'mar' => 'Mar',
324 'apr' => 'Apr',
325 'may' => 'May',
326 'jun' => 'Jun',
327 'jul' => 'Jul',
328 'aug' => 'Aug',
329 'sep' => 'Sep',
330 'oct' => 'Oct',
331 'nov' => 'Nov',
332 'dec' => 'Dec',
333 # Bits of text used by many pages:
334 #
335 'categories' => 'Categories',
336 'category' => 'category',
337 'category_header' => 'Articles in category "$1"',
338 'subcategories' => 'Subcategories',
339
340
341 'linktrail' => '/^([a-z]+)(.*)$/sD',
342 'mainpage' => 'Main Page',
343 'mainpagetext' => 'Wiki software successfully installed.',
344 "mainpagedocfooter" => "Please see [http://meta.wikipedia.org/wiki/MediaWiki_i18n documentation on customizing the interface]
345 and the [http://meta.wikipedia.org/wiki/MediaWiki_User%27s_Guide User's Guide] for usage and configuration help.",
346
347 'portal' => 'Community portal',
348 'portal-url' => 'Project:Community Portal',
349 'about' => 'About',
350 'aboutsite' => 'About {{SITENAME}}',
351 'aboutpage' => 'Project:About',
352 'article' => 'Content page',
353 'help' => 'Help',
354 'helppage' => 'Help:Contents',
355 'wikititlesuffix' => '{{SITENAME}}',
356 'bugreports' => 'Bug reports',
357 'bugreportspage' => 'Project:Bug_reports',
358 'sitesupport' => 'Donations',
359 'sitesupport-url' => 'Project:Site support',
360 'faq' => 'FAQ',
361 'faqpage' => 'Project:FAQ',
362 'edithelp' => 'Editing help',
363 'newwindow' => '(opens in new window)',
364 'edithelppage' => 'Help:Editing',
365 'cancel' => 'Cancel',
366 'qbfind' => 'Find',
367 'qbbrowse' => 'Browse',
368 'qbedit' => 'Edit',
369 'qbpageoptions' => 'This page',
370 'qbpageinfo' => 'Context',
371 'qbmyoptions' => 'My pages',
372 'qbspecialpages' => 'Special pages',
373 'moredotdotdot' => 'More...',
374 'mypage' => 'My page',
375 'mytalk' => 'My talk',
376 'anontalk' => 'Talk for this IP',
377 'navigation' => 'Navigation',
378
379 # Metadata in edit box
380 'metadata' => '<b>Metadata</b> (for an explanation see <a href="$1">here</a>)',
381 'metadata_page' => 'Wikipedia:Metadata',
382
383 # NOTE: To turn off "Current Events" in the sidebar,
384 # set "currentevents" => "-"
385
386 'currentevents' => 'Current events',
387 'currentevents-url' => 'Current events',
388
389 # NOTE: To turn off "Disclaimers" in the title links,
390 # set "disclaimers" => "-"
391
392 'disclaimers' => 'Disclaimers',
393 'disclaimerpage' => "Project:General_disclaimer",
394 'errorpagetitle' => "Error",
395 'returnto' => "Return to $1.",
396 'tagline' => "From {{SITENAME}}",
397 'whatlinkshere' => 'Pages that link here',
398 'help' => 'Help',
399 'search' => 'Search',
400 'go' => 'Go',
401 "history" => 'Page history',
402 'history_short' => 'History',
403 'info_short' => 'Information',
404 'printableversion' => 'Printable version',
405 'edit' => 'Edit',
406 'editthispage' => 'Edit this page',
407 'delete' => 'Delete',
408 'deletethispage' => 'Delete this page',
409 'undelete_short1' => 'Undelete one edit',
410 'undelete_short' => 'Undelete $1 edits',
411 'protect' => 'Protect',
412 'protectthispage' => 'Protect this page',
413 'unprotect' => 'Unprotect',
414 'unprotectthispage' => 'Unprotect this page',
415 'newpage' => 'New page',
416 'talkpage' => 'Discuss this page',
417 'specialpage' => 'Special Page',
418 'personaltools' => 'Personal tools',
419 'postcomment' => 'Post a comment',
420 'addsection' => '+',
421 'articlepage' => 'View content page',
422 'subjectpage' => 'View subject', # For compatibility
423 'talk' => 'Discussion',
424 'views' => 'Views',
425 'toolbox' => 'Toolbox',
426 'userpage' => 'View user page',
427 'wikipediapage' => 'View project page',
428 'imagepage' => 'View image page',
429 'viewtalkpage' => 'View discussion',
430 'otherlanguages' => 'Other languages',
431 'redirectedfrom' => '(Redirected from $1)',
432 'lastmodified' => 'This page was last modified $1.',
433 'viewcount' => 'This page has been accessed $1 times.',
434 'copyright' => 'Content is available under $1.',
435 'poweredby' => "{{SITENAME}} is powered by [http://www.mediawiki.org/ MediaWiki], an open source wiki engine.",
436 'printsubtitle' => "(From {{SERVER}})",
437 'protectedpage' => 'Protected page',
438 'administrators' => "Project:Administrators",
439 'sysoptitle' => 'Sysop access required',
440 'sysoptext' => "The action you have requested can only be
441 performed by users with \"sysop\" status.
442 See $1.",
443 'developertitle' => 'Developer access required',
444 'developertext' => "The action you have requested can only be
445 performed by users with \"developer\" status.
446 See $1.",
447 'bureaucrattitle' => 'Bureaucrat access required',
448 "bureaucrattext" => "The action you have requested can only be
449 performed by sysops with \"bureaucrat\" status.",
450 'nbytes' => '$1 bytes',
451 'ok' => 'OK',
452 'sitetitle' => "{{SITENAME}}",
453 'pagetitle' => "$1 - {{SITENAME}}",
454 'sitesubtitle' => 'The Free Encyclopedia', # FIXME
455 'retrievedfrom' => "Retrieved from \"$1\"",
456 'newmessages' => "You have $1.",
457 'newmessageslink' => 'new messages',
458 'editsection'=>'edit',
459 'toc' => 'Table of contents',
460 'showtoc' => 'show',
461 'hidetoc' => 'hide',
462 'thisisdeleted' => "View or restore $1?",
463 'restorelink' => "$1 deleted edits",
464 'feedlinks' => 'Feed:',
465 'sitenotice' => '-', # the equivalent to wgSiteNotice
466
467 # Short words for each namespace, by default used in the 'article' tab in monobook
468 'nstab-main' => 'Article',
469 'nstab-user' => 'User page',
470 'nstab-media' => 'Media',
471 'nstab-special' => 'Special',
472 'nstab-wp' => 'About',
473 'nstab-image' => 'File',
474 'nstab-mediawiki' => 'Message',
475 'nstab-template' => 'Template',
476 'nstab-help' => 'Help',
477 'nstab-category' => 'Category',
478
479 # Main script and global functions
480 #
481 'nosuchaction' => 'No such action',
482 'nosuchactiontext' => 'The action specified by the URL is not
483 recognized by the wiki',
484 'nosuchspecialpage' => 'No such special page',
485 'nospecialpagetext' => 'You have requested an invalid special page, a list of valid special pages may be found at [[{{ns:special}}:Specialpages]].',
486
487 # General errors
488 #
489 'error' => 'Error',
490 'databaseerror' => 'Database error',
491 'dberrortext' => "A database query syntax error has occurred.
492 This may indicate a bug in the software.
493 The last attempted database query was:
494 <blockquote><tt>$1</tt></blockquote>
495 from within function \"<tt>$2</tt>\".
496 MySQL returned error \"<tt>$3: $4</tt>\".",
497 'dberrortextcl' => "A database query syntax error has occurred.
498 The last attempted database query was:
499 \"$1\"
500 from within function \"$2\".
501 MySQL returned error \"$3: $4\".\n",
502 'noconnect' => 'Sorry! The wiki is experiencing some technical difficulties, and cannot contact the database server. <br />
503 $1',
504 'nodb' => "Could not select database $1",
505 'cachederror' => 'The following is a cached copy of the requested page, and may not be up to date.',
506 'laggedslavemode' => 'Warning: Page may not contain recent updates.',
507 'readonly' => 'Database locked',
508 'enterlockreason' => 'Enter a reason for the lock, including an estimate
509 of when the lock will be released',
510 'readonlytext' => "The database is currently locked to new
511 entries and other modifications, probably for routine database maintenance,
512 after which it will be back to normal.
513 The administrator who locked it offered this explanation:
514 <p>$1",
515 'missingarticle' => "The database did not find the text of a page
516 that it should have found, named \"$1\".
517
518 <p>This is usually caused by following an outdated diff or history link to a
519 page that has been deleted.
520
521 <p>If this is not the case, you may have found a bug in the software.
522 Please report this to an administrator, making note of the URL.",
523 'readonly_lag' => "The database has been automatically locked while the slave database servers catch up to the master",
524 'internalerror' => 'Internal error',
525 'filecopyerror' => "Could not copy file \"$1\" to \"$2\".",
526 'filerenameerror' => "Could not rename file \"$1\" to \"$2\".",
527 'filedeleteerror' => "Could not delete file \"$1\".",
528 'filenotfound' => "Could not find file \"$1\".",
529 'unexpected' => "Unexpected value: \"$1\"=\"$2\".",
530 'formerror' => 'Error: could not submit form',
531 'badarticleerror' => 'This action cannot be performed on this page.',
532 'cannotdelete' => 'Could not delete the page or file specified. (It may have already been deleted by someone else.)',
533 'badtitle' => 'Bad title',
534 'badtitletext' => "The requested page title was invalid, empty, or
535 an incorrectly linked inter-language or inter-wiki title.",
536 'perfdisabled' => 'Sorry! This feature has been temporarily disabled
537 because it slows the database down to the point that no one can use
538 the wiki.',
539 'perfdisabledsub' => "Here's a saved copy from $1:", # obsolete?
540 'perfcached' => 'The following data is cached and may not be completely up to date:',
541 'wrong_wfQuery_params' => "Incorrect parameters to wfQuery()<br />
542 Function: $1<br />
543 Query: $2
544 ",
545 'viewsource' => 'View source',
546 'protectedtext' => "This page has been locked to prevent editing; there are
547 a number of reasons why this may be so, please see
548 [[Project:Protected page]].
549
550 You can view and copy the source of this page:",
551 'seriousxhtmlerrors' => 'There were serious xhtml markup errors detected by tidy.',
552 'sqlhidden' => '(SQL query hidden)',
553
554 # Login and logout pages
555 #
556 'logouttitle' => 'User logout',
557 'logouttext' => "You are now logged out.<br />
558 You can continue to use {{SITENAME}} anonymously, or you can log in
559 again as the same or as a different user. Note that some pages may
560 continue to be displayed as if you were still logged in, until you clear
561 your browser cache.\n",
562
563 'welcomecreation' => "== Welcome, $1! ==
564
565 Your account has been created. Don't forget to change your {{SITENAME}} preferences.",
566
567 'loginpagetitle' => 'User login',
568 'yourname' => 'User name',
569 'yourpassword' => 'Password',
570 'yourpasswordagain' => 'Retype password',
571 'newusersonly' => ' (new users only)',
572 'remembermypassword' => 'Remember my password across sessions.',
573 'yourdomainname' => 'Your domain',
574 'externaldberror' => 'There was either an external authentication database error or you are not allowed to update your external account.',
575 'loginproblem' => '<b>There has been a problem with your login.</b><br />Try again!',
576 'alreadyloggedin' => "<font color=red><b>User $1, you are already logged in!</b></font><br />\n",
577
578 'login' => 'Log in',
579 'loginprompt' => "You must have cookies enabled to log in to {{SITENAME}}.",
580 'userlogin' => 'Create an account or log in',
581 'logout' => 'Log out',
582 'userlogout' => 'Log out',
583 'notloggedin' => 'Not logged in',
584 'createaccount' => 'Create new account',
585 'createaccountmail' => 'by email',
586 'badretype' => 'The passwords you entered do not match.',
587 'userexists' => 'The user name you entered is already in use. Please choose a different name.',
588 'youremail' => 'Email²',
589 'yourrealname' => 'Real name¹',
590 'yourlanguage' => 'Language',
591 'yourvariant' => 'Variant',
592 'yournick' => 'Nickname',
593 'email' => 'Email',
594 'emailforlost' => "Fields marked with superscripts are optional. Storing an email address enables people to contact you through the website without you having to reveal your
595 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.",
596 'prefs-help-email-enotif' => 'This address is also used to send you email notifications if you enabled the options.',
597 'prefs-help-realname' => '¹ Real name (optional): if you choose to provide it this will be used for giving you attribution for your work.',
598 'loginerror' => 'Login error',
599 'prefs-help-email' => '² Email (optional): Enables others to contact you through your user or user_talk page without the need of revealing your identity.',
600 '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.",
601 'nocookieslogin' => "{{SITENAME}} uses cookies to log in users. You have cookies disabled. Please enable them and try again.",
602 'noname' => 'You have not specified a valid user name.',
603 'loginsuccesstitle' => 'Login successful',
604 'loginsuccess' => "You are now logged in to {{SITENAME}} as \"$1\".",
605 'nosuchuser' => "There is no user by the name \"$1\".
606 Check your spelling, or use the form below to create a new user account.",
607 'nosuchusershort' => "There is no user by the name \"$1\". Check your spelling.",
608 'wrongpassword' => 'The password you entered is incorrect (or missing). Please try again.',
609 'mailmypassword' => 'Mail me a temporary password',
610 'mailmypasswordauthent' => 'Mail me a temporary password',
611 'passwordremindermailsubject' => "Email address authentication and temporary login password from {{SITENAME}}",
612 'passwordremindermailbody' => "Someone, probably you from IP address $1,
613 requested that we send you a temporary one-time login password for {{SITENAME}}.
614
615 This mail is also be sent for the purpose of authentication of your email address.
616 The password for user \"$2\" is now \"$4\".
617
618 You can now log in with this temporary password, which is valid for only one login.
619 You may wish to keep using your old password if you remember it or to set a new one.
620
621 {{SERVER}}{{localurl:Special:Userlogin|wpName=$3&wpPassword=$4&returnto=Special:Preferences}}",
622 'noemail' => "There is no e-mail address recorded for user \"$1\".",
623 'passwordsent' => "A temporary password has been sent to the e-mail address registered for \"$1\".
624 Please log in again after you receive it.",
625 'eauthentsent' => "A confirmation email has been sent to the nominated email address.
626 Before any other mail is sent to the account, you will have to follow the instructions in the email,
627 to confirm that the account is actually yours.",
628 'loginend' => '&nbsp;',
629 'mailerror' => "Error sending mail: $1",
630 'acct_creation_throttle_hit' => 'Sorry, you have already created $1 accounts. You can\'t make any more.',
631 'emailauthenticated' => 'Your email address was authenticated on $1.',
632 'emailnotauthenticated' => 'Your email address is <strong>not yet authenticated</strong>. No email
633 will be sent for any of the following features.',
634 'noemailprefs' => '<strong>No email address has been specified</strong>, the following
635 features will not work.',
636 'emailconfirmlink' => 'Confirm your e-mail address',
637 'invalidemailaddress' => 'The email address cannot be accepted as it appears to have an invalid
638 format. Please enter a well-formatted address or empty that field.',
639
640 # Edit page toolbar
641 'bold_sample'=>'Bold text',
642 'bold_tip'=>'Bold text',
643 'italic_sample'=>'Italic text',
644 'italic_tip'=>'Italic text',
645 'link_sample'=>'Link title',
646 'link_tip'=>'Internal link',
647 'extlink_sample'=>'http://www.example.com link title',
648 'extlink_tip'=>'External link (remember http:// prefix)',
649 'headline_sample'=>'Headline text',
650 'headline_tip'=>'Level 2 headline',
651 'math_sample'=>'Insert formula here',
652 'math_tip'=>'Mathematical formula (LaTeX)',
653 'nowiki_sample'=>'Insert non-formatted text here',
654 'nowiki_tip'=>'Ignore wiki formatting',
655 'image_sample'=>'Example.jpg',
656 'image_tip'=>'Embedded image',
657 'media_sample'=>'Example.ogg',
658 'media_tip'=>'Media file link',
659 'sig_tip'=>'Your signature with timestamp',
660 'hr_tip'=>'Horizontal line (use sparingly)',
661 'infobox'=>'Click a button to get an example text',
662 # alert box shown in browsers where text selection does not work, test e.g. with mozilla or konqueror
663 '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",
664
665 # Edit pages
666 #
667 'summary' => 'Summary',
668 'subject' => 'Subject/headline',
669 'minoredit' => 'This is a minor edit.',
670 'watchthis' => 'Watch this page',
671 'savearticle' => 'Save page',
672 'preview' => 'Preview',
673 'showpreview' => 'Show preview',
674 'showdiff' => 'Show changes',
675 'blockedtitle' => 'User is blocked',
676 'blockedtext' => "Your user name or IP address has been blocked by $1.
677 The reason given is this:<br />''$2''<p>You may contact $1 or one of the other
678 [[Project:Administrators|administrators]] to discuss the block.
679
680 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]].
681
682 Your IP address is $3. Please include this address in any queries you make.
683 ",
684 'whitelistedittitle' => 'Login required to edit',
685 'whitelistedittext' => 'You have to [[Special:Userlogin|login]] to edit pages.',
686 'whitelistreadtitle' => 'Login required to read',
687 'whitelistreadtext' => 'You have to [[Special:Userlogin|login]] to read pages.',
688 'whitelistacctitle' => 'You are not allowed to create an account',
689 'whitelistacctext' => 'To be allowed to create accounts in this Wiki you have to [[Special:Userlogin|log]] in and have the appropriate permissions.',
690 'loginreqtitle' => 'Login Required',
691 'loginreqtext' => 'You must [[special:Userlogin|login]] to view other pages.',
692 'accmailtitle' => 'Password sent.',
693 'accmailtext' => "The Password for '$1' has been sent to $2.",
694 'newarticle' => '(New)',
695 'newarticletext' =>
696 "You've followed a link to a page that doesn't exist yet.
697 To create the page, start typing in the box below
698 (see the [[Project:Help|help page]] for more info).
699 If you are here by mistake, just click your browser's '''back''' button.",
700 'talkpagetext' => '<!-- MediaWiki:talkpagetext -->',
701 '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.'' ",
702 'noarticletext' => '(There is currently no text in this page)',
703 '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''.",
704 'usercssjsyoucanpreview' => "<strong>Tip:</strong> Use the 'Show preview' button to test your new CSS/JS before saving.",
705 'usercsspreview' => "'''Remember that you are only previewing your user CSS, it has not yet been saved!'''",
706 'userjspreview' => "'''Remember that you are only testing/previewing your user JavaScript, it has not yet been saved!'''",
707 'updated' => '(Updated)',
708 'note' => '<strong>Note:</strong> ',
709 'previewnote' => 'Remember that this is only a preview, and has not yet been saved!',
710 'previewconflict' => 'This preview reflects the text in the upper
711 text editing area as it will appear if you choose to save.',
712 'editing' => "Editing $1",
713 'editingsection' => "Editing $1 (section)",
714 'editingcomment' => "Editing $1 (comment)",
715 'editconflict' => 'Edit conflict: $1',
716 'explainconflict' => "Someone else has changed this page since you
717 started editing it.
718 The upper text area contains the page text as it currently exists.
719 Your changes are shown in the lower text area.
720 You will have to merge your changes into the existing text.
721 <b>Only</b> the text in the upper text area will be saved when you
722 press \"Save page\".<br />",
723 'yourtext' => 'Your text',
724 'storedversion' => 'Stored version',
725 'nonunicodebrowser' => "<strong>WARNING: Your browser is not unicode compliant, please change it before editing an article.</strong>",
726 'editingold' => "<strong>WARNING: You are editing an out-of-date
727 revision of this page.
728 If you save it, any changes made since this revision will be lost.</strong>",
729 'yourdiff' => 'Differences',
730 'copyrightwarning' => "Please note that all contributions to {{SITENAME}} are
731 considered to be released under the $2 (see $1 for details).
732 If you don't want your writing to be edited mercilessly and redistributed
733 at will, then don't submit it here.<br />
734 You are also promising us that you wrote this yourself, or copied it from a
735 public domain or similar free resource.
736 <strong>DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION!</strong>",
737 'copyrightwarning2' => "Please note that all contributions to {{SITENAME}}
738 may be edited, altered, or removed by other contributors.
739 If you don't want your writing to be edited mercilessly, then don't submit it here.<br />
740 You are also promising us that you wrote this yourself, or copied it from a
741 public domain or similar free resource (see $1 for details).
742 <strong>DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION!</strong>",
743 'longpagewarning' => "<strong>WARNING: This page is $1 kilobytes long; some
744 browsers may have problems editing pages approaching or longer than 32kb.
745 Please consider breaking the page into smaller sections.</strong>",
746 'readonlywarning' => '<strong>WARNING: The database has been locked for maintenance,
747 so you will not be able to save your edits right now. You may wish to cut-n-paste
748 the text into a text file and save it for later.</strong>',
749 'protectedpagewarning' => "<strong>WARNING: This page has been locked so that only users with sysop privileges can edit it. Be sure you are following the [[Project:Protected_page_guidelines|protected page guidelines]].</strong>",
750 'templatesused' => 'Templates used on this page:',
751
752 # History pages
753 #
754 'revhistory' => 'Revision history',
755 'nohistory' => 'There is no edit history for this page.',
756 'revnotfound' => 'Revision not found',
757 'revnotfoundtext' => "The old revision of the page you asked for could not be found.
758 Please check the URL you used to access this page.\n",
759 'loadhist' => 'Loading page history',
760 'currentrev' => 'Current revision',
761 'revisionasof' => 'Revision as of $1',
762 'revisionasofwithlink' => 'Revision as of $1; $2<br />$3 | $4',
763 'previousrevision' => '&larr;Older revision',
764 'nextrevision' => 'Newer revision&rarr;',
765 'currentrevisionlink' => 'view current revision',
766 'cur' => 'cur',
767 'next' => 'next',
768 'last' => 'last',
769 'orig' => 'orig',
770 'histlegend' => 'Diff selection: mark the radio boxes of the versions to compare and hit enter or the button at the bottom.<br />
771 Legend: (cur) = difference with current version,
772 (last) = difference with preceding version, M = minor edit.',
773 'history_copyright' => '-',
774 'deletedrev' => '[deleted]',
775
776 # Diffs
777 #
778 'difference' => '(Difference between revisions)',
779 'loadingrev' => 'loading revision for diff',
780 'lineno' => "Line $1:",
781 'editcurrent' => 'Edit the current version of this page',
782 'selectnewerversionfordiff' => 'Select a newer version for comparison',
783 'selectolderversionfordiff' => 'Select an older version for comparison',
784 'compareselectedversions' => 'Compare selected versions',
785
786 # Search results
787 #
788 'searchresults' => 'Search results',
789 'searchresulttext' => "For more information about searching {{SITENAME}}, see [[Project:Searching|Searching {{SITENAME}}]].",
790 'searchquery' => "For query \"$1\"",
791 'badquery' => 'Badly formed search query',
792 'badquerytext' => 'We could not process your query.
793 This is probably because you have attempted to search for a
794 word fewer than three letters long, which is not yet supported.
795 It could also be that you have mistyped the expression, for
796 example "fish and and scales".
797 Please try another query.',
798 'matchtotals' => "The query \"$1\" matched $2 page titles
799 and the text of $3 pages.",
800 'nogomatch' => 'No page with [[$1|this exact title]] exists, trying full text search.',
801 'titlematches' => 'Article title matches',
802 'notitlematches' => 'No page title matches',
803 'textmatches' => 'Page text matches',
804 'notextmatches' => 'No page text matches',
805 'prevn' => "previous $1",
806 'nextn' => "next $1",
807 'viewprevnext' => "View ($1) ($2) ($3).",
808 'showingresults' => "Showing below up to <b>$1</b> results starting with #<b>$2</b>.",
809 'showingresultsnum' => "Showing below <b>$3</b> results starting with #<b>$2</b>.",
810 'nonefound' => "'''Note''': unsuccessful searches are
811 often caused by searching for common words like \"have\" and \"from\",
812 which are not indexed, or by specifying more than one search term (only pages
813 containing all of the search terms will appear in the result).",
814 'powersearch' => 'Search',
815 'powersearchtext' => "
816 Search in namespaces :<br />
817 $1<br />
818 $2 List redirects &nbsp; Search for $3 $9",
819 "searchdisabled" => '{{SITENAME}} search is disabled. You can search via Google in the meantime. Note that their indexes of {{SITENAME}} content may be out of date.',
820
821 'googlesearch' => '
822 <form method="get" action="http://www.google.com/search" id="googlesearch">
823 <input type="hidden" name="domains" value="{{SERVER}}" />
824 <input type="hidden" name="num" value="50" />
825 <input type="hidden" name="ie" value="$2" />
826 <input type="hidden" name="oe" value="$2" />
827
828 <input type="text" name="q" size="31" maxlength="255" value="$1" />
829 <input type="submit" name="btnG" value="$3" />
830 <div>
831 <input type="radio" name="sitesearch" id="gwiki" value="{{SERVER}}" checked="checked" /><label for="gwiki">{{SITENAME}}</label>
832 <input type="radio" name="sitesearch" id="gWWW" value="" /><label for="gWWW">WWW</label>
833 </div>
834 </form>',
835 'blanknamespace' => '(Main)',
836
837 # Preferences page
838 #
839 'preferences' => 'Preferences',
840 'prefsnologin' => 'Not logged in',
841 'prefsnologintext' => "You must be [[Special:Userlogin|logged in]]
842 to set user preferences.",
843 'prefslogintext' => "You are logged in as \"$1\".
844 Your internal ID number is $2.
845
846 See [[Project:User preferences help]] for help deciphering the options.",
847 'prefsreset' => 'Preferences have been reset from storage.',
848 'qbsettings' => 'Quickbar',
849 'changepassword' => 'Change password',
850 'skin' => 'Skin',
851 'math' => 'Math',
852 'dateformat' => 'Date format',
853 'math_failure' => 'Failed to parse',
854 'math_unknown_error' => 'unknown error',
855 'math_unknown_function' => 'unknown function ',
856 'math_lexing_error' => 'lexing error',
857 'math_syntax_error' => 'syntax error',
858 'math_image_error' => 'PNG conversion failed; check for correct installation of latex, dvips, gs, and convert',
859 'math_bad_tmpdir' => 'Can\'t write to or create math temp directory',
860 'math_bad_output' => 'Can\'t write to or create math output directory',
861 'math_notexvc' => 'Missing texvc executable; please see math/README to configure.',
862 'prefs-personal' => 'User data',
863 'prefs-rc' => 'Recent changes & stubs',
864 'prefs-misc' => 'Misc',
865 'saveprefs' => 'Save',
866 'resetprefs' => 'Reset',
867 'oldpassword' => 'Old password',
868 'newpassword' => 'New password',
869 'retypenew' => 'Again',
870 'textboxsize' => 'Editing',
871 'rows' => 'Rows',
872 'columns' => 'Columns',
873 'searchresultshead' => 'Search',
874 'resultsperpage' => 'Hits per page',
875 'contextlines' => 'Lines per hit',
876 'contextchars' => 'Context per line',
877 'stubthreshold' => 'Threshold for stub display',
878 'recentchangescount' => 'Titles in recent changes',
879 'savedprefs' => 'Your preferences have been saved.',
880 'timezonelegend' => 'Time zone',
881 'timezonetext' => 'The number of hours your local time differs from server time (UTC).',
882 'localtime' => 'Local time',
883 'timezoneoffset' => 'Offset¹',
884 'servertime' => 'Server time',
885 'guesstimezone' => 'Fill in from browser',
886 'emailflag' => 'Disable e-mail from other users',
887 'defaultns' => 'Search in these namespaces by default:',
888 'default' => 'default',
889 'files' => 'Files',
890
891 # User levels special page
892 #
893
894 # switching pan
895 'groups-lookup-group' => 'Manage group rights',
896 'groups-group-edit' => 'Existing groups: ',
897 'editgroup' => 'Edit Group',
898 'addgroup' => 'Add Group',
899
900 'userrights-lookup-user' => 'Manage user groups',
901 'userrights-user-editname' => 'Enter a username: ',
902 'editusergroup' => 'Edit User Groups',
903
904 # group editing
905 'groups-editgroup' => 'Edit group',
906 'groups-addgroup' => 'Add group',
907 'groups-editgroup-preamble' => 'If the name or description starts with a colon, the
908 remainder will be treated as a message name, and hence the text will be localised
909 using the MediaWiki namespace',
910 'groups-editgroup-name' => 'Group name: ',
911 'groups-editgroup-description' => 'Group description (max 255 characters):<br />',
912 'savegroup' => 'Save Group',
913 'groups-tableheader' => 'ID || Name || Description || Rights',
914 'groups-existing' => 'Existing groups',
915 'groups-noname' => 'Please specify a valid group name',
916 'groups-already-exists' => 'A group of that name already exists',
917 'addgrouplogentry' => 'Added group $2',
918 'changegrouplogentry' => 'Changed group $2',
919 'renamegrouplogentry' => 'Renamed group $2 to $3',
920
921 # user groups editing
922 #
923 'userrights-editusergroup' => 'Edit user groups',
924 'saveusergroups' => 'Save User Groups',
925 'userrights-groupsmember' => 'Member of:',
926 'userrights-groupsavailable' => 'Available groups:',
927 'userrights-groupshelp' => 'Select groups you want the user to be removed from or added to.
928 Unselected groups will not be changed. You can deselect a group with CTRL + Left Click',
929 'userrights-logcomment' => 'Changed group membership from $1 to $2',
930
931 # Default group names and descriptions
932 #
933 'group-anon-name' => 'Anonymous',
934 'group-anon-desc' => 'Anonymous users',
935 'group-loggedin-name' => 'User',
936 'group-loggedin-desc' => 'General logged in users',
937 'group-admin-name' => 'Administrator',
938 'group-admin-desc' => 'Trusted users able to block users and delete articles',
939 'group-bureaucrat-name' => 'Bureaucrat',
940 'group-bureaucrat-desc' => 'The bureaucrat group is able to make sysops',
941 'group-steward-name' => 'Steward',
942 'group-steward-desc' => 'Full access',
943
944
945 # Recent changes
946 #
947 'changes' => 'changes',
948 'recentchanges' => 'Recent changes',
949 'recentchanges-url' => 'Special:Recentchanges',
950 'recentchangestext' => 'Track the most recent changes to the wiki on this page.',
951 'rcloaderr' => 'Loading recent changes',
952 'rcnote' => "Below are the last <strong>$1</strong> changes in last <strong>$2</strong> days.",
953 'rcnotefrom' => "Below are the changes since <b>$2</b> (up to <b>$1</b> shown).",
954 'rclistfrom' => "Show new changes starting from $1",
955 'showhideminor' => "$1 minor edits | $2 bots | $3 logged in users | $4 patrolled edits ",
956 'rclinks' => "Show last $1 changes in last $2 days<br />$3",
957 'rchide' => "in $4 form; $1 minor edits; $2 secondary namespaces; $3 multiple edits.",
958 'rcliu' => "; $1 edits from logged in users",
959 'diff' => 'diff',
960 'hist' => 'hist',
961 'hide' => 'hide',
962 'show' => 'show',
963 'tableform' => 'table',
964 'listform' => 'list',
965 'nchanges' => "$1 changes",
966 'minoreditletter' => 'm',
967 'newpageletter' => 'N',
968 'sectionlink' => '&rarr;',
969 'number_of_watching_users_RCview' => '[$1]',
970 'number_of_watching_users_pageview' => '[$1 watching user/s]',
971
972 # Upload
973 #
974 'upload' => 'Upload file',
975 'uploadbtn' => 'Upload file',
976 'uploadlink' => 'Upload images',
977 'reupload' => 'Re-upload',
978 'reuploaddesc' => 'Return to the upload form.',
979 'uploadnologin' => 'Not logged in',
980 'uploadnologintext' => "You must be [[Special:Userlogin|logged in]]
981 to upload files.",
982 'upload_directory_read_only' => 'The upload directory ($1) is not writable by the webserver.',
983 'uploaderror' => 'Upload error',
984 'uploadtext' =>
985 "
986 Use the form below to upload new files,
987 to view or search previously uploaded images
988 go to the [[Special:Imagelist|list of uploaded files]],
989 uploads and deletions are also logged in the [[Special:Log|project log]].
990
991 You must also check the box affirming that you are not
992 violating any copyrights by uploading the file.
993 Press the \"Upload\" button to finish the upload.
994
995 To include the image in a page, use a link in the form
996 '''<nowiki>[[{{ns:6}}:file.jpg]]</nowiki>''',
997 '''<nowiki>[[{{ns:6}}:file.png|alt text]]</nowiki>''' or
998 '''<nowiki>[[{{ns:-2}}:file.ogg]]</nowiki>''' for directly linking to the file.
999 ",
1000
1001 'uploadlog' => 'upload log',
1002 'uploadlogpage' => 'Upload_log',
1003 'uploadlogpagetext' => 'Below is a list of the most recent file uploads.',
1004 'filename' => 'Filename',
1005 'filedesc' => 'Summary',
1006 'filestatus' => 'Copyright status',
1007 'filesource' => 'Source',
1008 'affirmation' => "I affirm that the copyright holder of this file
1009 agrees to license it under the terms of the $1.",
1010 'copyrightpage' => "Project:Copyrights",
1011 'copyrightpagename' => "{{SITENAME}} copyright",
1012 'uploadedfiles' => 'Uploaded files',
1013 'noaffirmation' => 'You must affirm that your upload does not violate any copyrights.',
1014 'ignorewarning' => 'Ignore warning and save file anyway.',
1015 'minlength' => 'Image names must be at least three letters.',
1016 'illegalfilename' => 'The filename "$1" contains characters that are not allowed in page titles. Please rename the file and try uploading it again.',
1017 'badfilename' => "Image name has been changed to \"$1\".",
1018 'badfiletype' => "\".$1\" is not a recommended image file format.",
1019 'largefile' => 'It is recommended that images not exceed $1 bytes in size, this file is $2 bytes',
1020 '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.',
1021 'fileexists' => 'A file with this name exists already, please check $1 if you are not sure if you want to change it.',
1022 'successfulupload' => 'Successful upload',
1023 'fileuploaded' => "File $1 uploaded successfully.
1024 Please follow this link: $2 to the description page and fill
1025 in information about the file, such as where it came from, when it was
1026 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>",
1027 'uploadwarning' => 'Upload warning',
1028 'savefile' => 'Save file',
1029 'uploadedimage' => "uploaded \"[[$1]]\"",
1030 'uploaddisabled' => 'Sorry, uploading is disabled.',
1031 'uploadscripted' => 'This file contains HTML or script code that my be erroneously be interpreted by a web browser.',
1032 'uploadcorrupt' => 'The file is corrupt or has an incorrect extension. Please check the file and upload again.',
1033 'uploadvirus' => 'The file contains a virus! Details: $1',
1034 'sourcefilename' => 'Source filename',
1035 'destfilename' => 'Destination filename',
1036
1037 # Image list
1038 #
1039 'imagelist' => 'File list',
1040 'imagelisttext' => "Below is a list of $1 files sorted $2.",
1041 'getimagelist' => 'fetching file list',
1042 'ilsubmit' => 'Search',
1043 'showlast' => "Show last $1 files sorted $2.",
1044 'byname' => 'by name',
1045 'bydate' => 'by date',
1046 'bysize' => 'by size',
1047 'imgdelete' => 'del',
1048 'imgdesc' => 'desc',
1049 'imglegend' => 'Legend: (desc) = show/edit image description.',
1050 'imghistory' => 'History',
1051 'revertimg' => 'rev',
1052 'deleteimg' => 'del',
1053 'deleteimgcompletely' => 'Delete all revisions',
1054 'imghistlegend' => 'Legend: (cur) = this is the current file, (del) = delete
1055 this old version, (rev) = revert to this old version.
1056 <br /><i>Click on date to see the file uploaded on that date</i>.',
1057 'imagelinks' => 'Links',
1058 'linkstoimage' => 'The following pages link to this file:',
1059 'nolinkstoimage' => 'There are no pages that link to this file.',
1060 'sharedupload' => 'This file is a shared upload and may be used by other projects.',
1061 'shareduploadwiki' => 'Please see the [$1 file description page] for further information.',
1062 'noimage' => 'No file by this name exists, you can [$1 upload it]',
1063 'uploadnewversion' => '[$1 Upload a new version of this file]',
1064
1065 # Statistics
1066 #
1067 'statistics' => 'Statistics',
1068 'sitestats' => 'Site statistics',
1069 'userstats' => 'User statistics',
1070 'sitestatstext' => "There are '''$1''' total pages in the database.
1071 This includes \"talk\" pages, pages about {{SITENAME}}, minimal \"stub\"
1072 pages, redirects, and others that probably don't qualify as content pages.
1073 Excluding those, there are '''$2''' pages that are probably legitimate
1074 content pages.
1075
1076 There have been a total of '''$3''' page views, and '''$4''' page edits
1077 since the wiki was setup.
1078 That comes to '''$5''' average edits per page, and '''$6''' views per edit.",
1079 'userstatstext' => "There are '''$1''' registered users, of which
1080 '''$2''' (or '''$4%''') are administrators (see $3).",
1081
1082 # Maintenance Page
1083 #
1084 'maintenance' => 'Maintenance page',
1085 '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 ;-)',
1086 'maintenancebacklink' => 'Back to Maintenance Page',
1087 'disambiguations' => 'Disambiguation pages',
1088 'disambiguationspage' => "Project:Links_to_disambiguating_pages",
1089 'disambiguationstext' => "The following pages link to a <i>disambiguation page</i>. They should link to the appropriate topic instead.<br />A page is treated as disambiguation if it is linked from $1.<br />Links from other namespaces are <i>not</i> listed here.",
1090 'doubleredirects' => 'Double Redirects',
1091 'doubleredirectstext' => "Each row contains links to the first and second redirect, as well as the first line of the second redirect text, usually giving the \"real\" target page, which the first redirect should point to.",
1092 'brokenredirects' => 'Broken Redirects',
1093 'brokenredirectstext' => 'The following redirects link to a non-existing pages.',
1094 'selflinks' => 'Pages with Self Links',
1095 'selflinkstext' => 'The following pages contain a link to themselves, which they should not.',
1096 'mispeelings' => 'Pages with misspellings',
1097 'mispeelingstext' => "The following pages contain a common misspelling, which are listed on $1. The correct spelling might be given (like this).",
1098 'mispeelingspage' => 'List of common misspellings',
1099 'missinglanguagelinks' => 'Missing Language Links',
1100 'missinglanguagelinksbutton' => 'Find missing language links for',
1101 'missinglanguagelinkstext' => "These pages do <i>not</i> link to their counterpart in $1. Redirects and subpages are <i>not</i> shown.",
1102
1103
1104 # Miscellaneous special pages
1105 #
1106 'orphans' => 'Orphaned pages',
1107 'geo' => 'GEO coordinates',
1108 'validate' => 'Validate page',
1109 'lonelypages' => 'Orphaned pages',
1110 'uncategorizedpages' => 'Uncategorized pages',
1111 'uncategorizedcategories' => 'Uncategorized categories',
1112 'unusedimages' => 'Unused files',
1113 'popularpages' => 'Popular pages',
1114 'nviews' => '$1 views',
1115 'wantedpages' => 'Wanted pages',
1116 'nlinks' => '$1 links',
1117 'allpages' => 'All pages',
1118 'randompage' => 'Random page',
1119 'randompage-url'=> 'Special:Random',
1120 'shortpages' => 'Short pages',
1121 'longpages' => 'Long pages',
1122 'deadendpages' => 'Dead-end pages',
1123 'listusers' => 'User list',
1124 'listadmins' => 'Admins list',
1125 'specialpages' => 'Special pages',
1126 'spheading' => 'Special pages for all users',
1127 'restrictedpheading' => 'Restricted special pages',
1128 'asksqlpheading' => 'asksql level',
1129 'blockpheading' => 'block level',
1130 'createaccountpheading' => 'createaccount level',
1131 'deletepheading' => 'delete level',
1132 'userrightspheading' => 'userrights level',
1133 'grouprightspheading' => 'grouprights level',
1134 'siteadminpheading' => 'siteadmin level',
1135
1136 /** obsoletes
1137 'sysopspheading' => 'For sysop use only',
1138 'developerspheading' => 'For developer use only',
1139 */
1140 'protectpage' => 'Protect page',
1141 'recentchangeslinked' => 'Related changes',
1142 'rclsub' => "(to pages linked from \"$1\")",
1143 'debug' => 'Debug',
1144 'newpages' => 'New pages',
1145 'ancientpages' => 'Oldest pages',
1146 'intl' => 'Interlanguage links',
1147 'move' => 'Move',
1148 'movethispage' => 'Move this page',
1149 'unusedimagestext' => '<p>Please note that other web sites may link to an image with
1150 a direct URL, and so may still be listed here despite being
1151 in active use.</p>',
1152 'booksources' => 'Book sources',
1153 'categoriespagetext' => 'The following categories exist in the wiki.',
1154 'data' => 'Data',
1155 'userrights' => 'User rights management',
1156 'groups' => 'User groups',
1157
1158 # FIXME: Other sites, of course, may have affiliate relations with the booksellers list
1159 'booksourcetext' => "Below is a list of links to other sites that
1160 sell new and used books, and may also have further information
1161 about books you are looking for.
1162 {{SITENAME}} is not affiliated with any of these businesses, and
1163 this list should not be construed as an endorsement.",
1164 'isbn' => 'ISBN',
1165 'rfcurl' => 'http://www.faqs.org/rfcs/rfc$1.html',
1166 'pubmedurl' => 'http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=pubmed&dopt=Abstract&list_uids=$1',
1167 'alphaindexline' => "$1 to $2",
1168 'version' => 'Version',
1169 'log' => 'Logs',
1170 'alllogstext' => 'Combined display of upload, deletion, protection, blocking, and sysop logs.
1171 You can narrow down the view by selecting a log type, the user name, or the affected page.',
1172
1173 # Special:Allpages
1174 'nextpage' => 'Next page ($1)',
1175 'allpagesfrom' => 'Display pages starting at:',
1176 'allarticles' => 'All articles',
1177 'allnonarticles' => 'All non-articles',
1178 'allinnamespace' => 'All pages ($1 namespace)',
1179 'allnotinnamespace' => 'All pages (not in $1 namespace)',
1180 'allpagesprev' => 'Previous',
1181 'allpagesnext' => 'Next',
1182 'allpagessubmit' => 'Go',
1183
1184 # E this user
1185 #
1186 'mailnologin' => 'No send address',
1187 'mailnologintext' => "You must be [[Special:Userlogin|logged in]]
1188 and have a valid e-mail address in your [[Special:Preferences|preferences]]
1189 to send e-mail to other users.",
1190 'emailuser' => 'E-mail this user',
1191 'emailpage' => 'E-mail user',
1192 'emailpagetext' => 'If this user has entered a valid e-mail address in
1193 his or her user preferences, the form below will send a single message.
1194 The e-mail address you entered in your user preferences will appear
1195 as the "From" address of the mail, so the recipient will be able
1196 to reply.',
1197 'usermailererror' => 'Mail object returned error: ',
1198 'defemailsubject' => "{{SITENAME}} e-mail",
1199 'noemailtitle' => 'No e-mail address',
1200 'noemailtext' => 'This user has not specified a valid e-mail address,
1201 or has chosen not to receive e-mail from other users.',
1202 'emailfrom' => 'From',
1203 'emailto' => 'To',
1204 'emailsubject' => 'Subject',
1205 'emailmessage' => 'Message',
1206 'emailsend' => 'Send',
1207 'emailsent' => 'E-mail sent',
1208 'emailsenttext' => 'Your e-mail message has been sent.',
1209
1210 # Watchlist
1211 #
1212 'watchlist' => 'My watchlist',
1213 'watchlistsub' => "(for user \"$1\")",
1214 'nowatchlist' => 'You have no items on your watchlist.',
1215 'watchnologin' => 'Not logged in',
1216 'watchnologintext' => "You must be [[Special:Userlogin|logged in]]
1217 to modify your watchlist.",
1218 'addedwatch' => 'Added to watchlist',
1219 'addedwatchtext' => "The page \"$1\" has been added to your [[Special:Watchlist|watchlist]].
1220 Future changes to this page and its associated Talk page will be listed there,
1221 and the page will appear '''bolded''' in the [[Special:Recentchanges|list of recent changes]] to
1222 make it easier to pick out.
1223
1224 <p>If you want to remove the page from your watchlist later, click \"Stop watching\" in the sidebar.",
1225 'removedwatch' => 'Removed from watchlist',
1226 'removedwatchtext' => "The page \"$1\" has been removed from your watchlist.",
1227 'watch' => 'Watch',
1228 'watchthispage' => 'Watch this page',
1229 'unwatch' => 'Unwatch',
1230 'unwatchthispage' => 'Stop watching',
1231 'notanarticle' => 'Not a content page',
1232 'watchnochange' => 'None of your watched items were edited in the time period displayed.',
1233 'watchdetails' => "* $1 pages watched not counting talk pages, $2 total pages edited in the specified period
1234 * Query method: $3
1235 * [[Special:Watchlist/edit|Show and edit complete watchlist]]
1236 ",
1237 'wlheader-enotif' => "* Email notification is enabled.",
1238 'wlheader-showupdated' => "* Pages which have been changed since you last visited them are shown in '''bold'''",
1239 'watchmethod-recent'=> 'checking recent edits for watched pages',
1240 'watchmethod-list' => 'checking watched pages for recent edits',
1241 'removechecked' => 'Remove checked items from watchlist',
1242 'watchlistcontains' => "Your watchlist contains $1 pages.",
1243 'watcheditlist' => 'Here\'s an alphabetical list of your
1244 watched content pages. Check the boxes of pages you want to remove from your watchlist and click the \'remove checked\' button
1245 at the bottom of the screen (deleting a content page also deletes the accompanying talk page and vice versa).',
1246 'removingchecked' => 'Removing requested items from watchlist...',
1247 'couldntremove' => "Couldn't remove item '$1'...",
1248 'iteminvalidname' => "Problem with item '$1', invalid name...",
1249 'wlnote' => 'Below are the last $1 changes in the last <b>$2</b> hours.',
1250 'wlshowlast' => 'Show last $1 hours $2 days $3',
1251 'wlsaved' => 'This is a saved version of your watchlist.',
1252 'wlhideshowown' => '$1 my edits.',
1253 'wlshow' => 'Show',
1254 'wlhide' => 'Hide',
1255
1256 'enotif_mailer' => '{{SITENAME}} Notification Mailer',
1257 'enotif_reset' => 'Mark all pages visited',
1258 'enotif_newpagetext'=> 'This is a new page.',
1259 'changed' => 'changed',
1260 'created' => 'created',
1261 'enotif_subject' => '{{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED by $PAGEEDITOR',
1262 'enotif_lastvisited' => 'See {{SERVER}}{{localurl:$PAGETITLE_RAWURL|diff=0&oldid=$OLDID}} for all changes since your last visit.',
1263 'enotif_body' => 'Dear $WATCHINGUSERNAME,
1264
1265 the {{SITENAME}} page $PAGETITLE has been $CHANGEDORCREATED on $PAGEEDITDATE by $PAGEEDITOR,
1266 see {{SERVER}}{{localurl:$PAGETITLE_RAWURL}} for the current version.
1267
1268 $NEWPAGE
1269
1270 Editor\'s summary: $PAGESUMMARY $PAGEMINOREDIT
1271
1272 Contact the editor:
1273 mail {{SERVER}}{{localurl:Special:Emailuser|target=$PAGEEDITOR_RAWURL}}
1274 wiki {{SERVER}}{{localurl:User:$PAGEEDITOR_RAWURL}}
1275
1276 There will be no other notifications in case of further changes unless you visit this page.
1277 You could also reset the notification flags for all your watched pages on your watchlist.
1278
1279 Your friendly {{SITENAME}} notification system
1280
1281 --
1282 To change your watchlist settings, visit
1283 {{SERVER}}{{localurl:Special:Watchlist|edit=yes}}
1284
1285 Feedback and further assistance:
1286 {{SERVER}}{{localurl:Help:Contents}}',
1287
1288 # Delete/protect/revert
1289 #
1290 'deletepage' => 'Delete page',
1291 'confirm' => 'Confirm',
1292 'excontent' => "content was: '$1'",
1293 'excontentauthor' => "content was: '$1' (and the only contributor was '$2')",
1294 'exbeforeblank' => "content before blanking was: '$1'",
1295 'exblank' => 'page was empty',
1296 'confirmdelete' => 'Confirm delete',
1297 'deletesub' => "(Deleting \"$1\")",
1298 'historywarning' => 'Warning: The page you are about to delete has a history: ',
1299 'confirmdeletetext' => "You are about to permanently delete a page
1300 or image along with all of its history from the database.
1301 Please confirm that you intend to do this, that you understand the
1302 consequences, and that you are doing this in accordance with
1303 [[Project:Policy]].",
1304 'actioncomplete' => 'Action complete',
1305 'deletedtext' => "\"$1\" has been deleted.
1306 See $2 for a record of recent deletions.",
1307 'deletedarticle' => "deleted \"[[$1]]\"",
1308 'dellogpage' => 'Deletion_log',
1309 'dellogpagetext' => 'Below is a list of the most recent deletions.',
1310 'deletionlog' => 'deletion log',
1311 'reverted' => 'Reverted to earlier revision',
1312 'deletecomment' => 'Reason for deletion',
1313 'imagereverted' => 'Revert to earlier version was successful.',
1314 'rollback' => 'Roll back edits',
1315 'rollback_short' => 'Rollback',
1316 'rollbacklink' => 'rollback',
1317 'rollbackfailed' => 'Rollback failed',
1318 'cantrollback' => 'Cannot revert edit; last contributor is only author of this page.',
1319 'alreadyrolled' => "Cannot rollback last edit of [[$1]]
1320 by [[User:$2|$2]] ([[User talk:$2|Talk]]); someone else has edited or rolled back the page already.
1321
1322 Last edit was by [[User:$3|$3]] ([[User talk:$3|Talk]]). ",
1323 # only shown if there is an edit comment
1324 'editcomment' => "The edit comment was: \"<i>$1</i>\".",
1325 'revertpage' => "Reverted edit of $2, changed back to last version by $1",
1326 'sessionfailure' => 'There seems to be a problem with your login session;
1327 this action has been canceled as a precaution against session hijacking.
1328 Please hit "back" and reload the page you came from, then try again.',
1329 'protectlogpage' => 'Protection_log',
1330 'protectlogtext' => "Below is a list of page locks/unlocks.
1331 See [[Project:Protected page]] for more information.",
1332 'protectedarticle' => "protected \"[[$1]]\"",
1333 'unprotectedarticle' => "unprotected \"[[$1]]\"",
1334 'protectsub' =>"(Protecting \"$1\")",
1335 'confirmprotecttext' => 'Do you really want to protect this page?',
1336 'confirmprotect' => 'Confirm protection',
1337 'protectmoveonly' => 'Protect from moves only',
1338 'protectcomment' => 'Reason for protecting',
1339 'unprotectsub' =>"(Unprotecting \"$1\")",
1340 'confirmunprotecttext' => 'Do you really want to unprotect this page?',
1341 'confirmunprotect' => 'Confirm unprotection',
1342 'unprotectcomment' => 'Reason for unprotecting',
1343 'protectreason' => '(give a reason)',
1344
1345 # Undelete
1346 'undelete' => 'Restore deleted page',
1347 'undeletepage' => 'View and restore deleted pages',
1348 'undeletepagetext' => 'The following pages have been deleted but are still in the archive and
1349 can be restored. The archive may be periodically cleaned out.',
1350 'undeletearticle' => 'Restore deleted page',
1351 'undeleterevisions' => "$1 revisions archived",
1352 'undeletehistory' => 'If you restore the page, all revisions will be restored to the history.
1353 If a new page with the same name has been created since the deletion, the restored
1354 revisions will appear in the prior history, and the current revision of the live page
1355 will not be automatically replaced.',
1356 'undeleterevision' => "Deleted revision as of $1",
1357 'undeletebtn' => 'Restore!',
1358 'undeletedarticle' => "restored \"[[$1]]\"",
1359 'undeletedrevisions' => "$1 revisions restored",
1360 'undeletedtext' => "[[$1]] has been successfully restored.
1361 See [[Special:Log/delete]] for a record of recent deletions and restorations.",
1362
1363 # Namespace form on various pages
1364 'namespace' => 'Namespace:',
1365 'invert' => 'Invert selection',
1366
1367 # Contributions
1368 #
1369 'contributions' => 'User contributions',
1370 'mycontris' => 'My contributions',
1371 'contribsub' => "For $1",
1372 'nocontribs' => 'No changes were found matching these criteria.',
1373 'ucnote' => "Below are this user's last <b>$1</b> changes in the last <b>$2</b> days.",
1374 'uclinks' => "View the last $1 changes; view the last $2 days.",
1375 'uctop' => ' (top)' ,
1376 'newbies' => 'newbies',
1377
1378 # What links here
1379 #
1380 'whatlinkshere' => 'What links here',
1381 'notargettitle' => 'No target',
1382 'notargettext' => 'You have not specified a target page or user
1383 to perform this function on.',
1384 'linklistsub' => '(List of links)',
1385 'linkshere' => 'The following pages link to here:',
1386 'nolinkshere' => 'No pages link to here.',
1387 'isredirect' => 'redirect page',
1388
1389 # Block/unblock IP
1390 #
1391 'blockip' => 'Block user',
1392 'blockiptext' => "Use the form below to block write access
1393 from a specific IP address or username.
1394 This should be done only only to prevent vandalism, and in
1395 accordance with [[Project:Policy|policy]].
1396 Fill in a specific reason below (for example, citing particular
1397 pages that were vandalized).",
1398 'ipaddress' => 'IP Address',
1399 'ipadressorusername' => 'IP Address or username',
1400 'ipbexpiry' => 'Expiry',
1401 'ipbreason' => 'Reason',
1402 'ipbsubmit' => 'Block this user',
1403 'badipaddress' => 'Invalid IP address',
1404 'blockipsuccesssub' => 'Block succeeded',
1405 'blockipsuccesstext' => "\"$1\" has been blocked.
1406 <br />See [[Special:Ipblocklist|IP block list]] to review blocks.",
1407 'unblockip' => 'Unblock user',
1408 'unblockiptext' => 'Use the form below to restore write access
1409 to a previously blocked IP address or username.',
1410 'ipusubmit' => 'Unblock this address',
1411 'ipusuccess' => "\"[[$1]]\" unblocked",
1412 'ipblocklist' => 'List of blocked IP addresses and usernames',
1413 'blocklistline' => "$1, $2 blocked $3 (expires $4)",
1414 'blocklink' => 'block',
1415 'unblocklink' => 'unblock',
1416 'contribslink' => 'contribs',
1417 'autoblocker' => "Autoblocked because you share an IP address with \"$1\". Reason \"$2\".",
1418 'blocklogpage' => 'Block_log',
1419 'blocklogentry' => 'blocked "[[$1]]" with an expiry time of $2',
1420 'blocklogtext' => 'This is a log of user blocking and unblocking actions. Automatically
1421 blocked IP addresses are not listed. See the [[Special:Ipblocklist|IP block list]] for
1422 the list of currently operational bans and blocks.',
1423 'unblocklogentry' => 'unblocked "$1"',
1424 'range_block_disabled' => 'The sysop ability to create range blocks is disabled.',
1425 'ipb_expiry_invalid' => 'Expiry time invalid.',
1426 'ip_range_invalid' => "Invalid IP range.\n",
1427 'proxyblocker' => 'Proxy blocker',
1428 '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.',
1429 'proxyblocksuccess' => "Done.\n",
1430 'sorbs' => 'SORBS DNSBL',
1431 'sorbsreason' => 'Your IP address is listed as an open proxy in the [http://www.sorbs.net SORBS] DNSBL.',
1432
1433
1434 # Developer tools
1435 #
1436 'lockdb' => 'Lock database',
1437 'unlockdb' => 'Unlock database',
1438 'lockdbtext' => 'Locking the database will suspend the ability of all
1439 users to edit pages, change their preferences, edit their watchlists, and
1440 other things requiring changes in the database.
1441 Please confirm that this is what you intend to do, and that you will
1442 unlock the database when your maintenance is done.',
1443 'unlockdbtext' => 'Unlocking the database will restore the ability of all
1444 users to edit pages, change their preferences, edit their watchlists, and
1445 other things requiring changes in the database.
1446 Please confirm that this is what you intend to do.',
1447 'lockconfirm' => 'Yes, I really want to lock the database.',
1448 'unlockconfirm' => 'Yes, I really want to unlock the database.',
1449 'lockbtn' => 'Lock database',
1450 'unlockbtn' => 'Unlock database',
1451 'locknoconfirm' => 'You did not check the confirmation box.',
1452 'lockdbsuccesssub' => 'Database lock succeeded',
1453 'unlockdbsuccesssub' => 'Database lock removed',
1454 'lockdbsuccesstext' => 'The database has been locked.
1455 <br />Remember to remove the lock after your maintenance is complete.',
1456 'unlockdbsuccesstext' => 'The database has been unlocked.',
1457
1458 # SQL query
1459 #
1460 'asksql' => 'SQL query',
1461 'asksqltext' => "Use the form below to make a direct query of the
1462 database.
1463 Use single quotes ('like this') to delimit string literals.
1464 This can often add considerable load to the server, so please use
1465 this function sparingly.",
1466 'sqlislogged' => 'Please note that all queries are logged.',
1467 'sqlquery' => 'Enter query',
1468 'querybtn' => 'Submit query',
1469 'selectonly' => 'Only read-only queries are allowed.',
1470 'querysuccessful' => 'Query successful',
1471
1472 # Make sysop
1473 'makesysoptitle' => 'Make a user into a sysop',
1474 'makesysoptext' => 'This form is used by bureaucrats to turn ordinary users into administrators.
1475 Type the name of the user in the box and press the button to make the user an administrator',
1476 'makesysopname' => 'Name of the user:',
1477 'makesysopsubmit' => 'Make this user into a sysop',
1478 'makesysopok' => "<b>User \"$1\" is now a sysop</b>",
1479 'makesysopfail' => "<b>User \"$1\" could not be made into a sysop. (Did you enter the name correctly?)</b>",
1480 'setbureaucratflag' => 'Set bureaucrat flag',
1481 'setstewardflag' => 'Set steward flag',
1482 'bureaucratlog' => 'Bureaucrat_log',
1483 'rightslogtext' => 'This is a log of changes to user rights.',
1484 'bureaucratlogentry' => "Changed group membership for $1 from $2 to $3",
1485 'rights' => 'Rights:',
1486 'set_user_rights' => 'Set user rights',
1487 'user_rights_set' => "<b>User rights for \"$1\" updated</b>",
1488 'set_rights_fail' => "<b>User rights for \"$1\" could not be set. (Did you enter the name correctly?)</b>",
1489 'makesysop' => 'Make a user into a sysop',
1490 'already_sysop' => 'This user is already an administrator',
1491 'already_bureaucrat' => 'This user is already a bureaucrat',
1492 'already_steward' => 'This user is already a steward',
1493
1494 # Validation
1495 'val_yes' => 'Yes',
1496 'val_no' => 'No',
1497 'val_of' => '$1 of $2',
1498 'val_revision' => 'Revision',
1499 'val_time' => 'Time',
1500 'val_user_stats_title' => 'Validation overview of user $1',
1501 'val_my_stats_title' => 'My validation overview',
1502 'val_list_header' => '<th>#</th><th>Topic</th><th>Range</th><th>Action</th>',
1503 'val_add' => 'Add',
1504 'val_del' => 'Delete',
1505 'val_show_my_ratings' => 'Show my validations',
1506 'val_revision_number' => 'Revision #$1',
1507 'val_warning' => '<b>Never, <i>ever</i>, change something here without <i>explicit</i> community consensus!</b>',
1508 'val_rev_for' => 'Revisions for ',
1509 'val_details_th_user' => 'User $1',
1510 'val_validation_of' => 'Validation of "$1"',
1511 'val_revision_of' => 'Revision of $1',
1512 'val_revision_changes_ok' => 'Your ratings have been stored!',
1513 'val_rev_stats_link' => 'See the validation statistics for "$1" <a href="$2">here</a>',
1514 'val_revision_stats_link' => '(<a href="$1">details</a>)',
1515 'val_iamsure' => 'Check this box if you really mean it!',
1516 'val_clear_old' => 'Clear my older validation data',
1517 'val_merge_old' => 'Use my previous assessment where selected \'No opinion\'',
1518 'val_form_note' => '<b>Hint:</b> Merging your data means that for the article
1519 revision you select, all options where you have specified <i>no opinion</i>
1520 will be set to the value and comment of the most recent revision for which you
1521 have expressed an opinion. For example, if you want to change a single option
1522 for a newer revision, but also keep your other settings for this article in
1523 this revision, just select which option you intend to <i>change</i>, and
1524 merging will fill in the other options with your previous settings.',
1525 'val_noop' => 'No opinion',
1526 'val_percent' => '<b>$1%</b><br />($2 of $3 points<br />by $4 users)',
1527 'val_percent_single' => '<b>$1%</b><br />($2 of $3 points<br />by one user)',
1528 'val_total' => 'Total',
1529 'val_version' => 'Version',
1530 'val_tab' => 'Validate',
1531 'val_this_is_current_version' => 'this is the latest version',
1532 'val_version_of' => "Version of $1" ,
1533 'val_table_header' => "<tr><th>Class</th>$1<th colspan=4>Opinion</th>$1<th>Comment</th></tr>\n",
1534 'val_stat_link_text' => 'Validation statistics for this article',
1535 'val_view_version' => 'View this revision',
1536 'val_validate_version' => 'Validate this version',
1537 'val_user_validations' => 'This user has validated $1 pages.',
1538 'val_no_anon_validation' => 'You have to be logged in to validate an article.',
1539 'val_validate_article_namespace_only' => 'Only articles can be validated. This page is <i>not</i> in the article namespace.',
1540 'val_validated' => 'Validation done.',
1541 'val_article_lists' => 'List of validated articles',
1542 'val_page_validation_statistics' => 'Page validation statistics for $1',
1543
1544 # Move page
1545 #
1546 'movepage' => 'Move page',
1547 'movepagetext' => 'Using the form below will rename a page, moving all
1548 of its history to the new name.
1549 The old title will become a redirect page to the new title.
1550 Links to the old page title will not be changed; be sure to
1551 check for double or broken redirects.
1552 You are responsible for making sure that links continue to
1553 point where they are supposed to go.
1554
1555 Note that the page will \'\'\'not\'\'\' be moved if there is already
1556 a page at the new title, unless it is empty or a redirect and has no
1557 past edit history. This means that you can rename a page back to where
1558 it was just renamed from if you make a mistake, and you cannot overwrite
1559 an existing page.
1560
1561 <b>WARNING!</b>
1562 This can be a drastic and unexpected change for a popular page;
1563 please be sure you understand the consequences of this before
1564 proceeding.',
1565 'movepagetalktext' => 'The associated talk page, if any, will be automatically moved along with it \'\'\'unless:\'\'\'
1566 *You are moving the page across namespaces,
1567 *A non-empty talk page already exists under the new name, or
1568 *You uncheck the box below.
1569
1570 In those cases, you will have to move or merge the page manually if desired.',
1571 'movearticle' => 'Move page',
1572 'movenologin' => 'Not logged in',
1573 'movenologintext' => "You must be a registered user and [[Special:Userlogin|logged in]]
1574 to move a page.",
1575 'newtitle' => 'To new title',
1576 'movepagebtn' => 'Move page',
1577 'pagemovedsub' => 'Move succeeded',
1578 'pagemovedtext' => "Page \"[[$1]]\" moved to \"[[$2]]\".",
1579 'articleexists' => 'A page of that name already exists, or the
1580 name you have chosen is not valid.
1581 Please choose another name.',
1582 'talkexists' => 'The page itself was moved successfully, but the
1583 talk page could not be moved because one already exists at the new
1584 title. Please merge them manually.',
1585 'movedto' => 'moved to',
1586 'movetalk' => 'Move "talk" page as well, if applicable.',
1587 'talkpagemoved' => 'The corresponding talk page was also moved.',
1588 'talkpagenotmoved' => 'The corresponding talk page was <strong>not</strong> moved.',
1589 '1movedto2' => "[[$1]] moved to [[$2]]",
1590 '1movedto2_redir' => '[[$1]] moved to [[$2]] over redirect',
1591 'movelogpage' => 'Move log',
1592 'movelogpagetext' => 'Below is a list of page moved.',
1593 'movereason' => 'Reason',
1594 'revertmove' => 'revert',
1595 'delete_and_move' => 'Delete and move',
1596 'delete_and_move_text' =>
1597 '==Deletion required==
1598
1599 The destination article "[[$1]]" already exists. Do you want to delete it to make way for the move?',
1600 'delete_and_move_reason' => 'Deleted to make way for move',
1601 'selfmove' => "Source and destination titles are the same; can't move a page over itself.",
1602 'immobile_namespace' => "Destination title is of a special type; cannot move pages into that namespace.",
1603
1604 # Export
1605
1606 'export' => 'Export pages',
1607 'exporttext' => 'You can export the text and editing history of a particular page or
1608 set of pages wrapped in some XML. In the future, this may then be imported into another
1609 wiki running MediaWiki software, although there is no support for this feature in the
1610 current version.
1611
1612 To export article pages, enter the titles in the text box below, one title per line, and
1613 select whether you want the current version as well as all old versions, with the page
1614 history lines, or just the current version with the info about the last edit.
1615
1616 In the latter case you can also use a link, e.g. [[{{ns:Special}}:Export/Train]] for the
1617 article [[Train]].
1618 ',
1619 'exportcuronly' => 'Include only the current revision, not the full history',
1620
1621 # Namespace 8 related
1622
1623 'allmessages' => 'All system messages',
1624 'allmessagesname' => 'Name',
1625 'allmessagesdefault' => 'Default text',
1626 'allmessagescurrent' => 'Current text',
1627 'allmessagestext' => 'This is a list of all system messages available in the MediaWiki: namespace.',
1628 'allmessagesnotsupportedUI' => 'Your current interface language <b>$1</b> is not supported by Special:AllMessages at this site. ',
1629 'allmessagesnotsupportedDB' => 'Special:AllMessages not supported because wgUseDatabaseMessages is off.',
1630
1631 # Thumbnails
1632
1633 'thumbnail-more' => 'Enlarge',
1634 'missingimage' => "<b>Missing image</b><br /><i>$1</i>\n",
1635 'filemissing' => 'File missing',
1636
1637 # Special:Import
1638 'import' => 'Import pages',
1639 'importtext' => 'Please export the file from the source wiki using the Special:Export utility, save it to your disk and upload it here.',
1640 'importfailed' => "Import failed: $1",
1641 'importnotext' => 'Empty or no text',
1642 'importsuccess' => 'Import succeeded!',
1643 'importhistoryconflict' => 'Conflicting history revision exists (may have imported this page before)',
1644
1645 # Keyboard access keys for power users
1646 'accesskey-search' => 'f',
1647 'accesskey-minoredit' => 'i',
1648 'accesskey-save' => 's',
1649 'accesskey-preview' => 'p',
1650 'accesskey-diff' => 'd',
1651 'accesskey-compareselectedversions' => 'v',
1652
1653 # tooltip help for some actions, most are in Monobook.js
1654 'tooltip-search' => 'Search this wiki [alt-f]',
1655 'tooltip-minoredit' => 'Mark this as a minor edit [alt-i]',
1656 'tooltip-save' => 'Save your changes [alt-s]',
1657 'tooltip-preview' => 'Preview your changes, please use this before saving! [alt-p]',
1658 'tooltip-diff' => 'Show which changes you made to the text. [alt-d]',
1659 'tooltip-compareselectedversions' => 'See the differences between the two selected versions of this page. [alt-v]',
1660 'tooltip-watch' => 'Add this page to your watchlist [alt-w]',
1661
1662 # stylesheets
1663 'Monobook.css' => '/* edit this file to customize the monobook skin for the entire site */',
1664 #'Monobook.js' => '/* edit this file to change js things in the monobook skin */',
1665
1666 # Metadata
1667 'nodublincore' => 'Dublin Core RDF metadata disabled for this server.',
1668 'nocreativecommons' => 'Creative Commons RDF metadata disabled for this server.',
1669 'notacceptable' => 'The wiki server can\'t provide data in a format your client can read.',
1670
1671 # Attribution
1672
1673 'anonymous' => "Anonymous user(s) of $wgSitename",
1674 'siteuser' => "$wgSitename user $1",
1675 'lastmodifiedby' => "This page was last modified $1 by $2.",
1676 'and' => 'and',
1677 'othercontribs' => "Based on work by $1.",
1678 'others' => 'others',
1679 'siteusers' => "$wgSitename user(s) $1",
1680 'creditspage' => 'Page credits',
1681 'nocredits' => 'There is no credits info available for this page.',
1682
1683 # Spam protection
1684
1685 'spamprotectiontitle' => 'Spam protection filter',
1686 'spamprotectiontext' => 'The page you wanted to save was blocked by the spam filter. This is probably caused by a link to an external site.',
1687 'spamprotectionmatch' => 'The following text is what triggered our spam filter: $1',
1688 'subcategorycount' => "There are $1 subcategories to this category.",
1689 'subcategorycount1' => "There is $1 subcategory to this category.",
1690 'categoryarticlecount' => "There are $1 articles in this category.",
1691 'categoryarticlecount1' => "There is $1 article in this category.",
1692 'usenewcategorypage' => "1\n\nSet first character to \"0\" to disable the new category page layout.",
1693 'listingcontinuesabbrev' => " cont.",
1694
1695 # Info page
1696 'infosubtitle' => 'Information for page',
1697 'numedits' => 'Number of edits (article): $1',
1698 'numtalkedits' => 'Number of edits (discussion page): $1',
1699 'numwatchers' => 'Number of watchers: $1',
1700 'numauthors' => 'Number of distinct authors (article): $1',
1701 'numtalkauthors' => 'Number of distinct authors (discussion page): $1',
1702
1703 # Math options
1704 'mw_math_png' => 'Always render PNG',
1705 'mw_math_simple' => 'HTML if very simple or else PNG',
1706 'mw_math_html' => 'HTML if possible or else PNG',
1707 'mw_math_source' => 'Leave it as TeX (for text browsers)',
1708 'mw_math_modern' => 'Recommended for modern browsers',
1709 'mw_math_mathml' => 'MathML if possible (experimental)',
1710
1711 # Patrolling
1712 'markaspatrolleddiff' => "Mark as patrolled",
1713 'markaspatrolledlink' => "[$1]",
1714 'markaspatrolledtext' => "Mark this article as patrolled",
1715 'markedaspatrolled' => "Marked as patrolled",
1716 'markedaspatrolledtext' => "The selected revision has been marked as patrolled.",
1717 'rcpatroldisabled' => "Recent Changes Patrol disabled",
1718 'rcpatroldisabledtext' => "The Recent Changes Patrol feature is currently disabled.",
1719
1720 # Monobook.js: tooltips and access keys for monobook
1721 'Monobook.js' => '/* tooltips and access keys */
1722 ta = new Object();
1723 ta[\'pt-userpage\'] = new Array(\'.\',\'My user page\');
1724 ta[\'pt-anonuserpage\'] = new Array(\'.\',\'The user page for the ip you\\\'re editing as\');
1725 ta[\'pt-mytalk\'] = new Array(\'n\',\'My talk page\');
1726 ta[\'pt-anontalk\'] = new Array(\'n\',\'Discussion about edits from this ip address\');
1727 ta[\'pt-preferences\'] = new Array(\'\',\'My preferences\');
1728 ta[\'pt-watchlist\'] = new Array(\'l\',\'The list of pages you\\\'re monitoring for changes.\');
1729 ta[\'pt-mycontris\'] = new Array(\'y\',\'List of my contributions\');
1730 ta[\'pt-login\'] = new Array(\'o\',\'You are encouraged to log in, it is not mandatory however.\');
1731 ta[\'pt-anonlogin\'] = new Array(\'o\',\'You are encouraged to log in, it is not mandatory however.\');
1732 ta[\'pt-logout\'] = new Array(\'o\',\'Log out\');
1733 ta[\'ca-talk\'] = new Array(\'t\',\'Discussion about the content page\');
1734 ta[\'ca-edit\'] = new Array(\'e\',\'You can edit this page. Please use the preview button before saving.\');
1735 ta[\'ca-addsection\'] = new Array(\'+\',\'Add a comment to this discussion.\');
1736 ta[\'ca-viewsource\'] = new Array(\'e\',\'This page is protected. You can view its source.\');
1737 ta[\'ca-history\'] = new Array(\'h\',\'Past versions of this page.\');
1738 ta[\'ca-protect\'] = new Array(\'=\',\'Protect this page\');
1739 ta[\'ca-delete\'] = new Array(\'d\',\'Delete this page\');
1740 ta[\'ca-undelete\'] = new Array(\'d\',\'Restore the edits done to this page before it was deleted\');
1741 ta[\'ca-move\'] = new Array(\'m\',\'Move this page\');
1742 ta[\'ca-nomove\'] = new Array(\'\',\'You don\\\'t have the permissions to move this page\');
1743 ta[\'ca-watch\'] = new Array(\'w\',\'Add this page to your watchlist\');
1744 ta[\'ca-unwatch\'] = new Array(\'w\',\'Remove this page from your watchlist\');
1745 ta[\'search\'] = new Array(\'f\',\'Search this wiki\');
1746 ta[\'p-logo\'] = new Array(\'\',\'Main Page\');
1747 ta[\'n-mainpage\'] = new Array(\'z\',\'Visit the Main Page\');
1748 ta[\'n-portal\'] = new Array(\'\',\'About the project, what you can do, where to find things\');
1749 ta[\'n-currentevents\'] = new Array(\'\',\'Find background information on current events\');
1750 ta[\'n-recentchanges\'] = new Array(\'r\',\'The list of recent changes in the wiki.\');
1751 ta[\'n-randompage\'] = new Array(\'x\',\'Load a random page\');
1752 ta[\'n-help\'] = new Array(\'\',\'The place to find out.\');
1753 ta[\'n-sitesupport\'] = new Array(\'\',\'Support us\');
1754 ta[\'t-whatlinkshere\'] = new Array(\'j\',\'List of all wiki pages that link here\');
1755 ta[\'t-recentchangeslinked\'] = new Array(\'k\',\'Recent changes in pages linked from this page\');
1756 ta[\'feed-rss\'] = new Array(\'\',\'RSS feed for this page\');
1757 ta[\'feed-atom\'] = new Array(\'\',\'Atom feed for this page\');
1758 ta[\'t-contributions\'] = new Array(\'\',\'View the list of contributions of this user\');
1759 ta[\'t-emailuser\'] = new Array(\'\',\'Send a mail to this user\');
1760 ta[\'t-upload\'] = new Array(\'u\',\'Upload images or media files\');
1761 ta[\'t-specialpages\'] = new Array(\'q\',\'List of all special pages\');
1762 ta[\'ca-nstab-main\'] = new Array(\'c\',\'View the content page\');
1763 ta[\'ca-nstab-user\'] = new Array(\'c\',\'View the user page\');
1764 ta[\'ca-nstab-media\'] = new Array(\'c\',\'View the media page\');
1765 ta[\'ca-nstab-special\'] = new Array(\'\',\'This is a special page, you can\\\'t edit the page itself.\');
1766 ta[\'ca-nstab-wp\'] = new Array(\'a\',\'View the project page\');
1767 ta[\'ca-nstab-image\'] = new Array(\'c\',\'View the image page\');
1768 ta[\'ca-nstab-mediawiki\'] = new Array(\'c\',\'View the system message\');
1769 ta[\'ca-nstab-template\'] = new Array(\'c\',\'View the template\');
1770 ta[\'ca-nstab-help\'] = new Array(\'c\',\'View the help page\');
1771 ta[\'ca-nstab-category\'] = new Array(\'c\',\'View the category page\');
1772 ',
1773
1774 # image deletion
1775 'deletedrevision' => 'Deleted old revision $1.',
1776
1777 # browsing diffs
1778 'previousdiff' => '← Previous diff',
1779 'nextdiff' => 'Next diff →',
1780
1781 'imagemaxsize' => 'Limit images on image description pages to: ',
1782 'thumbsize' => 'Thumbnail size : ',
1783 'showbigimage' => 'Download high resolution version ($1x$2, $3 KB)',
1784
1785 'newimages' => 'New images gallery',
1786 'noimages' => 'Nothing to see.',
1787
1788 'sitesettings' => 'Site Settings',
1789
1790 # short names for language variants used for language conversion links.
1791 # to disable showing a particular link, set it to 'disable', e.g.
1792 # 'variantname-zh-sg' => 'disable',
1793 'variantname-zh-cn' => 'cn',
1794 'variantname-zh-tw' => 'tw',
1795 'variantname-zh-hk' => 'hk',
1796 'variantname-zh-sg' => 'sg',
1797 'variantname-zh' => 'zh',
1798
1799 'variantname-is' => 'is',
1800 'variantname-iz' => 'iz',
1801
1802 # labels for User: and Title: on Special:Log pages
1803 'specialloguserlabel' => 'User: ',
1804 'speciallogtitlelabel' => 'Title: ',
1805
1806 'passwordtooshort' => 'Your password is too short. It must have at least $1 characters.',
1807
1808 # Media Warning
1809 'mediawarning' => '\'\'\'Warning\'\'\': This file may contain malicious code, by executing it your system may be compromised.
1810 <hr>',
1811
1812 'fileinfo' => '$1KB, MIME type: <code>$2</code>',
1813
1814 # Metadata
1815 'metadata' => 'Metadata',
1816
1817 # Exif tags
1818 'exif-imagewidth' =>'Width',
1819 'exif-imagelength' =>'Height',
1820 'exif-bitspersample' =>'Bits per component',
1821 'exif-compression' =>'Compression scheme',
1822 'exif-photometricinterpretation' =>'Pixel composition',
1823 'exif-orientation' =>'Orientation',
1824 'exif-samplesperpixel' =>'Number of components',
1825 'exif-planarconfiguration' =>'Data arrangement',
1826 'exif-ycbcrsubsampling' =>'Subsampling ratio of Y to C',
1827 'exif-ycbcrpositioning' =>'Y and C positioning',
1828 'exif-xresolution' =>'Image resolution in width direction',
1829 'exif-yresolution' =>'Image resolution in height direction',
1830 'exif-resolutionunit' =>'Unit of X and Y resolution',
1831 'exif-stripoffsets' =>'Image data location',
1832 'exif-rowsperstrip' =>'Number of rows per strip',
1833 'exif-stripbytecounts' =>'Bytes per compressed strip',
1834 'exif-jpeginterchangeformat' =>'Offset to JPEG SOI',
1835 'exif-jpeginterchangeformatlength' =>'Bytes of JPEG data',
1836 'exif-transferfunction' =>'Transfer function',
1837 'exif-whitepoint' =>'White point chromaticity',
1838 'exif-primarychromaticities' =>'Chromaticities of primarities',
1839 'exif-ycbcrcoefficients' =>'Color space transformation matrix coefficients',
1840 'exif-referenceblackwhite' =>'Pair of black and white reference values',
1841 'exif-datetime' =>'File change date and time',
1842 'exif-imagedescription' =>'Image title',
1843 'exif-make' =>'Camera manufacturer',
1844 'exif-model' =>'Camera model',
1845 'exif-software' =>'Software used',
1846 'exif-artist' =>'Author',
1847 'exif-copyright' =>'Copyright holder',
1848 'exif-exifversion' =>'Exif version',
1849 'exif-flashpixversion' =>'Supported Flashpix version',
1850 'exif-colorspace' =>'Color space',
1851 'exif-componentsconfiguration' =>'Meaning of each component',
1852 'exif-compressedbitsperpixel' =>'Image compression mode',
1853 'exif-pixelydimension' =>'Valid image width',
1854 'exif-pixelxdimension' =>'Valind image height',
1855 'exif-makernote' =>'Manufacturer notes',
1856 'exif-usercomment' =>'User comments',
1857 'exif-relatedsoundfile' =>'Related audio file',
1858 'exif-datetimeoriginal' =>'Date and time of data generation',
1859 'exif-datetimedigitized' =>'Date and time of digitizing',
1860 'exif-subsectime' =>'DateTime subseconds',
1861 'exif-subsectimeoriginal' =>'DateTimeOriginal subseconds',
1862 'exif-subsectimedigitized' =>'DateTimeDigitized subseconds',
1863 'exif-exposuretime' =>'Exposure time',
1864 'exif-fnumber' =>'F Number',
1865 'exif-exposureprogram' =>'Exposure Program',
1866 'exif-spectralsensitivity' =>'Spectral sensitivity',
1867 'exif-isospeedratings' =>'ISO speed rating',
1868 'exif-oecf' =>'Optoelectronic conversion factor',
1869 'exif-shutterspeedvalue' =>'Shutter speed',
1870 'exif-aperturevalue' =>'Aperture',
1871 'exif-brightnessvalue' =>'Brightness',
1872 'exif-exposurebiasvalue' =>'Exposure bias',
1873 'exif-maxaperturevalue' =>'Maximum land aperture',
1874 'exif-subjectdistance' =>'Subject distance',
1875 'exif-meteringmode' =>'Metering mode',
1876 'exif-lightsource' =>'Light source',
1877 'exif-flash' =>'Flash',
1878 'exif-focallength' =>'Lens focal length',
1879 'exif-subjectarea' =>'Subject area',
1880 'exif-flashenergy' =>'Flash energy',
1881 'exif-spatialfrequencyresponse' =>'Spatial frequency response',
1882 'exif-focalplanexresolution' =>'Focal plane X resolution',
1883 'exif-focalplaneyresolution' =>'Focal plane Y resolution',
1884 'exif-focalplaneresolutionunit' =>'Focal plane resolution unit',
1885 'exif-subjectlocation' =>'Subject location',
1886 'exif-exposureindex' =>'Exposure index',
1887 'exif-sensingmethod' =>'Sensing method',
1888 'exif-filesource' =>'File source',
1889 'exif-scenetype' =>'Scene type',
1890 'exif-cfapattern' =>'CFA pattern',
1891 'exif-customrendered' =>'Custom image processing',
1892 'exif-exposuremode' =>'Exposure mode',
1893 'exif-whitebalance' =>'White Balance',
1894 'exif-digitalzoomratio' =>'Digital zoom ratio',
1895 'exif-focallengthin35mmfilm' =>'Focal length in 35 mm film',
1896 'exif-scenecapturetype' =>'Scene capture type',
1897 'exif-gaincontrol' =>'Scene control',
1898 'exif-contrast' =>'Contrast',
1899 'exif-saturation' =>'Saturation',
1900 'exif-sharpness' =>'Sharpness',
1901 'exif-devicesettingdescription' =>'Desice settings description',
1902 'exif-subjectdistancerange' =>'Subject distance range',
1903 'exif-imageuniqueid' =>'Unique image ID',
1904 'exif-gpsversionid' =>'GPS tag version',
1905 'exif-gpslatituderef' =>'North or South Latitude',
1906 'exif-gpslatitude' =>'Latitude',
1907 'exif-gpslongituderef' =>'East or West Longitude',
1908 'exif-gpslongitude' =>'Longitude',
1909 'exif-gpsaltituderef' =>'Altitude reference',
1910 'exif-gpsaltitude' =>'Altitude',
1911 'exif-gpstimestamp' =>'GPS time (atomic clock)',
1912 'exif-gpssatellites' =>'Satellites used for measurement',
1913 'exif-gpsstatus' =>'Receiver status',
1914 'exif-gpsmeasuremode' =>'Measurement mode',
1915 'exif-gpsdop' =>'Measurement precision',
1916 'exif-gpsspeedref' =>'Speed unit',
1917 'exif-gpsspeed' =>'Speed of GPS receiver',
1918 'exif-gpstrackref' =>'Reference for direction of movement',
1919 'exif-gpstrack' =>'Direction of movement',
1920 'exif-gpsimgdirectionref' =>'Reference for direction of image',
1921 'exif-gpsimgdirection' =>'Direction of image',
1922 'exif-gpsmapdatum' =>'Geodetic survey data used',
1923 'exif-gpsdestlatituderef' =>'Reference for latitude of destination',
1924 'exif-gpsdestlatitude' =>'Latitude destination',
1925 'exif-gpsdestlongituderef' =>'Reference for longitude of destination',
1926 'exif-gpsdestlongitude' =>'Longitude of destination',
1927 'exif-gpsdestbearingref' =>'Reference for bearing of destination',
1928 'exif-gpsdestbearing' =>'Bearing of destination',
1929 'exif-gpsdestdistanceref' =>'Reference for distance to destination',
1930 'exif-gpsdestdistance' =>'Distance to destination',
1931 'exif-gpsprocessingmethod' =>'Name of GPS processing method',
1932 'exif-gpsareainformation' =>'Name of GPS area',
1933 'exif-gpsdatestamp' =>'GPS date',
1934 'exif-gpsdifferential' =>'GPS differential correction',
1935
1936 # Make & model, can be wikified in order to link to the camera and model name
1937
1938 'exif-make-value' => '$1',
1939 'exif-model-value' =>'$1',
1940 'exif-software-value' => '$1',
1941
1942 # Exif attributes
1943
1944 'exif-compression-1' => 'Uncompressed',
1945 'exif-compression-6' => 'JPEG',
1946
1947 'exif-photometricinterpretation-1' => 'RGB',
1948 'exif-photometricinterpretation-6' => 'YCbCr',
1949
1950 'exif-orientation-1' => 'Normal', // 0th row: top; 0th column: left
1951 'exif-orientation-2' => 'Flipped horizontally', // 0th row: top; 0th column: right
1952 'exif-orientation-3' => 'Rotated 180°', // 0th row: bottom; 0th column: right
1953 'exif-orientation-4' => 'Flipped vertically', // 0th row: bottom; 0th column: left
1954 'exif-orientation-5' => 'Rotated 90° CCW and flipped vertically', // 0th row: left; 0th column: top
1955 'exif-orientation-6' => 'Roatated 90° CW', // 0th row: right; 0th column: top
1956 'exif-orientation-7' => 'Roateted 90° CW and flipped vertically', // 0th row: right; 0th column: bottom
1957 'exif-orientation-8' => 'Rotated 90° CCW', // 0th row: left; 0th column: bottom
1958
1959 'exif-planarconfiguration-1' => 'chunky format',
1960 'exif-planarconfiguration-2' => 'planar format',
1961
1962 'exif-resolutionunit-2' => 'inches',
1963 'exif-resolutionunit-3' => 'centimetres',
1964
1965 'exif-colorspace-1' => 'sRGB',
1966 'exif-colorspace-ffff.h' => 'FFFF.H',
1967
1968 'exif-componentsconfiguration-0' => 'does not exist',
1969 'exif-componentsconfiguration-1' => 'Y',
1970 'exif-componentsconfiguration-2' => 'Cb',
1971 'exif-componentsconfiguration-3' => 'Cr',
1972 'exif-componentsconfiguration-4' => 'R',
1973 'exif-componentsconfiguration-5' => 'G',
1974 'exif-componentsconfiguration-6' => 'B',
1975
1976 'exif-exposureprogram-0' => 'Not defined',
1977 'exif-exposureprogram-1' => 'Manual',
1978 'exif-exposureprogram-2' => 'Normal program',
1979 'exif-exposureprogram-3' => 'Aperture priority',
1980 'exif-exposureprogram-4' => 'Shutter priority',
1981 'exif-exposureprogram-5' => 'Creative program (biased toward depth of field)',
1982 'exif-exposureprogram-6' => 'Action program (biased toward fast shutter speed)',
1983 'exif-exposureprogram-7' => 'Portrait mode (for closeup photos with the background out of focus)',
1984 'exif-exposureprogram-8' => 'Landscape mode (for landscape photos with the background in focus)',
1985
1986 'exif-meteringmode-0' => 'Unknown',
1987 'exif-meteringmode-1' => 'Average',
1988 'exif-meteringmode-2' => 'CenterWeightedAverage',
1989 'exif-meteringmode-3' => 'Spot',
1990 'exif-meteringmode-4' => 'MultiSpot',
1991 'exif-meteringmode-5' => 'Pattern',
1992 'exif-meteringmode-6' => 'Partial',
1993 'exif-meteringmode-255' => 'Other',
1994
1995 'exif-lightsource-0' => 'Unknown',
1996 'exif-lightsource-1' => 'Daylight',
1997 'exif-lightsource-2' => 'Fluorescent',
1998 'exif-lightsource-3' => 'Tungsten (incandescent light)',
1999 'exif-lightsource-4' => 'Flash',
2000 'exif-lightsource-9' => 'Fine weather',
2001 'exif-lightsource-10' => 'Clody weather',
2002 'exif-lightsource-11' => 'Shade',
2003 'exif-lightsource-12' => 'Daylight fluorescent (D 5700 – 7100K)',
2004 'exif-lightsource-13' => 'Day white fluorescent (N 4600 – 5400K)',
2005 'exif-lightsource-14' => 'Cool white fluorescent (W 3900 – 4500K)',
2006 'exif-lightsource-15' => 'White fluorescent (WW 3200 – 3700K)',
2007 'exif-lightsource-17' => 'Standard light A',
2008 'exif-lightsource-18' => 'Standard light B',
2009 'exif-lightsource-19' => 'Standard light C',
2010 'exif-lightsource-20' => 'D55',
2011 'exif-lightsource-21' => 'D65',
2012 'exif-lightsource-22' => 'D75',
2013 'exif-lightsource-23' => 'D50',
2014 'exif-lightsource-24' => 'ISO studio tungsten',
2015 'exif-lightsource-255' => 'Other light source',
2016
2017 'exif-sensingmethod-1' => 'Undefined',
2018 'exif-sensingmethod-2' => 'One-chip color area sensor',
2019 'exif-sensingmethod-3' => 'Two-chip color area sensor',
2020 'exif-sensingmethod-4' => 'Three-chip color area sensor',
2021 'exif-sensingmethod-5' => 'Color sequential area sensor',
2022 'exif-sensingmethod-7' => 'Trilinear sensor',
2023 'exif-sensingmethod-8' => 'Color sequential linear sensor',
2024
2025 'exif-filesource-3' => 'DSC',
2026
2027 'exif-scenetype-1' => 'A directly photographed image',
2028
2029 'exif-customrendered-0' => 'Normal process',
2030 'exif-customrendered-1' => 'Custom process',
2031
2032 'exif-exposuremode-0' => 'Auto exposure',
2033 'exif-exposuremode-1' => 'Manual exposure',
2034 'exif-exposuremode-2' => 'Auto bracket',
2035
2036 'exif-whitebalance-0' => 'Auto white balance',
2037 'exif-whitebalance-1' => 'Manual white balance',
2038
2039 'exif-scenecapturetype-0' => 'Standard',
2040 'exif-scenecapturetype-1' => 'Landscape',
2041 'exif-scenecapturetype-2' => 'Portrait',
2042 'exif-scenecapturetype-3' => 'Night scene',
2043
2044 'exif-gaincontrol-0' => 'None',
2045 'exif-gaincontrol-1' => 'Low gain up',
2046 'exif-gaincontrol-2' => 'High gain up',
2047 'exif-gaincontrol-3' => 'Low gain down',
2048 'exif-gaincontrol-4' => 'High gain down',
2049
2050 'exif-contrast-0' => 'Normal',
2051 'exif-contrast-1' => 'Soft',
2052 'exif-contrast-2' => 'Hard',
2053
2054 'exif-saturation-0' => 'Normal',
2055 'exif-saturation-1' => 'Low saturation',
2056 'exif-saturation-2' => 'High saturation',
2057
2058 'exif-sharpness-0' => 'Normal',
2059 'exif-sharpness-1' => 'Soft',
2060 'exif-sharpness-2' => 'Hard',
2061
2062 'exif-subjectdistancerange-0' => 'Unknown',
2063 'exif-subjectdistancerange-1' => 'Macro',
2064 'exif-subjectdistancerange-2' => 'Close view',
2065 'exif-subjectdistancerange-3' => 'Distant view',
2066
2067 // Pseudotags used for GPSLatitudeRef and GPSDestLatitudeRef
2068 'exif-gpslatitude-n' => 'North latitude',
2069 'exif-gpslatitude-s' => 'South latitude',
2070
2071 // Pseudotags used for GPSLongitudeRef and GPSDestLongitudeRef
2072 'exif-gpslongitude-e' => 'East longitude',
2073 'exif-gpslongitude-w' => 'West longitude',
2074
2075 'exif-gpsstatus-a' => 'Measurement in progress',
2076 'exif-gpsstatus-v' => 'Measurement interoperability',
2077
2078 'exif-gpsmeasuremode-2' => '2-dimensional measurement',
2079 'exif-gpsmeasuremode-3' => '3-dimensional measurement',
2080
2081 // Pseudotags used for GPSSpeedRef and GPSDestDistanceRef
2082 'exif-gpsspeed-k' => 'Kilometres per hour',
2083 'exif-gpsspeed-m' => 'Miles per hour',
2084 'exif-gpsspeed-n' => 'Knots',
2085
2086 // Pseudotags used for GPSTrackRef, GPSImgDirectionRef and GPSDestBearingRef
2087 'exif-gpsdirection-t' => 'True direction',
2088 'exif-gpsdirection-m' => 'Magnetic direction',
2089
2090 # external editor support
2091 'edit-externally' => 'Edit this file using an external application',
2092 'edit-externally-help' => 'See the [http://meta.wikimedia.org/wiki/Help:External_editors setup instructions] for more information.',
2093
2094 # 'all' in various places, this might be different for inflicted languages
2095 'recentchangesall' => 'all',
2096 'imagelistall' => 'all',
2097 'watchlistall1' => 'all',
2098 'watchlistall2' => 'all',
2099 'contributionsall' => 'all',
2100
2101 # E-mail address confirmation
2102 'confirmemail' => 'Confirm E-mail address',
2103 'confirmemail_text' => "This wiki requires that you validate your e-mail address
2104 before using e-mail features. Activate the button below to send a confirmation
2105 mail to your address. The mail will include a link containing a code; load the
2106 link in your browser to confirm that your e-mail address is valid.",
2107 'confirmemail_send' => 'Mail a confirmation code',
2108 'confirmemail_sent' => 'Confirmation e-mail sent.',
2109 'confirmemail_sendfailed' => 'Could not send confirmation mail. Check address for invalid characters.',
2110 'confirmemail_invalid' => 'Invalid confirmation code. The code may have expired.',
2111 'confirmemail_success' => 'Your e-mail address has been confirmed. You may now log in and enjoy the wiki.',
2112 'confirmemail_loggedin' => 'Your e-mail address has now been confirmed.',
2113 'confirmemail_error' => 'Something went wrong saving your confirmation.',
2114
2115 'confirmemail_subject' => '{{SITENAME}} e-mail address confirmation',
2116 'confirmemail_body' => "Someone, probably you from IP address $1, has registered an
2117 account \"$2\" with this e-mail address on {{SITENAME}}.
2118
2119 To confirm that this account really does belong to you and activate
2120 e-mail features on {{SITENAME}}, open this link in your browser:
2121
2122 $3
2123
2124 If this is *not* you, don't follow the link. This confirmation code
2125 will expire at $4.
2126 ",
2127
2128 );
2129
2130 /* a fake language converter */
2131 class fakeConverter {
2132 var $mLang;
2133 function fakeConverter($langobj) {$this->mLang = $langobj;}
2134 function convert($t, $i) {return $t;}
2135 function getVariants() { return array( strtolower( substr( get_class( $this->mLang ), 8 ) ) ); }
2136 function getPreferredVariant() {return strtolower( substr( get_class( $this->mLang ), 8 ) );}
2137 function findVariantLink(&$l, &$n) {}
2138 function getExtraHashOptions() {return '';}
2139 function getParsedTitle() {return '';}
2140 function markNoConversion($text) {return $text;}
2141 function convertCategoryKey( $key ) {return $key; }
2142
2143 }
2144
2145 #--------------------------------------------------------------------------
2146 # Internationalisation code
2147 #--------------------------------------------------------------------------
2148
2149 class Language {
2150 var $mConverter;
2151 function Language() {
2152
2153 # Copies any missing values in the specified arrays from En to the current language
2154 $fillin = array( 'wgSysopSpecialPages', 'wgValidSpecialPages', 'wgDeveloperSpecialPages' );
2155 $name = get_class( $this );
2156
2157 if( strpos( $name, 'language' ) == 0){
2158 $lang = ucfirst( substr( $name, 8 ) );
2159 foreach( $fillin as $arrname ){
2160 $langver = "{$arrname}{$lang}";
2161 $enver = "{$arrname}En";
2162 if( ! isset( $GLOBALS[$langver] ) || ! isset( $GLOBALS[$enver] ))
2163 continue;
2164 foreach($GLOBALS[$enver] as $spage => $text){
2165 if( ! isset( $GLOBALS[$langver][$spage] ) )
2166 $GLOBALS[$langver][$spage] = $text;
2167 }
2168 }
2169 }
2170 $this->mConverter = new fakeConverter($this);
2171 }
2172
2173 /**
2174 * Exports the default user options as defined in
2175 * $wgDefaultUserOptionsEn, user preferences can override some of these
2176 * depending on what's in (Local|Default)Settings.php and some defines.
2177 *
2178 * @return array
2179 */
2180 function getDefaultUserOptions() {
2181 global $wgDefaultUserOptionsEn ;
2182 return $wgDefaultUserOptionsEn ;
2183 }
2184
2185 /**
2186 * Exports $wgBookstoreListEn
2187 * @return array
2188 */
2189 function getBookstoreList() {
2190 global $wgBookstoreListEn ;
2191 return $wgBookstoreListEn ;
2192 }
2193
2194 /**
2195 * @return array
2196 */
2197 function getNamespaces() {
2198 global $wgNamespaceNamesEn;
2199 return $wgNamespaceNamesEn;
2200 }
2201
2202 /**
2203 * A convenience function that returns the same thing as
2204 * getNamespaces() except with the array values changed to ' '
2205 * where it found '_', useful for producing output to be displayed
2206 * e.g. in <select> forms.
2207 *
2208 * @return array
2209 */
2210 function getFormattedNamespaces() {
2211 $ns = $this->getNamespaces();
2212 foreach($ns as $k => $v) {
2213 $ns[$k] = strtr($v, '_', ' ');
2214 }
2215 return $ns;
2216 }
2217
2218 /**
2219 * Get a namespace value by key
2220 * <code>
2221 * $mw_ns = $wgContLang->getNsText( NS_MEDIAWIKI );
2222 * echo $mw_ns; // prints 'MediaWiki'
2223 * </code>
2224 *
2225 * @param int $index the array key of the namespace to return
2226 * @return string
2227 */
2228 function getNsText( $index ) {
2229 global $wgNamespaceNamesEn;
2230 return $wgNamespaceNamesEn[$index];
2231 }
2232 /**
2233 * A convenience function that returns the same thing as
2234 * getNsText() except with '_' changed to ' ', useful for
2235 * producing output.
2236 *
2237 * @return array
2238 */
2239 function getFormattedNsText( $index ) {
2240 $ns = $this->getNsText( $index );
2241 return strtr($ns, '_', ' ');
2242 }
2243
2244 /**
2245 * Get a namespace key by value
2246 *
2247 * @param string $text
2248 * @return mixed An integer if $text is a valid value otherwise false
2249 */
2250 function getNsIndex( $text ) {
2251 global $wgNamespaceNamesEn;
2252
2253 foreach ( $wgNamespaceNamesEn as $i => $n ) {
2254 if ( 0 == strcasecmp( $n, $text ) ) { return $i; }
2255 }
2256 return false;
2257 }
2258
2259 /**
2260 * short names for language variants used for language conversion links.
2261 *
2262 * @param string $code
2263 * @return string
2264 */
2265 function getVariantname( $code ) {
2266 return wfMsg( "variantname-$code" );
2267 }
2268
2269 function specialPage( $name ) {
2270 return $this->getNsText(NS_SPECIAL) . ':' . $name;
2271 }
2272
2273 function getQuickbarSettings() {
2274 global $wgQuickbarSettingsEn;
2275 return $wgQuickbarSettingsEn;
2276 }
2277
2278 function getSkinNames() {
2279 global $wgSkinNamesEn;
2280 return $wgSkinNamesEn;
2281 }
2282
2283 function getMathNames() {
2284 global $wgMathNamesEn;
2285 return $wgMathNamesEn;
2286 }
2287
2288 function getDateFormats() {
2289 global $wgDateFormatsEn;
2290 return $wgDateFormatsEn;
2291 }
2292
2293 function getValidationTypes() {
2294 global $wgValidationTypesEn;
2295 return $wgValidationTypesEn;
2296 }
2297
2298 function getUserToggles() {
2299 global $wgUserTogglesEn;
2300 return $wgUserTogglesEn;
2301 }
2302
2303 function getUserToggle( $tog ) {
2304 return wfMsg( "tog-$tog" );
2305 }
2306
2307 function getLanguageNames() {
2308 global $wgLanguageNamesEn;
2309 return $wgLanguageNamesEn;
2310 }
2311
2312 function getLanguageName( $code ) {
2313 global $wgLanguageNamesEn;
2314 if ( ! array_key_exists( $code, $wgLanguageNamesEn ) ) {
2315 return "";
2316 }
2317 return $wgLanguageNamesEn[$code];
2318 }
2319
2320 function getMonthName( $key ) {
2321 global $wgMonthNamesEn, $wgContLang;
2322 // see who called us and use the correct message function
2323 if( get_class( $wgContLang->getLangObj() ) == get_class( $this ) )
2324 return wfMsgForContent($wgMonthNamesEn[$key-1]);
2325 else
2326 return wfMsg($wgMonthNamesEn[$key-1]);
2327 }
2328
2329 /* by default we just return base form */
2330 function getMonthNameGen( $key ) {
2331 return $this->getMonthName( $key );
2332 }
2333
2334 function getMonthAbbreviation( $key ) {
2335 global $wgMonthAbbreviationsEn, $wgContLang;
2336 // see who called us and use the correct message function
2337 if( get_class( $wgContLang->getLangObj() ) == get_class( $this ) )
2338 return wfMsgForContent(@$wgMonthAbbreviationsEn[$key-1]);
2339 else
2340 return wfMsg(@$wgMonthAbbreviationsEn[$key-1]);
2341 }
2342
2343 function getWeekdayName( $key ) {
2344 global $wgWeekdayNamesEn, $wgContLang;
2345 // see who called us and use the correct message function
2346 if( get_class( $wgContLang->getLangObj() ) == get_class( $this ) )
2347 return wfMsgForContent($wgWeekdayNamesEn[$key-1]);
2348 else
2349 return wfMsg($wgWeekdayNamesEn[$key-1]);
2350 }
2351
2352 /**
2353 * Used by date() and time() to adjust the time output.
2354 * @access public
2355 * @param int $ts the time in date('YmdHis') format
2356 * @param mixed $tz adjust the time by this amount (default false)
2357 * @return int
2358 */
2359 function userAdjust( $ts, $tz = false ) {
2360 global $wgUser, $wgLocalTZoffset;
2361
2362 if (!$tz) {
2363 $tz = $wgUser->getOption( 'timecorrection' );
2364 }
2365
2366 if ( $tz === '' ) {
2367 $hrDiff = isset( $wgLocalTZoffset ) ? $wgLocalTZoffset : 0;
2368 $minDiff = 0;
2369 } elseif ( strpos( $tz, ':' ) !== false ) {
2370 $tzArray = explode( ':', $tz );
2371 $hrDiff = intval($tzArray[0]);
2372 $minDiff = intval($hrDiff < 0 ? -$tzArray[1] : $tzArray[1]);
2373 } else {
2374 $hrDiff = intval( $tz );
2375 }
2376 if ( 0 == $hrDiff && 0 == $minDiff ) { return $ts; }
2377
2378 $t = mktime( (
2379 (int)substr( $ts, 8, 2) ) + $hrDiff, # Hours
2380 (int)substr( $ts, 10, 2 ) + $minDiff, # Minutes
2381 (int)substr( $ts, 12, 2 ), # Seconds
2382 (int)substr( $ts, 4, 2 ), # Month
2383 (int)substr( $ts, 6, 2 ), # Day
2384 (int)substr( $ts, 0, 4 ) ); #Year
2385 return date( 'YmdHis', $t );
2386 }
2387
2388 /**
2389 * This is meant to be used by time(), date(), and timeanddate() to get
2390 * the date preference they're supposed to use, it should be used in
2391 * all children.
2392 *
2393 *<code>
2394 * function timeanddate([...], $format = '0') {
2395 * $datePreference = $this->dateFormat($format);
2396 * [...]
2397 *</code>
2398 *
2399 * @param mixed $format
2400 * @return string
2401 */
2402 function dateFormat( $format ) {
2403 global $wgUser;
2404
2405 if ( !$wgUser->isLoggedIn() || $format === false ) {
2406 $options = $this->getDefaultUserOptions();
2407 return $options['date'];
2408 } else {
2409 return $wgUser->getOption( 'date' );
2410 }
2411 }
2412
2413 /**
2414 * @access public
2415 * @param mixed $ts the time format which needs to be turned into a
2416 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
2417 * @param bool $adj whether to adjust the time output according to the
2418 * user configured offset ($timecorrection)
2419 * @param mixed $format what format to return, if it's false output the
2420 * default one.
2421 * @param string $timecorrection the time offset as returned by
2422 * validateTimeZone() in Special:Preferences
2423 * @return string
2424 */
2425 function date( $ts, $adj = false, $format = true, $timecorrection = false ) {
2426 global $wgAmericanDates, $wgUser;
2427
2428 if ( $adj ) { $ts = $this->userAdjust( $ts, $timecorrection ); }
2429
2430 $datePreference = $this->dateFormat($format);
2431
2432 if ($datePreference == '0') {$datePreference = $wgAmericanDates ? '0' : '2';}
2433
2434 $month = $this->getMonthName( substr( $ts, 4, 2 ) );
2435 $day = $this->formatNum( 0 + substr( $ts, 6, 2 ) );
2436 $year = $this->formatNum( substr( $ts, 0, 4 ), true );
2437
2438 switch( $datePreference ) {
2439 case '2': return "$day $month $year";
2440 case '3': return "$year $month $day";
2441 case 'ISO 8601': return substr($ts, 0, 4). '-' . substr($ts, 4, 2). '-' .substr($ts, 6, 2);
2442 default: return "$month $day, $year";
2443 }
2444 }
2445
2446 /**
2447 * @access public
2448 * @param mixed $ts the time format which needs to be turned into a
2449 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
2450 * @param bool $adj whether to adjust the time output according to the
2451 * user configured offset ($timecorrection)
2452 * @param mixed $format what format to return, if it's false output the
2453 * default one (default true)
2454 * @param string $timecorrection the time offset as returned by
2455 * validateTimeZone() in Special:Preferences
2456 * @return string
2457 */
2458 function time( $ts, $adj = false, $format = true, $timecorrection = false ) {
2459 global $wgUser, $wgAmericanDates;
2460
2461 if ( $adj ) { $ts = $this->userAdjust( $ts, $timecorrection ); }
2462 $datePreference = $this->dateFormat($format);
2463
2464 if ($datePreference == '0') {$datePreference = $wgAmericanDates ? '0' : '2';}
2465
2466 $t = substr( $ts, 8, 2 ) . ':' . substr( $ts, 10, 2 );
2467
2468 if ( $datePreference === 'ISO 8601' ) {
2469 $t .= ':' . substr( $ts, 12, 2 );
2470 }
2471 return $this->formatNum( $t );
2472 }
2473
2474 /**
2475 * @access public
2476 * @param mixed $ts the time format which needs to be turned into a
2477 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
2478 * @param bool $adj whether to adjust the time output according to the
2479 * user configured offset ($timecorrection)
2480 * @param mixed $format what format to return, if it's false output the
2481 * default one (default true)
2482 * @param string $timecorrection the time offset as returned by
2483 * validateTimeZone() in Special:Preferences
2484 * @return string
2485 */
2486 function timeanddate( $ts, $adj = false, $format = true, $timecorrection = false) {
2487 global $wgUser, $wgAmericanDates;
2488
2489 $datePreference = $this->dateFormat($format);
2490
2491 switch ( $datePreference ) {
2492 case 'ISO 8601': return $this->date( $ts, $adj, $datePreference, $timecorrection ) . ' ' .
2493 $this->time( $ts, $adj, $datePreference, $timecorrection );
2494 default: return $this->time( $ts, $adj, $datePreference, $timecorrection ) . ', ' .
2495 $this->date( $ts, $adj, $datePreference, $timecorrection );
2496 }
2497 }
2498
2499 function getValidSpecialPages() {
2500 global $wgValidSpecialPagesEn;
2501 return $wgValidSpecialPagesEn;
2502 }
2503
2504 function getSysopSpecialPages() {
2505 global $wgSysopSpecialPagesEn;
2506 return $wgSysopSpecialPagesEn;
2507 }
2508
2509 function getDeveloperSpecialPages() {
2510 global $wgDeveloperSpecialPagesEn;
2511 return $wgDeveloperSpecialPagesEn;
2512 }
2513
2514 function getMessage( $key ) {
2515 global $wgAllMessagesEn;
2516 return @$wgAllMessagesEn[$key];
2517 }
2518
2519 function getAllMessages() {
2520 global $wgAllMessagesEn;
2521 return $wgAllMessagesEn;
2522 }
2523
2524 function iconv( $in, $out, $string ) {
2525 # For most languages, this is a wrapper for iconv
2526 return iconv( $in, $out, $string );
2527 }
2528
2529 function ucfirst( $string ) {
2530 # For most languages, this is a wrapper for ucfirst()
2531 return ucfirst( $string );
2532 }
2533
2534 function lcfirst( $s ) {
2535 return strtolower( $s{0} ). substr( $s, 1 );
2536 }
2537
2538 function checkTitleEncoding( $s ) {
2539 global $wgInputEncoding;
2540
2541 # Check for UTF-8 URLs; Internet Explorer produces these if you
2542 # type non-ASCII chars in the URL bar or follow unescaped links.
2543 $ishigh = preg_match( '/[\x80-\xff]/', $s);
2544 $isutf = ($ishigh ? preg_match( '/^([\x00-\x7f]|[\xc0-\xdf][\x80-\xbf]|' .
2545 '[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xf7][\x80-\xbf]{3})+$/', $s ) : true );
2546
2547 if( ($wgInputEncoding != 'utf-8') and $ishigh and $isutf )
2548 return @iconv( 'UTF-8', $wgInputEncoding, $s );
2549
2550 if( ($wgInputEncoding == 'utf-8') and $ishigh and !$isutf )
2551 return utf8_encode( $s );
2552
2553 # Other languages can safely leave this function, or replace
2554 # it with one to detect and convert another legacy encoding.
2555 return $s;
2556 }
2557
2558 /**
2559 * Some languages have special punctuation to strip out
2560 * or characters which need to be converted for MySQL's
2561 * indexing to grok it correctly. Make such changes here.
2562 *
2563 * @param string $in
2564 * @return string
2565 */
2566 function stripForSearch( $in ) {
2567 return strtolower( $in );
2568 }
2569
2570 function convertForSearchResult( $termsArray ) {
2571 # some languages, e.g. Chinese, need to do a conversion
2572 # in order for search results to be displayed correctly
2573 return $termsArray;
2574 }
2575
2576 /**
2577 * Get the first character of a string. In ASCII, return
2578 * first byte of the string. UTF8 and others have to
2579 * overload this.
2580 *
2581 * @param string $s
2582 * @return string
2583 */
2584 function firstChar( $s ) {
2585 return $s[0];
2586 }
2587
2588 function initEncoding() {
2589 # Some languages may have an alternate char encoding option
2590 # (Esperanto X-coding, Japanese furigana conversion, etc)
2591 # If this language is used as the primary content language,
2592 # an override to the defaults can be set here on startup.
2593 #global $wgInputEncoding, $wgOutputEncoding, $wgEditEncoding;
2594 }
2595
2596 function setAltEncoding() {
2597 # Some languages may have an alternate char encoding option
2598 # (Esperanto X-coding, Japanese furigana conversion, etc)
2599 # If 'altencoding' is checked in user prefs, this gives a
2600 # chance to swap out the default encoding settings.
2601 #global $wgInputEncoding, $wgOutputEncoding, $wgEditEncoding;
2602 }
2603
2604 function recodeForEdit( $s ) {
2605 # For some languages we'll want to explicitly specify
2606 # which characters make it into the edit box raw
2607 # or are converted in some way or another.
2608 # Note that if wgOutputEncoding is different from
2609 # wgInputEncoding, this text will be further converted
2610 # to wgOutputEncoding.
2611 global $wgInputEncoding, $wgEditEncoding;
2612 if( $wgEditEncoding == '' or
2613 $wgEditEncoding == $wgInputEncoding ) {
2614 return $s;
2615 } else {
2616 return $this->iconv( $wgInputEncoding, $wgEditEncoding, $s );
2617 }
2618 }
2619
2620 function recodeInput( $s ) {
2621 # Take the previous into account.
2622 global $wgInputEncoding, $wgOutputEncoding, $wgEditEncoding;
2623 if($wgEditEncoding != "") {
2624 $enc = $wgEditEncoding;
2625 } else {
2626 $enc = $wgOutputEncoding;
2627 }
2628 if( $enc == $wgInputEncoding ) {
2629 return $s;
2630 } else {
2631 return $this->iconv( $enc, $wgInputEncoding, $s );
2632 }
2633 }
2634
2635 /**
2636 * For right-to-left language support
2637 *
2638 * @return bool
2639 */
2640 function isRTL() { return false; }
2641
2642 /**
2643 * To allow "foo[[bar]]" to extend the link over the whole word "foobar"
2644 *
2645 * @return bool
2646 */
2647 function linkPrefixExtension() { return false; }
2648
2649
2650 function &getMagicWords() {
2651 global $wgMagicWordsEn;
2652 return $wgMagicWordsEn;
2653 }
2654
2655 # Fill a MagicWord object with data from here
2656 function getMagic( &$mw ) {
2657 $raw =& $this->getMagicWords();
2658 if( !isset( $raw[$mw->mId] ) ) {
2659 # Fall back to English if local list is incomplete
2660 $raw =& Language::getMagicWords();
2661 }
2662 $rawEntry = $raw[$mw->mId];
2663 $mw->mCaseSensitive = $rawEntry[0];
2664 $mw->mSynonyms = array_slice( $rawEntry, 1 );
2665 }
2666
2667 /**
2668 * Italic is unsuitable for some languages
2669 *
2670 * @access public
2671 *
2672 * @param string $text The text to be emphasized.
2673 * @return string
2674 */
2675 function emphasize( $text ) {
2676 return "<em>$text</em>";
2677 }
2678
2679 /**
2680 * This function enables formatting of numbers, it should only come
2681 * into effect when the $wgTranslateNumerals variable is TRUE.
2682 *
2683 * Normally we output all numbers in plain en_US style, that is
2684 * 293,291.235 for twohundredninetythreethousand-twohundredninetyone
2685 * point twohundredthirtyfive. However this is not sutable for all
2686 * languages, some such as Pakaran want ੨੯੩,੨੯੫.੨੩੫ and others such as
2687 * Icelandic just want to use commas instead of dots, and dots instead
2688 * of commas like "293.291,235".
2689 *
2690 * An example of this function being called:
2691 * <code>
2692 * wfMsg( 'message', $wgLang->formatNum( $num ) )
2693 * </code>
2694 *
2695 * See LanguageGu.php for the Gujarati implementation and
2696 * LanguageIs.php for the , => . and . => , implementation.
2697 *
2698 * @todo check if it's viable to use localeconv() for the decimal
2699 * seperator thing.
2700 * @access public
2701 * @param mixed $number the string to be formatted, should be an integer or
2702 * a floating point number.
2703 * @param bool $year are we being passed a year? (turns off commafication)
2704 * @return mixed whatever we're fed if it's a year, a string otherwise.
2705 */
2706 function formatNum( $number, $year = false ) {
2707 return $year ? $number : $this->commafy($number);
2708 }
2709
2710 /**
2711 * Adds commas to a given number
2712 *
2713 * @param mixed $_
2714 * @return string
2715 */
2716 function commafy($_) {
2717 return strrev((string)preg_replace('/(\d{3})(?=\d)(?!\d*\.)/','$1,',strrev($_)));
2718 }
2719
2720 /**
2721 * For the credit list in includes/Credits.php (action=credits)
2722 *
2723 * @param array $l
2724 * @return string
2725 */
2726 function listToText( $l ) {
2727 $s = '';
2728 $m = count($l) - 1;
2729 for ($i = $m; $i >= 0; $i--) {
2730 if ($i == $m) {
2731 $s = $l[$i];
2732 } else if ($i == $m - 1) {
2733 $s = $l[$i] . ' ' . $this->getMessage('and') . ' ' . $s;
2734 } else {
2735 $s = $l[$i] . ', ' . $s;
2736 }
2737 }
2738 return $s;
2739 }
2740
2741 # Crop a string from the beginning or end to a certain number of bytes.
2742 # (Bytes are used because our storage has limited byte lengths for some
2743 # columns in the database.) Multibyte charsets will need to make sure that
2744 # only whole characters are included!
2745 #
2746 # $length does not include the optional ellipsis.
2747 # If $length is negative, snip from the beginning
2748 function truncate( $string, $length, $ellipsis = '' ) {
2749 if( $length == 0 ) {
2750 return $ellipsis;
2751 }
2752 if ( strlen( $string ) <= abs( $length ) ) {
2753 return $string;
2754 }
2755 if( $length > 0 ) {
2756 $string = substr( $string, 0, $length );
2757 return $string . $ellipsis;
2758 } else {
2759 $string = substr( $string, $length );
2760 return $ellipsis . $string;
2761 }
2762 }
2763
2764 /**
2765 * Grammatical transformations, needed for inflected languages
2766 * Invoked by putting {{grammar:case|word}} in a message
2767 *
2768 * @param string $word
2769 * @param string $case
2770 * @return string
2771 */
2772 function convertGrammar( $word, $case ) {
2773 return $word;
2774 }
2775
2776 /**
2777 * languages like Chinese need to be segmented in order for the diff
2778 * to be of any use
2779 *
2780 * @param string $text
2781 * @return string
2782 */
2783 function segmentForDiff( $text ) {
2784 return $text;
2785 }
2786
2787 /**
2788 * and unsegment to show the result
2789 *
2790 * @param string $text
2791 * @return string
2792 */
2793 function unsegmentForDiff( $text ) {
2794 return $text;
2795 }
2796
2797 # convert text to different variants of a language.
2798 function convert( $text, $isTitle = false) {
2799 return $this->mConverter->convert($text, $isTitle);
2800 }
2801
2802 function convertCategoryKey( $key ) {
2803 return $this->mConverter->convertCategoryKey( $key );
2804 }
2805
2806 /**
2807 * get the list of variants supported by this langauge
2808 * see sample implementation in LanguageZh.php
2809 *
2810 * @return array an array of language codes
2811 */
2812 function getVariants() {
2813 return $this->mConverter->getVariants();
2814 }
2815
2816
2817 function getPreferredVariant() {
2818 return $this->mConverter->getPreferredVariant();
2819 }
2820
2821 /**
2822 * if a language supports multiple variants, it is
2823 * possible that non-existing link in one variant
2824 * actually exists in another variant. this function
2825 * tries to find it. See e.g. LanguageZh.php
2826 *
2827 * @param string $link the name of the link
2828 * @param mixed $nt the title object of the link
2829 * @return null the input parameters may be modified upon return
2830 */
2831 function findVariantLink( &$link, &$nt ) {
2832 $this->mConverter->findVariantLink($link, $nt);
2833 }
2834
2835 /**
2836 * returns language specific options used by User::getPageRenderHash()
2837 * for example, the preferred language variant
2838 *
2839 * @return string
2840 * @access public
2841 */
2842 function getExtraHashOptions() {
2843 return $this->mConverter->getExtraHashOptions();
2844 }
2845
2846 /**
2847 * for languages that support multiple variants, the title of an
2848 * article may be displayed differently in different variants. this
2849 * function returns the apporiate title defined in the body of the article.
2850 *
2851 * @return string
2852 */
2853 function getParsedTitle() {
2854 return $this->mConverter->getParsedTitle();
2855 }
2856
2857 /**
2858 * Enclose a string with the "no conversion" tag. This is used by
2859 * various functions in the Parser
2860 *
2861 * @param string $text text to be tagged for no conversion
2862 * @return string the tagged text
2863 */
2864 function markNoConversion( $text ) {
2865 return $this->mConverter->markNoConversion( $text );
2866 }
2867
2868 /**
2869 * A regular expression to match legal word-trailing characters
2870 * which should be merged onto a link of the form [[foo]]bar.
2871 *
2872 * @return string
2873 * @access public
2874 */
2875 function linkTrail() {
2876 $trail = $this->getMessage( 'linktrail' );
2877 if( empty( $trail ) ) $trail = Language::linkTrail();
2878 return $trail;
2879 }
2880
2881 function getLangObj() {
2882 return $this;
2883 }
2884
2885
2886 }
2887
2888 # This should fail gracefully if there's not a localization available
2889 wfSuppressWarnings();
2890 include_once( 'Language' . str_replace( '-', '_', ucfirst( $wgLanguageCode ) ) . '.php' );
2891 wfRestoreWarnings();
2892
2893 }
2894 ?>