Last modified: 2005-02-09 07:42:12 UTC
LanguageEt.php rev 1.23 does not allow monthnames, daynames and math preference texts to be displayed (problem occurs on et.wikipedia.org, et.wiktionary.org). The reason is that it contains several methods like the following: function getWeekdayName( $key ) { global $wgWeekdayNamesEt; return $wgWeekdayNamesEt[$key-1]; } Variables like $wgWeekdayNamesEt are not available any more, instead the messages previously stored there, are now stored in $wgAllMessagesEt. Therefore such methods should be removed. I was the one who caused the problem by forgetting to remove the methods when submitting a previous patch. I will post a new patch candidate in any minute.
Created attachment 276 [details] patch removing some more bogus methods It seemed, that even if this patch is applied, {{CURRENTDAYNAME}} does not return a dayname.
Patch applied to REL1_4 and HEAD and installed.