Various fixes, see the version of [[m:Development status]] before this commit for...
[lhc/web/wiklou.git] / languages / Language.php
1 <?
2 #--------------------------------------------------------------------------
3 # Constants
4 #--------------------------------------------------------------------------
5
6 # Namespaces
7 define("NS_SPECIAL", -1);
8 define("NS_MAIN", 0);
9 define("NS_TALK", 1);
10 define("NS_USER", 2);
11 define("NS_USER_TALK", 3);
12 define("NS_WP", 4);
13 define("NS_WP_TALK", 5);
14 define("NS_IMAGE", 6);
15 define("NS_IMAGE_TALK", 7);
16 define("NS_MEDIAWIKI", 8);
17 define("NS_MEDIAWIKI_TALK", 9);
18
19 # Magic words
20 define("MAG_REDIRECT", 0);
21 define("MAG_NOTOC", 1);
22 define("MAG_START", 2);
23 define("MAG_CURRENTMONTH", 3);
24 define("MAG_CURRENTMONTHNAME", 4);
25 define("MAG_CURRENTDAY", 5);
26 define("MAG_CURRENTDAYNAME", 6);
27 define("MAG_CURRENTYEAR", 7);
28 define("MAG_CURRENTTIME", 8);
29 define("MAG_NUMBEROFARTICLES", 9);
30 define("MAG_CURRENTMONTHNAMEGEN", 10);
31 define("MAG_MSG", 11);
32 define("MAG_SUBST", 12);
33 define("MAG_MSGNW", 13);
34
35 #--------------------------------------------------------------------------
36 # Language-specific text
37 #--------------------------------------------------------------------------
38
39 # NOTE: To turn off "Current Events" in the sidebar,
40 # set "currentevents" => "-"
41
42 # The names of the namespaces can be set here, but the numbers
43 # are magical, so don't change or move them! The Namespace class
44 # encapsulates some of the magic-ness.
45 #
46 /* private */ $wgNamespaceNamesEn = array(
47 -1 => "Special",
48 0 => "",
49 1 => "Talk",
50 2 => "User",
51 3 => "User_talk",
52 4 => "Wikipedia",
53 5 => "Wikipedia_talk",
54 6 => "Image",
55 7 => "Image_talk",
56 8 => "MediaWiki",
57 9 => "MediaWiki_talk"
58 );
59
60 /* private */ $wgDefaultUserOptionsEn = array(
61 "quickbar" => 1, "underline" => 1, "hover" => 1,
62 "cols" => 80, "rows" => 25, "searchlimit" => 20,
63 "contextlines" => 5, "contextchars" => 50,
64 "skin" => 0, "math" => 1, "rcdays" => 7, "rclimit" => 50,
65 "highlightbroken" => 1, "stubthreshold" => 0,
66 "previewontop" => 1, "editsection"=>1,"editsectiononrightclick"=>0, "showtoc"=>1,
67 "date" => 0
68 );
69
70 /* private */ $wgQuickbarSettingsEn = array(
71 "None", "Fixed left", "Fixed right", "Floating left"
72 );
73
74 /* private */ $wgSkinNamesEn = array(
75 "Standard", "Nostalgia", "Cologne Blue", "Paddington", "Montparnasse"
76 );
77
78 /* private */ $wgMathNamesEn = array(
79 "Always render PNG",
80 "HTML if very simple or else PNG",
81 "HTML if possible or else PNG",
82 "Leave it as TeX (for text browsers)",
83 "Recommended for modern browsers"
84 );
85
86 /* private */ $wgDateFormatsEn = array(
87 "No preference",
88 "January 15, 2001",
89 "15 January 2001",
90 "2001 January 15"
91 );
92
93 /* private */ $wgUserTogglesEn = array(
94 "hover" => "Show hoverbox over wiki links",
95 "underline" => "Underline links",
96 "highlightbroken" => "Format broken links <a href=\"\" class=\"new\">like
97 this</a> (alternative: like this<a href=\"\" class=\"internal\">?</a>).",
98 "justify" => "Justify paragraphs",
99 "hideminor" => "Hide minor edits in recent changes",
100 "usenewrc" => "Enhanced recent changes (not for all browsers)",
101 "numberheadings" => "Auto-number headings",
102 "editondblclick" => "Edit pages on double click (JavaScript)",
103 "editsection"=>"Enable section editing via [edit] links",
104 "editsectiononrightclick"=>"Enable section editing by right clicking<br> on section titles (JavaScript)",
105 "showtoc"=>"Show table of contents<br>(for articles with more than 3 headings)",
106 "rememberpassword" => "Remember password across sessions",
107 "editwidth" => "Edit box has full width",
108 "watchdefault" => "Add pages you edit to your watchlist",
109 "minordefault" => "Mark all edits minor by default",
110 "previewontop" => "Show preview before edit box and not after it",
111 "nocache" => "Disable page caching"
112 );
113
114 /* private */ $wgBookstoreListEn = array(
115 "AddALL" => "http://www.addall.com/New/Partner.cgi?query=$1&type=ISBN",
116 "PriceSCAN" => "http://www.pricescan.com/books/bookDetail.asp?isbn=$1",
117 "Barnes & Noble" => "http://shop.barnesandnoble.com/bookSearch/isbnInquiry.asp?isbn=$1",
118 "Amazon.com" => "http://www.amazon.com/exec/obidos/ISBN=$1"
119 );
120
121 /* private */ $wgLanguageNamesEn = array(
122 "aa" => "Afar",
123 "ab" => "Abkhazian",
124 "af" => "Afrikaans",
125 "am" => "Amharic",
126 "ar" => "&#8238;&#1575;&#1604;&#1593;&#1585;&#1576;&#1610;&#1577;&#8236; (Araby)",
127 "as" => "Assamese",
128 "ay" => "Aymara",
129 "az" => "Azerbaijani",
130 "ba" => "Bashkir",
131 "be" => "&#1041;&#1077;&#1083;&#1072;&#1088;&#1091;&#1089;&#1082;&#1080;",
132 "bh" => "Bihara",
133 "bi" => "Bislama",
134 "bn" => "Bengali",
135 "bo" => "Tibetan",
136 "br" => "Brezhoneg",
137 "bs" => "Bosnian",
138 "ca" => "Catal&#224;",
139 "ch" => "Chamoru",
140 "co" => "Corsican",
141 "cs" => "&#268;esk&#225;",
142 "cy" => "Cymraeg",
143 "da" => "Dansk", # Note two different subdomains.
144 "dk" => "Dansk", # 'da' is correct for the language.
145 "de" => "Deutsch",
146 "dz" => "Bhutani",
147 "el" => "&#917;&#955;&#955;&#951;&#957;&#953;&#954;&#940; (Ellenika)",
148 "en" => "English",
149 "eo" => "Esperanto",
150 "es" => "Espa&#241;ol",
151 "et" => "Eesti",
152 "eu" => "Euskara",
153 "fa" => "&#8238;&#1601;&#1585;&#1587;&#1609;&#8236; (Farsi)",
154 "fi" => "Suomi",
155 "fj" => "Fijian",
156 "fo" => "Faeroese",
157 "fr" => "Fran&#231;ais",
158 "fy" => "Frysk",
159 "ga" => "Gaelige",
160 "gl" => "Galician",
161 "gn" => "Guarani",
162 "gu" => "&#2711;&#2753;&#2716;&#2736;&#2750;&#2724;&#2752; (Gujarati)",
163 "ha" => "Hausa",
164 "he" => "&#1506;&#1489;&#1512;&#1497;&#1514; (Ivrit)",
165 "hi" => "&#2361;&#2367;&#2344;&#2381;&#2342;&#2368; (Hindi)",
166 "hr" => "Hrvatski",
167 "hu" => "Magyar",
168 "hy" => "Armenian",
169 "ia" => "Interlingua",
170 "id" => "Indonesia",
171 "ik" => "Inupiak",
172 "is" => "&#205;slenska",
173 "it" => "Italiano",
174 "iu" => "Inuktitut",
175 "ja" => "&#26085;&#26412;&#35486; (Nihongo)",
176 "jv" => "Javanese",
177 "ka" => "&#4325;&#4304;&#4320;&#4311;&#4309;&#4308;&#4314;&#4312; (Kartuli)",
178 "kk" => "Kazakh",
179 "kl" => "Greenlandic",
180 "km" => "Cambodian",
181 "kn" => "Kannada",
182 "ko" => "&#54620;&#44397;&#50612; (Hangukeo)",
183 "ks" => "Kashmiri",
184 "kw" => "Kernewek",
185 "ky" => "Kirghiz",
186 "la" => "Latina",
187 "ln" => "Lingala",
188 "lo" => "Laotian",
189 "lt" => "Lietuvi&#371;",
190 "lv" => "Latvian",
191 "mg" => "Malagasy",
192 "mi" => "Maori",
193 "mk" => "Macedonian",
194 "ml" => "Malayalam",
195 "mn" => "Mongolian",
196 "mo" => "Moldavian",
197 "mr" => "Marathi",
198 "ms" => "Bahasa Melayu",
199 "my" => "Burmese",
200 "na" => "Nauru",
201 "ne" => "&#2344;&#2375;&#2346;&#2366;&#2354;&#2368; (Nepali)",
202 "nl" => "Nederlands",
203 "no" => "Norsk",
204 "oc" => "Occitan",
205 "om" => "Oromo",
206 "or" => "Oriya",
207 "pa" => "Punjabi",
208 "pl" => "Polski",
209 "ps" => "Pashto",
210 "pt" => "Portugu&#234;s",
211 "qu" => "Quechua",
212 "rm" => "Rhaeto-Romance",
213 "rn" => "Kirundi",
214 "ro" => "Rom&#226;n&#259;",
215 "ru" => "&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081; (Russkij)",
216 "rw" => "Kinyarwanda",
217 "sa" => "&#2360;&#2306;&#2360;&#2381;&#2325;&#2371;&#2340; (Samskrta)",
218 "sd" => "Sindhi",
219 "sg" => "Sangro",
220 "sh" => "Serbocroatian",
221 "si" => "Sinhalese",
222 "simple" => "Simple English",
223 "sk" => "Slovak",
224 "sl" => "Slovensko",
225 "sm" => "Samoan",
226 "sn" => "Shona",
227 "so" => "Soomaali",
228 "sq" => "Shqiptare",
229 "sr" => "Srpski",
230 "ss" => "Siswati",
231 "st" => "Sesotho",
232 "su" => "Sundanese",
233 "sv" => "Svenska",
234 "sw" => "Kiswahili",
235 "ta" => "Tamil",
236 "te" => "Telugu",
237 "tg" => "Tajik",
238 "th" => "Thai",
239 "ti" => "Tigrinya",
240 "tk" => "Turkmen",
241 "tl" => "Tagalog",
242 "tn" => "Setswana",
243 "to" => "Tonga",
244 "tr" => "T&#252;rk&#231;e",
245 "ts" => "Tsonga",
246 "tt" => "Tatar",
247 "tw" => "Twi",
248 "ug" => "Uighur",
249 "uk" => "&#1059;&#1082;&#1088;&#1072;&#1111;&#1085;&#1089;&#1100;&#1082;&#1072; (Ukrayins`ka)",
250 "ur" => "Urdu",
251 "uz" => "Uzbek",
252 "vi" => "Vietnamese",
253 "vo" => "Volap&#252;k",
254 "wo" => "Wolof",
255 "xh" => "isiXhosa",
256 "yi" => "Yiddish",
257 "yo" => "Yoruba",
258 "za" => "Zhuang",
259 "zh" => "&#20013;&#25991; (Zhongwen)",
260 "zh-cn" => "&#20013;&#25991;(&#31616;&#20307;) (Simplified Chinese)",
261 "zh-tw" => "&#20013;&#25991;(&#32321;&#20307;) (Traditional Chinese)",
262 "zu" => "Zulu"
263 );
264
265 /* private */ $wgWeekdayNamesEn = array(
266 "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",
267 "Friday", "Saturday"
268 );
269
270 /* private */ $wgMonthNamesEn = array(
271 "January", "February", "March", "April", "May", "June",
272 "July", "August", "September", "October", "November",
273 "December"
274 );
275
276 /* private */ $wgMonthAbbreviationsEn = array(
277 "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug",
278 "Sep", "Oct", "Nov", "Dec"
279 );
280
281 /* private */ $wgMagicWordsEn = array(
282 # ID CASE SYNONYMS
283 MAG_REDIRECT => array( 0, "#redirect" ),
284 MAG_NOTOC => array( 0, "__NOTOC__" ),
285 MAG_NOEDITSECTION => array( 0, "__NOEDITSECTION__" ),
286 MAG_START => array( 0, "__START__" ),
287 MAG_CURRENTMONTH => array( 1, "{{CURRENTMONTH}}" ),
288 MAG_CURRENTMONTHNAME => array( 1, "{{CURRENTMONTHNAME}}" ),
289 MAG_CURRENTDAY => array( 1, "{{CURRENTDAY}}" ),
290 MAG_CURRENTDAYNAME => array( 1, "{{CURRENTDAYNAME}}" ),
291 MAG_CURRENTYEAR => array( 1, "{{CURRENTYEAR}}" ),
292 MAG_CURRENTTIME => array( 1, "{{CURRENTTIME}}" ),
293 MAG_NUMBEROFARTICLES => array( 1, "{{NUMBEROFARTICLES}}" ),
294 MAG_CURRENTMONTHNAMEGEN => array( 1, "{{CURRENTMONTHNAMEGEN}}"),
295 MAG_MSG => array( 1, "{{MSG:$1}}" ),
296 MAG_SUBST => array( 1, "{{SUBST:$1}}" ),
297 MAG_MSGNW => array( 1, "{{MSGNW:$1}}" )
298 );
299
300 # All special pages have to be listed here: a description of ""
301 # will make them not show up on the "Special Pages" page, which
302 # is the right thing for some of them (such as the "targeted" ones).
303 #
304 /* private */ $wgValidSpecialPagesEn = array(
305 "Userlogin" => "",
306 "Userlogout" => "",
307 "Preferences" => "Set my user preferences",
308 "Watchlist" => "My watchlist",
309 "Recentchanges" => "Recently updated pages",
310 "Upload" => "Upload image files",
311 "Imagelist" => "Image list",
312 "Listusers" => "Registered users",
313 "Statistics" => "Site statistics",
314 "Randompage" => "Random article",
315
316 "Lonelypages" => "Orphaned articles",
317 "Unusedimages" => "Orphaned images",
318 "Popularpages" => "Popular articles",
319 "Wantedpages" => "Most wanted articles",
320 "Shortpages" => "Short articles",
321 "Longpages" => "Long articles",
322 "Newpages" => "Newly created articles",
323 "Ancientpages" => "Oldest articles",
324 "Intl" => "Interlanguage links",
325 "Allpages" => "All pages by title",
326
327 "Ipblocklist" => "Blocked users/IP addresses",
328 "Maintenance" => "Maintenance page",
329 "Specialpages" => "",
330 "Contributions" => "",
331 "Emailuser" => "",
332 "Whatlinkshere" => "",
333 "Recentchangeslinked" => "",
334 "Movepage" => "",
335 "Booksources" => "External book sources",
336 "Categories" => "Page categories",
337 "Export" => ""
338 );
339
340 /* private */ $wgSysopSpecialPagesEn = array(
341 "Blockip" => "Block a user/IP address",
342 "Asksql" => "Query the database",
343 "Undelete" => "Restore deleted pages"
344 );
345
346 /* private */ $wgDeveloperSpecialPagesEn = array(
347 "Lockdb" => "Make database read-only",
348 "Unlockdb" => "Restore DB write access",
349 "Debug" => "Debugging information"
350 );
351
352 #-------------------------------------------------------------------
353 # Default messages
354 #-------------------------------------------------------------------
355 # Allowed characters in keys are: A-Z, a-z, 0-9, underscore (_) and
356 # hyphen (-). If you need more characters, you may be able to change
357 # the regex in MagicWord::initRegex
358
359 /* private */ $wgAllMessagesEn = array(
360
361 # Bits of text used by many pages:
362 #
363 "categories" => "Page categories",
364 "category" => "category",
365 "category_header" => "Articles in category \"$1\"",
366 "subcategories" => "Subcategories",
367
368 "linktrail" => "/^([a-z]+)(.*)\$/sD",
369 "mainpage" => "Main Page",
370 "mainpagetext" => "Wiki software successfully installed.",
371 "about" => "About",
372 "aboutwikipedia" => "About Wikipedia",
373 "aboutpage" => "Wikipedia:About",
374 "help" => "Help",
375 "helppage" => "Wikipedia:Help",
376 "wikititlesuffix" => "Wikipedia",
377 "bugreports" => "Bug reports",
378 "bugreportspage" => "Wikipedia:Bug_reports",
379 "faq" => "FAQ",
380 "faqpage" => "Wikipedia:FAQ",
381 "edithelp" => "Editing help",
382 "edithelppage" => "Wikipedia:How_does_one_edit_a_page",
383 "cancel" => "Cancel",
384 "qbfind" => "Find",
385 "qbbrowse" => "Browse",
386 "qbedit" => "Edit",
387 "qbpageoptions" => "Page options",
388 "qbpageinfo" => "Page info",
389 "qbmyoptions" => "My options",
390 "mypage" => "My page",
391 "mytalk" => "My talk",
392 "currentevents" => "Current events",
393 "errorpagetitle" => "Error",
394 "returnto" => "Return to $1.",
395 "fromwikipedia" => "From Wikipedia, the free encyclopedia.",
396 "whatlinkshere" => "Pages that link here",
397 "help" => "Help",
398 "search" => "Search",
399 "go" => "Go",
400 "history" => "Page history",
401 "printableversion" => "Printable version",
402 "editthispage" => "Edit this page",
403 "deletethispage" => "Delete this page",
404 "protectthispage" => "Protect this page",
405 "unprotectthispage" => "Unprotect this page",
406 "newpage" => "New page",
407 "talkpage" => "Discuss this page",
408 "postcomment" => "Post a comment",
409 "articlepage" => "View article",
410 "subjectpage" => "View subject", # For compatibility
411 "userpage" => "View user page",
412 "wikipediapage" => "View meta page",
413 "imagepage" => "View image page",
414 "viewtalkpage" => "View discussion",
415 "otherlanguages" => "Other languages",
416 "redirectedfrom" => "(Redirected from $1)",
417 "lastmodified" => "This page was last modified $1.",
418 "viewcount" => "This page has been accessed $1 times.",
419 "gnunote" => "All text is available under the terms of the <a class=internal href='/wiki/GNU_FDL'>GNU Free Documentation License</a>.",
420 "printsubtitle" => "(From http://www.wikipedia.org)",
421 "protectedpage" => "Protected page",
422 "administrators" => "Wikipedia:Administrators",
423 "sysoptitle" => "Sysop access required",
424 "sysoptext" => "The action you have requested can only be
425 performed by users with \"sysop\" status.
426 See $1.",
427 "developertitle" => "Developer access required",
428 "developertext" => "The action you have requested can only be
429 performed by users with \"developer\" status.
430 See $1.",
431 "nbytes" => "$1 bytes",
432 "go" => "Go",
433 "ok" => "OK",
434 "sitetitle" => "Wikipedia",
435 "sitesubtitle" => "The Free Encyclopedia",
436 "retrievedfrom" => "Retrieved from \"$1\"",
437 "newmessages" => "You have $1.",
438 "newmessageslink" => "new messages",
439 "editsection"=>"edit",
440 "toc" => "Table of contents",
441 "showtoc" => "show",
442 "hidetoc" => "hide",
443 "thisisdeleted" => "View or restore $1?",
444 "restorelink" => "$1 deleted edits",
445
446 # Main script and global functions
447 #
448 "nosuchaction" => "No such action",
449 "nosuchactiontext" => "The action specified by the URL is not
450 recognized by the Wikipedia software",
451 "nosuchspecialpage" => "No such special page",
452 "nospecialpagetext" => "You have requested a special page that is not
453 recognized by the Wikipedia software.",
454
455 # General errors
456 #
457 "error" => "Error",
458 "databaseerror" => "Database error",
459 "dberrortext" => "A database query syntax error has occurred.
460 This could be because of an illegal search query (see $5),
461 or it may indicate a bug in the software.
462 The last attempted database query was:
463 <blockquote><tt>$1</tt></blockquote>
464 from within function \"<tt>$2</tt>\".
465 MySQL returned error \"<tt>$3: $4</tt>\".",
466 "dberrortextcl" => "A database query syntax error has occurred.
467 The last attempted database query was:
468 \"$1\"
469 from within function \"$2\".
470 MySQL returned error \"$3: $4\".\n",
471 "noconnect" => "Sorry! The wiki is experiencing some technical difficulties, and cannot contact the database server.",
472 "nodb" => "Could not select database $1",
473 "cachederror" => "The following is a cached copy of the requested page, and may not be up to date.",
474 "readonly" => "Database locked",
475 "enterlockreason" => "Enter a reason for the lock, including an estimate
476 of when the lock will be released",
477 "readonlytext" => "The Wikipedia database is currently locked to new
478 entries and other modifications, probably for routine database maintenance,
479 after which it will be back to normal.
480 The administrator who locked it offered this explanation:
481 <p>$1",
482 "missingarticle" => "The database did not find the text of a page
483 that it should have found, named \"$1\".
484
485 <p>This is usually caused by following an outdated diff or history link to a
486 page that has been deleted.
487
488 <p>If this is not the case, you may have found a bug in the software.
489 Please report this to an administrator, making note of the URL.",
490 "internalerror" => "Internal error",
491 "filecopyerror" => "Could not copy file \"$1\" to \"$2\".",
492 "filerenameerror" => "Could not rename file \"$1\" to \"$2\".",
493 "filedeleteerror" => "Could not delete file \"$1\".",
494 "filenotfound" => "Could not find file \"$1\".",
495 "unexpected" => "Unexpected value: \"$1\"=\"$2\".",
496 "formerror" => "Error: could not submit form",
497 "badarticleerror" => "This action cannot be performed on this page.",
498 "cannotdelete" => "Could not delete the page or image specified. (It may have already been deleted by someone else.)",
499 "badtitle" => "Bad title",
500 "badtitletext" => "The requested page title was invalid, empty, or
501 an incorrectly linked inter-language or inter-wiki title.",
502 "perfdisabled" => "Sorry! This feature has been temporarily disabled
503 because it slows the database down to the point that no one can use
504 the wiki.",
505 "perfdisabledsub" => "Here's a saved copy from $1:",
506 "wrong_wfQuery_params" => "Incorrect parameters to wfQuery",
507
508 # Login and logout pages
509 #
510 "logouttitle" => "User logout",
511 "logouttext" => "You are now logged out.
512 You can continue to use Wikipedia anonymously, or you can log in
513 again as the same or as a different user. Note that some pages may
514 continue to be displayed as if you were still logged in, until you clear
515 your browser cache\n",
516
517 "welcomecreation" => "<h2>Welcome, $1!</h2><p>Your account has been created.
518 Don't forget to personalize your wikipedia preferences.",
519
520 "loginpagetitle" => "User login",
521 "yourname" => "Your user name",
522 "yourpassword" => "Your password",
523 "yourpasswordagain" => "Retype password",
524 "newusersonly" => " (new users only)",
525 "remembermypassword" => "Remember my password across sessions.",
526 "loginproblem" => "<b>There has been a problem with your login.</b><br>Try again!",
527 "alreadyloggedin" => "<font color=red><b>User $1, you are already logged in!</b></font><br>\n",
528
529 "areyounew" => "If you are new to Wikipedia and want to get a user account,
530 enter a user name, then type and re-type a password.
531 Your e-mail address is optional; if you lose your password you can request
532 that it be to the address you give.<br>\n",
533
534 "login" => "Log in",
535 "userlogin" => "Log in",
536 "logout" => "Log out",
537 "userlogout" => "Log out",
538 "notloggedin" => "Not logged in",
539 "createaccount" => "Create new account",
540 "createaccountmail" => "by eMail",
541 "badretype" => "The passwords you entered do not match.",
542 "userexists" => "The user name you entered is already in use. Please choose a different name.",
543 "youremail" => "Your e-mail*",
544 "yournick" => "Your nickname (for signatures)",
545 "emailforlost" => "* Entering an email address is optional. But it enables people to
546 contact you through the website without you having to reveal your
547 email address to them, and it also helps you if you forget your
548 password.",
549 "loginerror" => "Login error",
550 "noname" => "You have not specified a valid user name.",
551 "loginsuccesstitle" => "Login successful",
552 "loginsuccess" => "You are now logged in to Wikipedia as \"$1\".",
553 "nosuchuser" => "There is no user by the name \"$1\".
554 Check your spelling, or use the form below to create a new user account.",
555 "wrongpassword" => "The password you entered is incorrect. Please try again.",
556 "mailmypassword" => "Mail me a new password",
557 "passwordremindertitle" => "Password reminder from Wikipedia",
558 "passwordremindertext" => "Someone (probably you, from IP address $1)
559 requested that we send you a new Wikipedia login password.
560 The password for user \"$2\" is now \"$3\".
561 You should log in and change your password now.",
562 "noemail" => "There is no e-mail address recorded for user \"$1\".",
563 "passwordsent" => "A new password has been sent to the e-mail address
564 registered for \"$1\".
565 Please log in again after you receive it.",
566
567 # Edit pages
568 #
569 "summary" => "Summary",
570 "subject" => "Subject/headline",
571 "minoredit" => "This is a minor edit",
572 "watchthis" => "Watch this article",
573 "savearticle" => "Save page",
574 "preview" => "Preview",
575 "showpreview" => "Show preview",
576 "blockedtitle" => "User is blocked",
577 "blockedtext" => "Your user name or IP address has been blocked by $1.
578 The reason given is this:<br>''$2''<p>You may contact $1 or one of the other
579 [[Wikipedia:administrators|administrators]] to discuss the block.",
580 "whitelistedittitle" => "Login required to edit",
581 "whitelistedittext" => "You have to [[Special:Userlogin|login]] to edit articles.",
582 "whitelistreadtitle" => "Login required to read",
583 "whitelistreadtext" => "You have to [[Special:Userlogin|login]] to read articles.",
584 "whitelistacctitle" => "You are not allowed to create an account",
585 "whitelistacctext" => "To be allowed to create accounts in this Wiki you have to [[Special:Userlogin|log]] in and have the appropriate permissions.",
586 "accmailtitle" => "Password sent.",
587 "accmailtext" => "The Password for '$1' has been sent to $2.",
588 "newarticle" => "(New)",
589 "newarticletext" =>
590 "You've followed a link to a page that doesn't exist yet.
591 To create the page, start typing in the box below
592 (see the [[Wikipedia:Help|help page]] for more info).
593 If you are here by mistake, just click your browser's '''back''' button.",
594 "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.'' ",
595 "noarticletext" => "(There is currently no text in this page)",
596 "updated" => "(Updated)",
597 "note" => "<strong>Note:</strong> ",
598 "previewnote" => "Remember that this is only a preview, and has not yet been saved!",
599 "previewconflict" => "This preview reflects the text in the upper
600 text editing area as it will appear if you choose to save.",
601 "editing" => "Editing $1",
602 "sectionedit" => " (section)",
603 "commentedit" => " (comment)",
604 "editconflict" => "Edit conflict: $1",
605 "explainconflict" => "Someone else has changed this page since you
606 started editing it.
607 The upper text area contains the page text as it currently exists.
608 Your changes are shown in the lower text area.
609 You will have to merge your changes into the existing text.
610 <b>Only</b> the text in the upper text area will be saved when you
611 press \"Save page\".\n<p>",
612 "yourtext" => "Your text",
613 "storedversion" => "Stored version",
614 "editingold" => "<strong>WARNING: You are editing an out-of-date
615 revision of this page.
616 If you save it, any changes made since this revision will be lost.</strong>\n",
617 "yourdiff" => "Differences",
618 "copyrightwarning" => "Please note that all contributions to Wikipedia are
619 considered to be released under the GNU Free Documentation License
620 (see $1 for details).
621 If you don't want your writing to be edited mercilessly and redistributed
622 at will, then don't submit it here.<br>
623 You are also promising us that you wrote this yourself, or copied it from a
624 public domain or similar free resource.
625 <strong>DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION!</strong>",
626 "longpagewarning" => "WARNING: This page is $1 kilobytes long; some
627 browsers may have problems editing pages approaching or longer than 32kb.
628 Please consider breaking the page into smaller sections.",
629 "readonlywarning" => "WARNING: The database has been locked for maintenance,
630 so you will not be able to save your edits right now. You may wish to cut-n-paste
631 the text into a text file and save it for later.",
632 "protectedpagewarning" => "WARNING: This page has been locked so that only
633 users with sysop privileges can edit it. Be sure you are following the
634 <a href='/wiki/Wikipedia:Protected_page_guidelines'>protected page
635 guidelines</a>.",
636
637 # History pages
638 #
639 "revhistory" => "Revision history",
640 "nohistory" => "There is no edit history for this page.",
641 "revnotfound" => "Revision not found",
642 "revnotfoundtext" => "The old revision of the page you asked for could not be found.
643 Please check the URL you used to access this page.\n",
644 "loadhist" => "Loading page history",
645 "currentrev" => "Current revision",
646 "revisionasof" => "Revision as of $1",
647 "cur" => "cur",
648 "next" => "next",
649 "last" => "last",
650 "orig" => "orig",
651 "histlegend" => "Legend: (cur) = difference with current version,
652 (last) = difference with preceding version, M = minor edit",
653
654 # Diffs
655 #
656 "difference" => "(Difference between revisions)",
657 "loadingrev" => "loading revision for diff",
658 "lineno" => "Line $1:",
659 "editcurrent" => "Edit the current version of this page",
660
661 # Search results
662 #
663 "searchresults" => "Search results",
664 "searchhelppage" => "Wikipedia:Searching",
665 "searchingwikipedia" => "Searching Wikipedia",
666 "searchresulttext" => "For more information about searching Wikipedia, see $1.",
667 "searchquery" => "For query \"$1\"",
668 "badquery" => "Badly formed search query",
669 "badquerytext" => "We could not process your query.
670 This is probably because you have attempted to search for a
671 word fewer than three letters long, which is not yet supported.
672 It could also be that you have mistyped the expression, for
673 example \"fish and and scales\".
674 Please try another query.",
675 "matchtotals" => "The query \"$1\" matched $2 article titles
676 and the text of $3 articles.",
677 "nogomatch" => "No page with this exact title exists, trying full text search.",
678 "titlematches" => "Article title matches",
679 "notitlematches" => "No article title matches",
680 "textmatches" => "Article text matches",
681 "notextmatches" => "No article text matches",
682 "prevn" => "previous $1",
683 "nextn" => "next $1",
684 "viewprevnext" => "View ($1) ($2) ($3).",
685 "showingresults" => "Showing below <b>$1</b> results starting with #<b>$2</b>.",
686 "showingresultsnum" => "Showing below <b>$3</b> results starting with #<b>$2</b>.",
687 "nonefound" => "<strong>Note</strong>: unsuccessful searches are
688 often caused by searching for common words like \"have\" and \"from\",
689 which are not indexed, or by specifying more than one search term (only pages
690 containing all of the search terms will appear in the result).",
691 "powersearch" => "Search",
692 "powersearchtext" => "
693 Search in namespaces :<br>
694 $1<br>
695 $2 List redirects &nbsp; Search for $3 $9",
696 "searchdisabled" => "<p>Sorry! Full text search has been disabled temporarily, for performance reasons. In the meantime, you can use the Google search below, which may be out of date.</p>
697
698 <!-- SiteSearch Google -->
699 <FORM method=GET action=\"http://www.google.com/search\">
700 <TABLE bgcolor=\"#FFFFFF\"><tr><td>
701 <A HREF=\"http://www.google.com/\">
702 <IMG SRC=\"http://www.google.com/logos/Logo_40wht.gif\"
703 border=\"0\" ALT=\"Google\"></A>
704 </td>
705 <td>
706 <INPUT TYPE=text name=q size=31 maxlength=255 value=\"\">
707 <INPUT type=submit name=btnG VALUE=\"Google Search\">
708 <font size=-1>
709 <input type=hidden name=domains value=\"{$wgServer}\"><br><input type=radio name=sitesearch value=\"\"> WWW <input type=radio name=sitesearch value=\"{$wgServer}\" checked> {$wgServer} <br>
710 <input type='hidden' name='ie' value='$2'>
711 <input type='hidden' name='oe' value='$2'>
712 </font>
713 </td></tr></TABLE>
714 </FORM>
715 <!-- SiteSearch Google -->",
716 "blanknamespace" => "(Main)",
717
718 # Preferences page
719 #
720 "preferences" => "Preferences",
721 "prefsnologin" => "Not logged in",
722 "prefsnologintext" => "You must be <a href=\"" .
723 wfLocalUrl( "Special:Userlogin" ) . "\">logged in</a>
724 to set user preferences.",
725 "prefslogintext" => "You are logged in as \"$1\".
726 Your internal ID number is $2.
727
728 See [[Wikipedia:User preferences help]] for help deciphering the options.",
729 "prefsreset" => "Preferences have been reset from storage.",
730 "qbsettings" => "Quickbar settings",
731 "changepassword" => "Change password",
732 "skin" => "Skin",
733 "math" => "Rendering math",
734 "dateformat" => "Date format",
735 "math_failure" => "Failed to parse",
736 "math_unknown_error" => "unknown error",
737 "math_unknown_function" => "unknown function ",
738 "math_lexing_error" => "lexing error",
739 "math_syntax_error" => "syntax error",
740 "saveprefs" => "Save preferences",
741 "resetprefs" => "Reset preferences",
742 "oldpassword" => "Old password",
743 "newpassword" => "New password",
744 "retypenew" => "Retype new password",
745 "textboxsize" => "Textbox dimensions",
746 "rows" => "Rows",
747 "columns" => "Columns",
748 "searchresultshead" => "Search result settings",
749 "resultsperpage" => "Hits to show per page",
750 "contextlines" => "Lines to show per hit",
751 "contextchars" => "Characters of context per line",
752 "stubthreshold" => "Threshold for stub display",
753 "recentchangescount" => "Number of titles in recent changes",
754 "savedprefs" => "Your preferences have been saved.",
755 "timezonetext" => "Enter number of hours your local time differs
756 from server time (UTC).",
757 "localtime" => "Local time display",
758 "timezoneoffset" => "Offset",
759 "servertime" => "Server time is now",
760 "guesstimezone" => "Fill in from browser",
761 "emailflag" => "Disable e-mail from other users",
762 "defaultns" => "Search in these namespaces by default:",
763
764 # Recent changes
765 #
766 "changes" => "changes",
767 "recentchanges" => "Recent changes",
768 "recentchangestext" =>
769 "Track the most recent changes to Wikipedia on this page.
770 [[Wikipedia:Welcome,_newcomers|Welcome, newcomers]]!
771 Please have a look at these pages: [[wikipedia:FAQ|Wikipedia FAQ]],
772 [[Wikipedia:Policies and guidelines|Wikipedia policy]]
773 (especially [[wikipedia:Naming conventions|naming conventions]],
774 [[wikipedia:Neutral point of view|neutral point of view]]),
775 and [[wikipedia:Most common Wikipedia faux pas|most common Wikipedia faux pas]].
776
777 If you want to see Wikipedia succeed, it's very important that you don't add
778 material restricted by others' [[wikipedia:Copyrights|copyrights]].
779 The legal liability could really hurt the project, so please don't do it.
780 See also the [http://meta.wikipedia.org/wiki/Special:Recentchanges recent meta discussion].",
781 "rcloaderr" => "Loading recent changes",
782 "rcnote" => "Below are the last <strong>$1</strong> changes in last <strong>$2</strong> days.",
783 "rcnotefrom" => "Below are the changes since <b>$2</b> (up to <b>$1</b> shown).",
784 "rclistfrom" => "Show new changes starting from $1",
785 # "rclinks" => "Show last $1 changes in last $2 hours / last $3 days",
786 # "rclinks" => "Show last $1 changes in last $2 days.",
787 "rclinks" => "Show last $1 changes in last $2 days; $3 minor edits",
788 "rchide" => "in $4 form; $1 minor edits; $2 secondary namespaces; $3 multiple edits.",
789 "rcliu" => "; $1 edits from logged in users",
790 "diff" => "diff",
791 "hist" => "hist",
792 "hide" => "hide",
793 "show" => "show",
794 "tableform" => "table",
795 "listform" => "list",
796 "nchanges" => "$1 changes",
797 "minoreditletter" => "M",
798 "newpageletter" => "N",
799
800 # Upload
801 #
802 "upload" => "Upload file",
803 "uploadbtn" => "Upload file",
804 "uploadlink" => "Upload images",
805 "reupload" => "Re-upload",
806 "reuploaddesc" => "Return to the upload form.",
807 "uploadnologin" => "Not logged in",
808 "uploadnologintext" => "You must be <a href=\"" .
809 wfLocalUrl( "Special:Userlogin" ) . "\">logged in</a>
810 to upload files.",
811 "uploadfile" => "Upload images, sounds, documents etc.",
812 "uploaderror" => "Upload error",
813 "uploadtext" => "<strong>STOP!</strong> Before you upload here,
814 make sure to read and follow Wikipedia's <a href=\"" .
815 wfLocalUrlE( "Wikipedia:Image_use_policy" ) . "\">image use policy</a>.
816 <p>If a file with the name you are specifying already
817 exists on Wikipedia, it'll be replaced without warning.
818 So unless you mean to update a file, it's a good idea
819 to first check if such a file exists.
820 <p>To view or search previously uploaded images,
821 go to the <a href=\"" . wfLocalUrlE( "Special:Imagelist" ) .
822 "\">list of uploaded images</a>.
823 Uploads and deletions are logged on the <a href=\"" .
824 wfLocalUrlE( "Wikipedia:Upload_log" ) . "\">upload log</a>.
825 <p>Use the form below to upload new image files for use in
826 illustrating your articles.
827 On most browsers, you will see a \"Browse...\" button, which will
828 bring up your operating system's standard file open dialog.
829 Choosing a file will fill the name of that file into the text
830 field next to the button.
831 You must also check the box affirming that you are not
832 violating any copyrights by uploading the file.
833 Press the \"Upload\" button to finish the upload.
834 This may take some time if you have a slow internet connection.
835 <p>The preferred formats are JPEG for photographic images, PNG
836 for drawings and other iconic images, and OGG for sounds.
837 Please name your files descriptively to avoid confusion.
838 To include the image in an article, use a link in the form
839 <b>[[image:file.jpg]]</b> or <b>[[image:file.png|alt text]]</b>
840 or <b>[[media:file.ogg]]</b> for sounds.
841 <p>Please note that as with Wikipedia pages, others may edit or
842 delete your uploads if they think it serves the encyclopedia, and
843 you may be blocked from uploading if you abuse the system.",
844 "uploadlog" => "upload log",
845 "uploadlogpage" => "Upload_log",
846 "uploadlogpagetext" => "Below is a list of the most recent file uploads.
847 All times shown are server time (UTC).
848 <ul>
849 </ul>
850 ",
851 "filename" => "Filename",
852 "filedesc" => "Summary",
853 "filestatus" => "Copyright status",
854 "filesource" => "Source",
855 "affirmation" => "I affirm that the copyright holder of this file
856 agrees to license it under the terms of the $1.",
857 "copyrightpage" => "Wikipedia:Copyrights",
858 "copyrightpagename" => "Wikipedia copyright",
859 "uploadedfiles" => "Uploaded files",
860 "noaffirmation" => "You must affirm that your upload does not violate
861 any copyrights.",
862 "ignorewarning" => "Ignore warning and save file anyway.",
863 "minlength" => "Image names must be at least three letters.",
864 "badfilename" => "Image name has been changed to \"$1\".",
865 "badfiletype" => "\".$1\" is not a recommended image file format.",
866 "largefile" => "It is recommended that images not exceed 100k in size.",
867 "successfulupload" => "Successful upload",
868 "fileuploaded" => "File \"$1\" uploaded successfully.
869 Please follow this link: ($2) to the description page and fill
870 in information about the file, such as where it came from, when it was
871 created and by whom, and anything else you may know about it.",
872 "uploadwarning" => "Upload warning",
873 "savefile" => "Save file",
874 "uploadedimage" => "uploaded \"$1\"",
875
876 # Image list
877 #
878 "imagelist" => "Image list",
879 "imagelisttext" => "Below is a list of $1 images sorted $2.",
880 "getimagelist" => "fetching image list",
881 "ilshowmatch" => "Show all images with names matching",
882 "ilsubmit" => "Search",
883 "showlast" => "Show last $1 images sorted $2.",
884 "all" => "all",
885 "byname" => "by name",
886 "bydate" => "by date",
887 "bysize" => "by size",
888 "imgdelete" => "del",
889 "imgdesc" => "desc",
890 "imglegend" => "Legend: (desc) = show/edit image description.",
891 "imghistory" => "Image history",
892 "revertimg" => "rev",
893 "deleteimg" => "del",
894 "imghistlegend" => "Legend: (cur) = this is the current image, (del) = delete
895 this old version, (rev) = revert to this old version.
896 <br><i>Click on date to see image uploaded on that date</i>.",
897 "imagelinks" => "Image links",
898 "linkstoimage" => "The following pages link to this image:",
899 "nolinkstoimage" => "There are no pages that link to this image.",
900
901 # Statistics
902 #
903 "statistics" => "Statistics",
904 "sitestats" => "Site statistics",
905 "userstats" => "User statistics",
906 "sitestatstext" => "There are <b>$1</b> total pages in the database.
907 This includes \"talk\" pages, pages about Wikipedia, minimal \"stub\"
908 pages, redirects, and others that probably don't qualify as articles.
909 Excluding those, there are <b>$2</b> pages that are probably legitimate
910 articles.<p>
911 There have been a total of <b>$3</b> page views, and <b>$4</b> page edits
912 since the software was upgraded (July 20, 2002).
913 That comes to <b>$5</b> average edits per page, and <b>$6</b> views per edit.",
914 "userstatstext" => "There are <b>$1</b> registered users.
915 <b>$2</b> of these are administrators (see $3).",
916
917 # Maintenance Page
918 #
919 "maintenance" => "Maintenance page",
920 "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 ;-)",
921 "maintenancebacklink" => "Back to Maintenance Page",
922 "disambiguations" => "Disambiguation pages",
923 "disambiguationspage" => "Wikipedia:Links_to_disambiguating_pages",
924 "disambiguationstext" => "The following articles link to a <i>disambiguation page</i>. They should link to the appropriate topic instead.<br>A page is treated as dismbiguation if it is linked from $1.<br>Links from other namespaces are <i>not</i> listed here.",
925 "doubleredirects" => "Double Redirects",
926 "doubleredirectstext" => "<b>Attention:</b> This list may contain false positives. That usually means there is additional text with links below the first #REDIRECT.<br>\nEach row contains links to the first and second redirect, as well as the first line of the second redirect text, usually giving the \"real\" taget article, which the first redirect should point to.",
927 "brokenredirects" => "Broken Redirects",
928 "brokenredirectstext" => "The following redirects link to a non-existing article.",
929 "selflinks" => "Pages with Self Links",
930 "selflinkstext" => "The following pages contain a link to themselves, which they should not.",
931 "mispeelings" => "Pages with misspellings",
932 "mispeelingstext" => "The following pages contain a common misspelling, which are listed on $1. The correct spelling might be given (like this).",
933 "mispeelingspage" => "List of common misspellings",
934 "missinglanguagelinks" => "Missing Language Links",
935 "missinglanguagelinksbutton" => "Find missing language links for",
936 "missinglanguagelinkstext" => "These articles do <i>not</i> link to their counterpart in $1. Redirects and subpages are <i>not</i> shown.",
937
938
939 # Miscellaneous special pages
940 #
941 "orphans" => "Orphaned pages",
942 "lonelypages" => "Orphaned pages",
943 "unusedimages" => "Unused images",
944 "popularpages" => "Popular pages",
945 "nviews" => "$1 views",
946 "wantedpages" => "Wanted pages",
947 "nlinks" => "$1 links",
948 "allpages" => "All pages",
949 "randompage" => "Random page",
950 "shortpages" => "Short pages",
951 "longpages" => "Long pages",
952 "listusers" => "User list",
953 "specialpages" => "Special pages",
954 "spheading" => "Special pages for all users",
955 "sysopspheading" => "For sysop use only",
956 "developerspheading" => "For developer use only",
957 "protectpage" => "Protect page",
958 "recentchangeslinked" => "Related changes",
959 "rclsub" => "(to pages linked from \"$1\")",
960 "debug" => "Debug",
961 "newpages" => "New pages",
962 "ancientpages" => "Oldest articles",
963 "intl" => "Interlanguage links",
964 "movethispage" => "Move this page",
965 "unusedimagestext" => "<p>Please note that other web sites
966 such as the international Wikipedias may link to an image with
967 a direct URL, and so may still be listed here despite being
968 in active use.",
969 "booksources" => "Book sources",
970 "booksourcetext" => "Below is a list of links to other sites that
971 sell new and used books, and may also have further information
972 about books you are looking for.
973 Wikipedia is not affiliated with any of these businesses, and
974 this list should not be construed as an endorsement.",
975 "alphaindexline" => "$1 to $2",
976
977 # Email this user
978 #
979 "mailnologin" => "No send address",
980 "mailnologintext" => "You must be <a href=\"" .
981 wfLocalUrl( "Special:Userlogin" ) . "\">logged in</a>
982 and have a valid e-mail address in your <a href=\"" .
983 wfLocalUrl( "Special:Preferences" ) . "\">preferences</a>
984 to send e-mail to other users.",
985 "emailuser" => "E-mail this user",
986 "emailpage" => "E-mail user",
987 "emailpagetext" => "If this user has entered a valid e-mail address in
988 his or her user preferences, the form below will send a single message.
989 The e-mail address you entered in your user preferences will appear
990 as the \"From\" address of the mail, so the recipient will be able
991 to reply.",
992 "noemailtitle" => "No e-mail address",
993 "noemailtext" => "This user has not specified a valid e-mail address,
994 or has chosen not to receive e-mail from other users.",
995 "emailfrom" => "From",
996 "emailto" => "To",
997 "emailsubject" => "Subject",
998 "emailmessage" => "Message",
999 "emailsend" => "Send",
1000 "emailsent" => "E-mail sent",
1001 "emailsenttext" => "Your e-mail message has been sent.",
1002
1003 # Watchlist
1004 #
1005 "watchlist" => "My watchlist",
1006 "watchlistsub" => "(for user \"$1\")",
1007 "nowatchlist" => "You have no items on your watchlist.",
1008 "watchnologin" => "Not logged in",
1009 "watchnologintext" => "You must be <a href=\"" .
1010 wfLocalUrl( "Special:Userlogin" ) . "\">logged in</a>
1011 to modify your watchlist.",
1012 "addedwatch" => "Added to watchlist",
1013 "addedwatchtext" => "The page \"$1\" has been added to your <a href=\"" .
1014 wfLocalUrl( "Special:Watchlist" ) . "\">watchlist</a>.
1015 Future changes to this page and its associated Talk page will be listed there,
1016 and the page will appear <b>bolded</b> in the <a href=\"" .
1017 wfLocalUrl( "Special:Recentchanges" ) . "\">list of recent changes</a> to
1018 make it easier to pick out.</p>
1019
1020 <p>If you want to remove the page from your watchlist later, click \"Stop watching\" in the sidebar.",
1021 "removedwatch" => "Removed from watchlist",
1022 "removedwatchtext" => "The page \"$1\" has been removed from your watchlist.",
1023 "watchthispage" => "Watch this page",
1024 "unwatchthispage" => "Stop watching",
1025 "notanarticle" => "Not an article",
1026 "watchnochange" => "None of your watched items were edited in the time period displayed.",
1027 "watchdetails" => "($1 pages watched not counting talk pages;
1028 $2 total pages edited since cutoff;
1029 $3...
1030 <a href='$4'>show and edit complete list</a>.)",
1031 "watchmethod-recent" => "checking recent edits for watched pages",
1032 "watchmethod-list" => "checking watched pages for recent edits",
1033 "removechecked" => "Remove checked items from watchlist",
1034 "watchlistcontains" => "Your watchlist contains $1 pages.",
1035 "watcheditlist" => "Here's an alphabetical list of your
1036 watched pages. Check the boxes of pages you want to remove
1037 from your watchlist and click the 'remove checked' button
1038 at the bottom of the screen.",
1039 "removingchecked" => "Removing requested items from watchlist...",
1040 "couldntremove" => "Couldn't remove item '$1'...",
1041 "iteminvalidname" => "Problem with item '$1', invalid name...",
1042 "wlnote" => "Below are the last $1 changes in the last <b>$2</b> hours.",
1043 "wlshowlast" => "Show last ",
1044 "wlhours" => " hours",
1045 "wldays" => " days",
1046
1047
1048 # Delete/protect/revert
1049 #
1050 "deletepage" => "Delete page",
1051 "confirm" => "Confirm",
1052 "excontent" => "content was:",
1053 "exbeforeblank" => "content before blanking was:",
1054 "exblank" => "page was empty",
1055 "confirmdelete" => "Confirm delete",
1056 "deletesub" => "(Deleting \"$1\")",
1057 "historywarning" => "Warning: The page you are about to delete has a history: ",
1058 "confirmdeletetext" => "You are about to permanently delete a page
1059 or image along with all of its history from the database.
1060 Please confirm that you intend to do this, that you understand the
1061 consequences, and that you are doing this in accordance with
1062 [[Wikipedia:Policy]].",
1063 "confirmcheck" => "Yes, I really want to delete this.",
1064 "actioncomplete" => "Action complete",
1065 "deletedtext" => "\"$1\" has been deleted.
1066 See $2 for a record of recent deletions.",
1067 "deletedarticle" => "deleted \"$1\"",
1068 "dellogpage" => "Deletion_log",
1069 "dellogpagetext" => "Below is a list of the most recent deletions.
1070 All times shown are server time (UTC).
1071 <ul>
1072 </ul>
1073 ",
1074 "deletionlog" => "deletion log",
1075 "reverted" => "Reverted to earlier revision",
1076 "deletecomment" => "Reason for deletion",
1077 "imagereverted" => "Revert to earlier version was successful.",
1078 "rollback" => "Roll back edits",
1079 "rollbacklink" => "rollback",
1080 "rollbackfailed" => "Rollback failed",
1081 "cantrollback" => "Cannot revert edit; last contributor is only author of this article.",
1082 "alreadyrolled" => "Cannot rollback last edit of [[$1]]
1083 by [[User:$2|$2]] ([[User talk:$2|Talk]]); someone else has edited or rolled back the article already.
1084
1085 Last edit was by [[User:$3|$3]] ([[User talk:$3|Talk]]). ",
1086 # only shown if there is an edit comment
1087 "editcomment" => "The edit comment was: \"<i>$1</i>\".",
1088 "revertpage" => "Reverted to last edit by $1",
1089
1090 # Undelete
1091 "undelete" => "Restore deleted page",
1092 "undeletepage" => "View and restore deleted pages",
1093 "undeletepagetext" => "The following pages have been deleted but are still in the archive and
1094 can be restored. The archive may be periodically cleaned out.",
1095 "undeletearticle" => "Restore deleted article",
1096 "undeleterevisions" => "$1 revisions archived",
1097 "undeletehistory" => "If you restore the page, all revisions will be restored to the history.
1098 If a new page with the same name has been created since the deletion, the restored
1099 revisions will appear in the prior history, and the current revision of the live page
1100 will not be automatically replaced.",
1101 "undeleterevision" => "Deleted revision as of $1",
1102 "undeletebtn" => "Restore!",
1103 "undeletedarticle" => "restored \"$1\"",
1104 "undeletedtext" => "The article [[$1]] has been successfully restored.
1105 See [[Wikipedia:Deletion_log]] for a record of recent deletions and restorations.",
1106
1107 # Contributions
1108 #
1109 "contributions" => "User contributions",
1110 "mycontris" => "My contributions",
1111 "contribsub" => "For $1",
1112 "nocontribs" => "No changes were found matching these criteria.",
1113 "ucnote" => "Below are this user's last <b>$1</b> changes in the last <b>$2</b> days.",
1114 "uclinks" => "View the last $1 changes; view the last $2 days.",
1115 "uctop" => " (top)" ,
1116
1117 # What links here
1118 #
1119 "whatlinkshere" => "What links here",
1120 "notargettitle" => "No target",
1121 "notargettext" => "You have not specified a target page or user
1122 to perform this function on.",
1123 "linklistsub" => "(List of links)",
1124 "linkshere" => "The following pages link to here:",
1125 "nolinkshere" => "No pages link to here.",
1126 "isredirect" => "redirect page",
1127
1128 # Block/unblock IP
1129 #
1130 "blockip" => "Block user",
1131 "blockiptext" => "Use the form below to block write access
1132 from a specific IP address or username.
1133 This should be done only only to prevent vandalism, and in
1134 accordance with [[Wikipedia:Policy|Wikipedia policy]].
1135 Fill in a specific reason below (for example, citing particular
1136 pages that were vandalized).",
1137 "ipaddress" => "IP Address/username",
1138 "ipbreason" => "Reason",
1139 "ipbsubmit" => "Block this user",
1140 "badipaddress" => "No user exists by that name",
1141 "noblockreason" => "You must supply a reason for the block.",
1142 "blockipsuccesssub" => "Block succeeded",
1143 "blockipsuccesstext" => "\"$1\" has been blocked.
1144 <br>See [[Special:Ipblocklist|IP block list]] to review blocks.",
1145 "unblockip" => "Unblock user",
1146 "unblockiptext" => "Use the form below to restore write access
1147 to a previously blocked IP address or username.",
1148 "ipusubmit" => "Unblock this address",
1149 "ipusuccess" => "\"$1\" unblocked",
1150 "ipblocklist" => "List of blocked IP addresses and usernames",
1151 "blocklistline" => "$1, $2 blocked $3",
1152 "blocklink" => "block",
1153 "unblocklink" => "unblock",
1154 "contribslink" => "contribs",
1155 "autoblocker" => "Autoblocked because you share an IP address with \"$1\". Reason \"$2\".",
1156 "blocklogpage" => "Block_log",
1157 "blocklogentry" => 'blocked "$1"',
1158 "blocklogtext" => "This is a log of user blocking and unblocking actions. Automatically
1159 blocked IP addresses are not be listed. See the [[Special:Ipblocklist|IP block list]] for
1160 the list of currently operational bans and blocks.",
1161 "unblocklogentry" => 'unblocked "$1"',
1162
1163 # Developer tools
1164 #
1165 "lockdb" => "Lock database",
1166 "unlockdb" => "Unlock database",
1167 "lockdbtext" => "Locking the database will suspend the ability of all
1168 users to edit pages, change their preferences, edit their watchlists, and
1169 other things requiring changes in the database.
1170 Please confirm that this is what you intend to do, and that you will
1171 unlock the database when your maintenance is done.",
1172 "unlockdbtext" => "Unlocking the database will restore the ability of all
1173 users to edit pages, change their preferences, edit their watchlists, and
1174 other things requiring changes in the database.
1175 Please confirm that this is what you intend to do.",
1176 "lockconfirm" => "Yes, I really want to lock the database.",
1177 "unlockconfirm" => "Yes, I really want to unlock the database.",
1178 "lockbtn" => "Lock database",
1179 "unlockbtn" => "Unlock database",
1180 "locknoconfirm" => "You did not check the confirmation box.",
1181 "lockdbsuccesssub" => "Database lock succeeded",
1182 "unlockdbsuccesssub" => "Database lock removed",
1183 "lockdbsuccesstext" => "The Wikipedia database has been locked.
1184 <br>Remember to remove the lock after your maintenance is complete.",
1185 "unlockdbsuccesstext" => "The Wikipedia database has been unlocked.",
1186
1187 # SQL query
1188 #
1189 "asksql" => "SQL query",
1190 "asksqltext" => "Use the form below to make a direct query of the
1191 Wikipedia database.
1192 Use single quotes ('like this') to delimit string literals.
1193 This can often add considerable load to the server, so please use
1194 this function sparingly.",
1195 "sqlislogged" => "Please note that all queries are logged.",
1196 "sqlquery" => "Enter query",
1197 "querybtn" => "Submit query",
1198 "selectonly" => "Queries other than \"SELECT\" are restricted to
1199 Wikipedia developers.",
1200 "querysuccessful" => "Query successful",
1201
1202 # Move page
1203 #
1204 "movepage" => "Move page",
1205 "movepagetext" => "Using the form below will rename a page, moving all
1206 of its history to the new name.
1207 The old title will become a redirect page to the new title.
1208 Links to the old page title will not be changed; be sure to
1209 [[Special:Maintenance|check]] for double or broken redirects.
1210 You are responsible for making sure that links continue to
1211 point where they are supposed to go.
1212
1213 Note that the page will '''not''' be moved if there is already
1214 a page at the new title, unless it is empty or a redirect and has no
1215 past edit history. This means that you can rename a page back to where
1216 it was just renamed from if you make a mistake, and you cannot overwrite
1217 an existing page.
1218
1219 <b>WARNING!</b>
1220 This can be a drastic and unexpected change for a popular page;
1221 please be sure you understand the consequences of this before
1222 proceeding.",
1223 "movepagetalktext" => "The associated talk page, if any, will be automatically moved along with it '''unless:'''
1224 *You are moving the page across namespaces,
1225 *A non-empty talk page already exists under the new name, or
1226 *You uncheck the box below.
1227
1228 In those cases, you will have to move or merge the page manually if desired.",
1229 "movearticle" => "Move page",
1230 "movenologin" => "Not logged in",
1231 "movenologintext" => "You must be a registered user and <a href=\"" .
1232 wfLocalUrl( "Special:Userlogin" ) . "\">logged in</a>
1233 to move a page.",
1234 "newtitle" => "To new title",
1235 "movepagebtn" => "Move page",
1236 "pagemovedsub" => "Move succeeded",
1237 "pagemovedtext" => "Page \"[[$1]]\" moved to \"[[$2]]\".",
1238 "articleexists" => "A page of that name already exists, or the
1239 name you have chosen is not valid.
1240 Please choose another name.",
1241 "talkexists" => "The page itself was moved successfully, but the
1242 talk page could not be moved because one already exists at the new
1243 title. Please merge them manually.",
1244 "movedto" => "moved to",
1245 "movetalk" => "Move \"talk\" page as well, if applicable.",
1246 "talkpagemoved" => "The corresponding talk page was also moved.",
1247 "talkpagenotmoved" => "The corresponding talk page was <strong>not</strong> moved.",
1248
1249 "export" => "Export pages",
1250 "exporttext" => "You can export the text and editing history of a particular
1251 page or set of pages wrapped in some XML; this can then be imported into another
1252 wiki running MediaWiki software, transformed, or just kept for your private
1253 amusement.",
1254 "exportcuronly" => "Include only the current revision, not the full history",
1255
1256 # Namespace 8 related
1257
1258 "allmessages" => "All_messages",
1259 "allmessagestext" => "This is a list of all messages available in the MediaWiki: namespace"
1260 );
1261
1262 #--------------------------------------------------------------------------
1263 # Internationalisation code
1264 #--------------------------------------------------------------------------
1265
1266 class Language {
1267
1268 function getDefaultUserOptions () {
1269 global $wgDefaultUserOptionsEn ;
1270 return $wgDefaultUserOptionsEn ;
1271 }
1272
1273 function getBookstoreList () {
1274 global $wgBookstoreListEn ;
1275 return $wgBookstoreListEn ;
1276 }
1277
1278 function getNamespaces() {
1279 global $wgNamespaceNamesEn;
1280 return $wgNamespaceNamesEn;
1281 }
1282
1283 function getNsText( $index ) {
1284 global $wgNamespaceNamesEn;
1285 return $wgNamespaceNamesEn[$index];
1286 }
1287
1288 function getNsIndex( $text ) {
1289 global $wgNamespaceNamesEn;
1290
1291 foreach ( $wgNamespaceNamesEn as $i => $n ) {
1292 if ( 0 == strcasecmp( $n, $text ) ) { return $i; }
1293 }
1294 return false;
1295 }
1296
1297 function specialPage( $name ) {
1298 return $this->getNsText( Namespace::getSpecial() ) . ":" . $name;
1299 }
1300
1301 function getQuickbarSettings() {
1302 global $wgQuickbarSettingsEn;
1303 return $wgQuickbarSettingsEn;
1304 }
1305
1306 function getSkinNames() {
1307 global $wgSkinNamesEn;
1308 return $wgSkinNamesEn;
1309 }
1310
1311 function getMathNames() {
1312 global $wgMathNamesEn;
1313 return $wgMathNamesEn;
1314 }
1315
1316 function getDateFormats() {
1317 global $wgDateFormatsEn;
1318 return $wgDateFormatsEn;
1319 }
1320
1321 function getUserToggles() {
1322 global $wgUserTogglesEn;
1323 return $wgUserTogglesEn;
1324 }
1325
1326 function getLanguageNames() {
1327 global $wgLanguageNamesEn;
1328 return $wgLanguageNamesEn;
1329 }
1330
1331 function getLanguageName( $code ) {
1332 global $wgLanguageNamesEn;
1333 if ( ! array_key_exists( $code, $wgLanguageNamesEn ) ) {
1334 return "";
1335 }
1336 return $wgLanguageNamesEn[$code];
1337 }
1338
1339 function getMonthName( $key )
1340 {
1341 global $wgMonthNamesEn;
1342 return $wgMonthNamesEn[$key-1];
1343 }
1344
1345 /* by default we just return base form */
1346 function getMonthNameGen( $key )
1347 {
1348 global $wgMonthNamesEn;
1349 return $wgMonthNamesEn[$key-1];
1350 }
1351
1352 function getMonthRegex()
1353 {
1354 global $wgMonthNamesEn;
1355 return implode( "|", $wgMonthNamesEn );
1356 }
1357
1358 function getMonthAbbreviation( $key )
1359 {
1360 global $wgMonthAbbreviationsEn;
1361 return $wgMonthAbbreviationsEn[$key-1];
1362 }
1363
1364 function getWeekdayName( $key )
1365 {
1366 global $wgWeekdayNamesEn;
1367 return $wgWeekdayNamesEn[$key-1];
1368 }
1369
1370 function userAdjust( $ts )
1371 {
1372 global $wgUser, $wgLocalTZoffset;
1373
1374 $diff = $wgUser->getOption( "timecorrection" );
1375 if ( ! is_numeric( $diff ) ) {
1376 $diff = isset( $wgLocalTZoffset ) ? $wgLocalTZoffset : 0;
1377 }
1378 if ( 0 == $diff ) { return $ts; }
1379
1380 $t = mktime( ( (int)substr( $ts, 8, 2) ) + $diff,
1381 (int)substr( $ts, 10, 2 ), (int)substr( $ts, 12, 2 ),
1382 (int)substr( $ts, 4, 2 ), (int)substr( $ts, 6, 2 ),
1383 (int)substr( $ts, 0, 4 ) );
1384 return date( "YmdHis", $t );
1385 }
1386
1387 function date( $ts, $adj = false )
1388 {
1389 global $wgAmericanDates, $wgUser, $wgUseDynamicDates;
1390
1391 if ( $adj ) { $ts = $this->userAdjust( $ts ); }
1392
1393 if ( $wgUseDynamicDates ) {
1394 $datePreference = $wgUser->getOption( 'date' );
1395 if ( $datePreference == 0 ) {
1396 $datePreference = $wgAmericanDates ? 1 : 2;
1397 }
1398 } else {
1399 $datePreference = $wgAmericanDates ? 1 : 2;
1400 }
1401
1402 if ( $datePreference == 1 ) {
1403 # MDY
1404 $d = $this->getMonthAbbreviation( substr( $ts, 4, 2 ) ) .
1405 " " . (0 + substr( $ts, 6, 2 )) . ", " .
1406 substr( $ts, 0, 4 );
1407 } else if ( $datePreference == 2 ) {
1408 #DMY
1409 $d = (0 + substr( $ts, 6, 2 )) . " " .
1410 $this->getMonthAbbreviation( substr( $ts, 4, 2 ) ) . " " .
1411 substr( $ts, 0, 4 );
1412 } else {
1413 #YMD
1414 $d = substr( $ts, 0, 4 ) . " " . $this->getMonthAbbreviation( substr( $ts, 4, 2 ) ) .
1415 " " . (0 + substr( $ts, 6, 2 ));
1416 }
1417
1418 return $d;
1419 }
1420
1421 function time( $ts, $adj = false )
1422 {
1423 if ( $adj ) { $ts = $this->userAdjust( $ts ); }
1424
1425 $t = substr( $ts, 8, 2 ) . ":" . substr( $ts, 10, 2 );
1426 return $t;
1427 }
1428
1429 function timeanddate( $ts, $adj = false )
1430 {
1431 return $this->time( $ts, $adj ) . ", " . $this->date( $ts, $adj );
1432 }
1433
1434 function rfc1123( $ts )
1435 {
1436 return date( "D, d M Y H:i:s T", $ts );
1437 }
1438
1439 function getValidSpecialPages()
1440 {
1441 global $wgValidSpecialPagesEn;
1442 return $wgValidSpecialPagesEn;
1443 }
1444
1445 function getSysopSpecialPages()
1446 {
1447 global $wgSysopSpecialPagesEn;
1448 return $wgSysopSpecialPagesEn;
1449 }
1450
1451 function getDeveloperSpecialPages()
1452 {
1453 global $wgDeveloperSpecialPagesEn;
1454 return $wgDeveloperSpecialPagesEn;
1455 }
1456
1457 function getMessage( $key )
1458 {
1459 global $wgAllMessagesEn;
1460 return $wgAllMessagesEn[$key];
1461 }
1462
1463 function getAllMessages()
1464 {
1465 global $wgAllMessagesEn;
1466 return $wgAllMessagesEn;
1467 }
1468
1469 function iconv( $in, $out, $string ) {
1470 # For most languages, this is a wrapper for iconv
1471 return iconv( $in, $out, $string );
1472 }
1473
1474 function ucfirst( $string ) {
1475 # For most languages, this is a wrapper for ucfirst()
1476 return ucfirst( $string );
1477 }
1478
1479 function checkTitleEncoding( $s ) {
1480 global $wgInputEncoding;
1481
1482 # Check for UTF-8 URLs; Internet Explorer produces these if you
1483 # type non-ASCII chars in the URL bar or follow unescaped links.
1484 $ishigh = preg_match( '/[\x80-\xff]/', $s);
1485 $isutf = ($ishigh ? preg_match( '/^([\x00-\x7f]|[\xc0-\xdf][\x80-\xbf]|' .
1486 '[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xf7][\x80-\xbf]{3})+$/', $s ) : true );
1487
1488 if( ($wgInputEncoding != "utf-8") and $ishigh and $isutf )
1489 return iconv( "UTF-8", $wgInputEncoding, $s );
1490
1491 if( ($wgInputEncoding == "utf-8") and $ishigh and !$isutf )
1492 return utf8_encode( $s );
1493
1494 # Other languages can safely leave this function, or replace
1495 # it with one to detect and convert another legacy encoding.
1496 return $s;
1497 }
1498
1499 function stripForSearch( $in ) {
1500 # Some languages have special punctuation to strip out
1501 # or characters which need to be converted for MySQL's
1502 # indexing to grok it correctly. Make such changes here.
1503 return $in;
1504 }
1505
1506
1507 function setAltEncoding() {
1508 # Some languages may have an alternate char encoding option
1509 # (Esperanto X-coding, Japanese furigana conversion, etc)
1510 # If 'altencoding' is checked in user prefs, this gives a
1511 # chance to swap out the default encoding settings.
1512 #global $wgInputEncoding, $wgOutputEncoding, $wgEditEncoding;
1513 }
1514
1515 function recodeForEdit( $s ) {
1516 # For some languages we'll want to explicitly specify
1517 # which characters make it into the edit box raw
1518 # or are converted in some way or another.
1519 # Note that if wgOutputEncoding is different from
1520 # wgInputEncoding, this text will be further converted
1521 # to wgOutputEncoding.
1522 global $wgInputEncoding, $wgEditEncoding;
1523 if( $wgEditEncoding == "" or
1524 $wgEditEncoding == $wgInputEncoding ) {
1525 return $s;
1526 } else {
1527 return $this->iconv( $wgInputEncoding, $wgEditEncoding, $s );
1528 }
1529 }
1530
1531 function recodeInput( $s ) {
1532 # Take the previous into account.
1533 global $wgInputEncoding, $wgOutputEncoding, $wgEditEncoding;
1534 if($wgEditEncoding != "") {
1535 $enc = $wgEditEncoding;
1536 } else {
1537 $enc = $wgOutputEncoding;
1538 }
1539 if( $enc == $wgInputEncoding ) {
1540 return $s;
1541 } else {
1542 return $this->iconv( $enc, $wgInputEncoding, $s );
1543 }
1544 }
1545
1546 function replaceDates( $text )
1547 {
1548 global $wgUser, $wgInputEncoding, $wgUseDynamicDates;
1549
1550 # Feature can be disabled
1551 if ( !$wgUseDynamicDates ) {
1552 return;
1553 }
1554
1555 # Setup
1556
1557 $datePreference = $wgUser->getOption( 'date' );
1558
1559 static $monthNames = "", $rxDM, $rxMD, $rxY, $rxDMY, $rxYDM, $rxMDY, $rxYMD;
1560 if ( $monthNames == "" ) {
1561 $monthNames = $this->getMonthRegex();
1562
1563 # Attempt at UTF-8 support, untested at the moment
1564 if ( $wgInputEncoding == 'UTF-8' ) {
1565 $regexTrail = '(?![a-z])/iu';
1566 } else {
1567 $regexTrail = '(?![a-z])/i';
1568 }
1569
1570 # Partial regular expressions
1571 $prxDM = '\[\[(\d{1,2})[ _](' . $monthNames . ')]]';
1572 $prxMD = '\[\[(' . $monthNames . ')[ _](\d{1,2})]]';
1573 $prxY = '\[\[(\d{1,4}([ _]BC|))]]';
1574
1575 # Real regular expressions
1576 $rxDMY = "/{$prxDM} *,? *{$prxY}{$regexTrail}";
1577 $rxYDM = "/{$prxY} *,? *{$prxDM}{$regexTrail}";
1578 $rxMDY = "/{$prxMD} *,? *{$prxY}{$regexTrail}";
1579 $rxYMD = "/{$prxY} *,? *{$prxMD}{$regexTrail}";
1580 $rxDM = "/{$prxDM}{$regexTrail}";
1581 $rxMD = "/{$prxMD}{$regexTrail}";
1582 $rxY = "/{$prxY}{$regexTrail}";
1583 }
1584
1585 # Do replacements
1586 # TODO: month capitalisation?
1587 if ( $datePreference == 0 ) {
1588 # no preference
1589 $text = preg_replace( $rxDMY, '[[$2 $1|$1 $2]] [[$3]]', $text);
1590 $text = preg_replace( $rxYDM, '[[$1]] [[$4 $3]]', $text);
1591 $text = preg_replace( $rxMDY, '[[$1 $2]], [[$3]]', $text);
1592 $text = preg_replace( $rxYMD, '[[$1]] [[$3 $4]]', $text);
1593 $text = preg_replace ( $rxDM, '[[$2 $1|$1 $2]]', $text);
1594 } else if ( $datePreference == 1 ) {
1595 # MDY preferred
1596 $text = preg_replace( $rxDMY, '[[$2 $1]], [[$3]]', $text);
1597 $text = preg_replace( $rxYDM, '[[$4 $3]], [[$1]]', $text);
1598 $text = preg_replace( $rxMDY, '[[$1 $2]], [[$3]]', $text);
1599 $text = preg_replace( $rxYMD, '[[$3 $4]], [[$1]]', $text);
1600 $text = preg_replace ( $rxDM, '[[$2 $1]]', $text);
1601 } else if ( $datePreference == 2 ) {
1602 # DMY preferred
1603 $text = preg_replace( $rxDMY, '[[$2 $1|$1 $2]] [[$3]]', $text);
1604 $text = preg_replace( $rxYDM, '[[$4 $3|$3 $4]] [[$1]]', $text);
1605 $text = preg_replace( $rxMDY, '[[$1 $2|$2 $1]] [[$3]]', $text);
1606 $text = preg_replace( $rxYMD, '[[$3 $4|$4 $3]] [[$1]]', $text);
1607 $text = preg_replace ( $rxDM, '[[$2 $1|$1 $2]]', $text);
1608 $text = preg_replace ( $rxMD, '[[$1 $2|$2 $1]]', $text);
1609 } else if ( $datePreference == 3 ) {
1610 # YMD preferred
1611 $text = preg_replace( $rxDMY, '[[$3]] [[$2 $1]]', $text);
1612 $text = preg_replace( $rxYDM, '[[$1]] [[$4 $3]]', $text);
1613 $text = preg_replace( $rxMDY, '[[$3]] [[$1 $2]]', $text);
1614 $text = preg_replace( $rxYMD, '[[$1]] [[$3 $4]]', $text);
1615 $text = preg_replace ( $rxDM, '[[$2 $1]]', $text);
1616 }
1617 return $text;
1618 }
1619
1620 # For right-to-left language support
1621 function isRTL() { return false; }
1622
1623 function getMagicWords()
1624 {
1625 global $wgMagicWordsEn;
1626 return $wgMagicWordsEn;
1627 }
1628
1629 # Fill a MagicWord object with data from here
1630 function getMagic( &$mw )
1631 {
1632 $raw = $this->getMagicWords(); # don't worry, it's reference counted not deep copy
1633 $rawEntry = $raw[$mw->mId];
1634 $mw->mCaseSensitive = $rawEntry[0];
1635 $mw->mSynonyms = array_slice( $rawEntry, 1 );
1636 }
1637 }
1638
1639 global $IP;
1640 @include_once( "{$IP}/Language" . ucfirst( $wgLanguageCode ) . ".php" );
1641
1642 ?>