Merge "Add 2 FIXMEs about confusingly named functions"
[lhc/web/wiklou.git] / languages / classes / LanguageWa.php
index fde8c53..3520298 100644 (file)
  * @ingroup Language
  */
 class LanguageWa extends Language {
-       /**
-        * Use singular form for zero
-        *
-        * @param $count int
-        * @param $forms array
-        *
-        * @return string
-        */
-       function convertPlural( $count, $forms ) {
-               if ( !count( $forms ) ) {
-                       return '';
-               }
-               $forms = $this->preConvertPlural( $forms, 2 );
-
-               return ( $count <= 1 ) ? $forms[0] : $forms[1];
-       }
 
        /**
         * Dates in Walloon are "1î d' <monthname>" for 1st of the month,
         * "<day> di <monthname>" for months starting by a consoun, and
         * "<day> d' <monthname>" for months starting with a vowel
         *
-        * @param $ts string
-        * @param $adj bool
-        * @param $format bool
-        * @param $tc bool
+        * @param string $ts
+        * @param bool $adj
+        * @param bool $format
+        * @param bool $tc
         * @return string
         */
        function date( $ts, $adj = false, $format = true, $tc = false ) {
@@ -66,7 +50,6 @@ class LanguageWa extends Language {
                $datePreference = $this->dateFormat( $format );
 
                # ISO (YYYY-mm-dd) format
-               #
                # we also output this format for YMD (eg: 2001 January 15)
                if ( $datePreference == 'ISO 8601' ) {
                        $d = substr( $ts, 0, 4 ) . '-' . substr( $ts, 4, 2 ) . '-' . substr( $ts, 6, 2 );
@@ -80,7 +63,6 @@ class LanguageWa extends Language {
                }
 
                # Walloon format
-               #
                # we output this in all other cases
                $m = substr( $ts, 4, 2 );
                $n = substr( $ts, 6, 2 );
@@ -101,10 +83,10 @@ class LanguageWa extends Language {
        }
 
        /**
-        * @param $ts string
-        * @param $adj bool
-        * @param $format bool
-        * @param $tc bool
+        * @param string $ts
+        * @param bool $adj
+        * @param bool $format
+        * @param bool $tc
         * @return string
         */
        function timeanddate( $ts, $adj = false, $format = true, $tc = false ) {