formatNum for Esperanto
[lhc/web/wiklou.git] / languages / LanguageLi.php
index d70f838..d751fed 100644 (file)
@@ -374,7 +374,6 @@ Vergeet neet dat net als met andere pagina's op Wikipedia anderen de ge-uploade
 "copyrightpage" => "Wikipedia:Auteursrechten",
 "copyrightpagename" => "Wikipedia auteursrechten",
 "uploadedfiles" => "Ge-uploade bestanden",
-"ignorewarning" => "Negeer de waarschuwing en sla het bestand op.",
 "minlength"  => "De naam van het bestand moet uit ten minste drie tekens bestaan.",
 "badfilename" => "De naam van het bestand is gewijzigd in \"$1\".",
 "badfiletype" => "\".$1\" is geen aanbevolen afbeeldings bestandsformaat.",
@@ -883,20 +882,19 @@ class LanguageLi extends LanguageUtf8 {
                global $wgSkinNamesLi;
                return $wgSkinNamesLi;
        }
-
-       function date( $ts, $adj = false ) {
-               if ( $adj ) { $ts = $this->userAdjust( $ts ); }
-
-               $d = (0 + substr( $ts, 6, 2 )) . " " .
-               $this->getMonthAbbreviation( substr( $ts, 4, 2 ) ) . " " .
-               substr( $ts, 0, 4 );
-               return $d;
+       
+       function timeBeforeDate( $format ) {
+               return false;
        }
-
-       function timeanddate( $ts, $adj = false ) {
-               return $this->date( $ts, $adj ) . " " . $this->time( $ts, $adj );
+       
+       function timeDateSeparator( $format ) {
+               return ' ';
        }
-
+       
+       function formatMonth( $month, $format ) {
+               return $this->getMonthAbbreviation( $month );
+       }
+       
        function getMessage( $key ) {
                global $wgAllMessagesLi;
                if( isset( $wgAllMessagesLi[$key] ) ) {