* Removed msg:articlenamespace, Special:Allpages and Special:Contributions
[lhc/web/wiklou.git] / languages / LanguageIs.php
index 39a527a..14a782a 100644 (file)
@@ -157,7 +157,6 @@ svo auðveldara sé að sjá hana þar meðal fjöldans.
 'articleexists' => "Annaðhvort er þegar til síða undir þessum titli, 
 eða sá titill sem þú hefur valið er ekki gildur. 
 Vinsamlegast veldu annan titil.",
-'articlenamespace' => "(greinar)",
 'asksql' => "Gagnagrunnsfyrirspurn",
 'aug' => "ágú",
 'august' => "ágúst",
@@ -849,9 +848,8 @@ class LanguageIs extends LanguageUtf8 {
         * The Icelandic number style uses dots where English would use commas
         * and commas where English would use dots, e.g. 201.511,17 not 201,511.17
         */
-       function formatNum( $number ) {
-               global $wgTranslateNumerals;
-               return $wgTranslateNumerals ? strtr($this->commafy($number), '.,', ',.' ) : $number;
+       function formatNum( $number, $year = false ) {
+               return $year ? $number : strtr($this->commafy($number), '.,', ',.' );
        }
 }