]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blobdiff - languages/classes/LanguageAr.php
MediaWiki 1.30.2
[autoinstalls/mediawiki.git] / languages / classes / LanguageAr.php
index 01c921a073c946c297168ee4ac2eca8684856c7f..90e37516e8977a915c170188994cea61aa143cbc 100644 (file)
@@ -1,27 +1,51 @@
 <?php
-/** Arabic (العربية)
+/**
+ * Arabic (العربية) 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 Niklas Laxström
+ * @ingroup Language
  */
-class LanguageAr extends Language {
 
-       function convertPlural( $count, $forms ) {
-               if ( !count($forms) ) { return ''; }
-               $forms = $this->preConvertPlural( $forms, 5 );
+/**
+ * Arabic (العربية)
+ *
+ * @ingroup Language
+ */
+class LanguageAr extends Language {
 
-               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 T11413: 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;
        }
 }