Merge "Added result properties to action=paraminfo"
[lhc/web/wiklou.git] / languages / classes / LanguageGd.php
index 2a11fd7..f042b02 100644 (file)
@@ -1,10 +1,32 @@
 <?php
-/** Scots Gaelic (Gàidhlig)
+/**
+ * Scots Gaelic (Gàidhlig) specific code.
  *
- * @ingroup Language
+ * 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
  * @author Raimond Spekking
  * @author Niklas Laxström
+ * @ingroup Language
+ */
+
+/**
+ * Scots Gaelic (Gàidhlig)
+ *
+ * @ingroup Language
  */
 class LanguageGd extends Language {
 
@@ -19,19 +41,23 @@ class LanguageGd extends Language {
         * $forms[4] - 3-10, 13-19
         * $forms[5] - 0, 20, rest
         *
+        * @param $count int
+        * @param $forms array
+        *
+        * @return string
         */
        function convertPlural( $count, $forms ) {
                if ( !count( $forms ) ) { return ''; }
                $forms = $this->preConvertPlural( $forms, 6 );
 
                $count = abs( $count );
-               if ( $count === 1 ) {
+               if ( $count == 1 ) {
                        return $forms[0];
-               } elseif ( $count === 2 ) {
+               } elseif ( $count == 2 ) {
                        return $forms[1];
-               } elseif ( $count === 11 ) {
+               } elseif ( $count == 11 ) {
                        return $forms[2];
-               } elseif ( $count === 12 ) {
+               } elseif ( $count == 12 ) {
                        return $forms[3];
                } elseif ( ($count >= 3 && $count <= 10) || ($count >= 13 && $count <= 19) ) {
                        return $forms[4];