From 000d70f510923e2020b28f0c6a3f157b3c692a9c Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Wed, 19 May 2004 21:09:19 +0000 Subject: [PATCH] additional legends for prefs form, silenced the month function for now (after importing the en db dump viewing image pages made it yell- apparently the index that's passed to it is empty in that case) --- languages/Language.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/languages/Language.php b/languages/Language.php index e2e7db80f6..096f154294 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -876,6 +876,9 @@ See [[{{ns:4}}:User preferences help]] for help deciphering the options.", "math_bad_tmpdir" => "Can't write to or create math temp directory", "math_bad_output" => "Can't write to or create math output directory", "math_notexvc" => "Missing texvc executable; please see math/README to configure.", +'prefs-personal' => 'User data', +'prefs-rc' => 'Recent changes and stub display', +'prefs-misc' => 'Misc settings', "saveprefs" => "Save preferences", "resetprefs" => "Reset preferences", "oldpassword" => "Old password", @@ -1658,7 +1661,7 @@ class Language { function getMonthAbbreviation( $key ) { global $wgMonthAbbreviationsEn; - return $wgMonthAbbreviationsEn[$key-1]; + return @$wgMonthAbbreviationsEn[$key-1]; } function getWeekdayName( $key ) -- 2.20.1