X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=languages%2Fclasses%2FLanguageWa.php;h=3520298e627b887ec00aaa9ed21a068f3aeb8ef0;hb=d65fc1eb3437df31493f40380d0f985b9df0492e;hp=fde8c53db999d3d96dcc15e88e84312934f21923;hpb=b65669ff7adbbde55872a8ddd93214a9e1df75c6;p=lhc%2Fweb%2Fwiklou.git diff --git a/languages/classes/LanguageWa.php b/languages/classes/LanguageWa.php index fde8c53db9..3520298e62 100644 --- a/languages/classes/LanguageWa.php +++ b/languages/classes/LanguageWa.php @@ -30,32 +30,16 @@ * @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' " for 1st of the month, * " di " for months starting by a consoun, and * " d' " 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 ) {