From ca32f08966f1b51fcb19460f0996bb0c4048e6fe Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 3 Dec 2011 13:29:22 +0100 Subject: Update to MediaWiki 1.18.0 * also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing --- languages/classes/LanguageCs.php | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'languages/classes/LanguageCs.php') diff --git a/languages/classes/LanguageCs.php b/languages/classes/LanguageCs.php index 935aed4e..f50a7e70 100644 --- a/languages/classes/LanguageCs.php +++ b/languages/classes/LanguageCs.php @@ -6,11 +6,16 @@ */ class LanguageCs extends Language { - # Plural transformations - # Invoked by putting - # {{plural:count|form1|form2-4|form0,5+}} for two forms plurals - # {{plural:count|form1|form0,2+}} for single form plurals - # in a message + /** + * Plural transformations + * Invoked by putting + * {{plural:count|form1|form2-4|form0,5+}} for two forms plurals + * {{plural:count|form1|form0,2+}} for single form plurals + * in a message + * @param $count int + * @param $forms array + * @return string + */ function convertPlural( $count, $forms ) { if ( !count( $forms ) ) { return ''; } $forms = $this->preConvertPlural( $forms, 3 ); -- cgit v1.2.3-54-g00ecf