Merge "Added result properties to action=paraminfo"
[lhc/web/wiklou.git] / languages / classes / LanguageSr.php
index 86bfd82..26d6853 100644 (file)
@@ -1,4 +1,25 @@
 <?php
+/**
+ * Serbian (Српски / Srpski) 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
+ */
 
 require_once( dirname( __FILE__ ) . '/../LanguageConverter.php' );
 require_once( dirname( __FILE__ ) . '/LanguageSr_ec.php' );
@@ -147,6 +168,7 @@ class SrConverter extends LanguageConverter {
         * @param $text string
         * @param $toVariant string
         *
+        * @throws MWException
         * @return string
         */
        function translate( $text, $toVariant ) {
@@ -240,7 +262,7 @@ class LanguageSr extends LanguageSr_ec {
 
                // If the actual number is not mentioned in the expression, then just two forms are enough:
                // singular for $count == 1
-               // plural   for $count != 0
+               // plural   for $count != 1
                // For example, "This user belongs to {{PLURAL:$1|one group|several groups}}."
                if ( count( $forms ) === 2 ) {
                        return $count == 1 ? $forms[0] : $forms[1];