Merge "mediawiki.searchSuggest: Enable result caching"
[lhc/web/wiklou.git] / languages / classes / LanguageAr.php
index 514ff02..858a7be 100644 (file)
@@ -1,27 +1,51 @@
 <?php
-/** Arabic (العربية)
+/**
+ * Arabic (العربية) specific code.
  *
- * @addtogroup 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 Niklas Laxström
+ * @ingroup Language
+ */
+
+/**
+ * Arabic (العربية)
+ *
+ * @ingroup Language
  */
 class LanguageAr extends Language {
 
-       function convertPlural( $count, $w1, $w2, $w3, $w4, $w5) {
-               $forms = array($w1, $w2, $w3, $w4, $w5);
-               if ( $count == 1 ) {
-                       $index = 0;
-               } elseif( $count == 2 ) {
-                       $index = 1;
-               } elseif( $count < 11 && $count > 2 ) {
-                       $index = 2;
-               } elseif( $count % 100 == 0) {
-                       $index = 3;
-               } else {
-                       $index = 4;
+       /**
+        * Temporary hack for bug 9413: replace Arabic presentation forms with their
+        * standard equivalents.
+        *
+        * @todo FIXME: This is language-specific for now only to avoid the negative
+        * performance impact of enabling it for all languages.
+        *
+        * @param string $s
+        *
+        * @return string
+        */
+       function normalize( $s ) {
+               global $wgFixArabicUnicode;
+               $s = parent::normalize( $s );
+               if ( $wgFixArabicUnicode ) {
+                       $s = $this->transformUsingPairFile( 'normalize-ar.ser', $s );
                }
-               return $forms[$index];
+               return $s;
        }
-
 }
-