* (bug 3817) Use localized date formats in preferences; 'no preference' option
[lhc/web/wiklou.git] / languages / LanguageOc.php
index 06c06ad..3926352 100644 (file)
@@ -844,17 +844,16 @@ class LanguageOc extends LanguageUtf8{
                return $wgSkinNamesOc;
        }
 
-       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 formatMonth( $month, $format ) {
+               return $this->getMonthAbbreviation( $month );
        }
-
-       function timeanddate( $ts, $adj = false ) {
-               return $this->date( $ts, $adj ) . " à " . $this->time( $ts, $adj );
+       
+       function timeBeforeDate( $format ) {
+               return false;
+       }
+       
+       function timeDateSeparator( $format ) {
+               return " à ";
        }
 
        function getMessage( $key ) {