Merge "do not output numberofviews, if $wgDisableCounters = true"
[lhc/web/wiklou.git] / languages / classes / LanguageKk_cyrl.php
index 51749dd..081a20f 100644 (file)
@@ -1,17 +1,43 @@
 <?php
-/** Kazakh (Қазақша)
+/**
+ * Kazakh (Қазақша) specific code.
  *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
  * @ingroup Language
  */
 
+/**
+ * Kazakh (Қазақша)
+ *
+ * @ingroup Language
+ */
 class LanguageKk_cyrl extends Language {
 
        # Convert from the nominative form of a noun to some other case
        # Invoked with {{GRAMMAR:case|word}}
        /**
         * Cases: genitive, dative, accusative, locative, ablative, comitative + possessive forms
+        *
+        * @param $word string
+        * @param $case string
+        *
+        * @return string
         */
-
        function convertGrammarKk_cyrl( $word, $case ) {
                global $wgGrammarForms;
                if ( isset( $wgGrammarForms['kk-kz'][$case][$word] ) ) {
@@ -232,6 +258,11 @@ class LanguageKk_cyrl extends Language {
                return $word;
        }
 
+       /**
+        * @param $word string
+        * @param $case string
+        * @return string
+        */
        function convertGrammarKk_latn( $word, $case ) {
                global $wgGrammarForms;
                if ( isset( $wgGrammarForms['kk-tr'][$case][$word] ) ) {
@@ -452,6 +483,11 @@ class LanguageKk_cyrl extends Language {
                return $word;
        }
 
+       /**
+        * @param $word string
+        * @param $case string
+        * @return string
+        */
        function convertGrammarKk_arab( $word, $case ) {
                global $wgGrammarForms;
                if ( isset( $wgGrammarForms['kk-cn'][$case][$word] ) ) {
@@ -672,9 +708,13 @@ class LanguageKk_cyrl extends Language {
                return $word;
        }
 
+       /**
+        * @param $word string
+        * @param $allVowels array
+        * @return array
+        */
        function lastLetter( $word, $allVowels ) {
                $lastLetter = array();
-               $ar = array();
 
                // Put the word in a form we can play with since we're using UTF-8
                $ar = preg_split( '//u', parent::lc( $word ), -1, PREG_SPLIT_NO_EMPTY );
@@ -709,6 +749,10 @@ class LanguageKk_cyrl extends Language {
 
        /**
         * Avoid grouping whole numbers between 0 to 9999
+        *
+        * @param $_ string
+        *
+        * @return string
         */
        function commafy( $_ ) {
                if ( !preg_match( '/^\d{1,4}$/', $_ ) ) {