MediaWiki REL1_31
LanguageAr.php
Go to the documentation of this file.
1<?php
30class LanguageAr extends Language {
31
43 function normalize( $s ) {
45 $s = parent::normalize( $s );
46 if ( $wgFixArabicUnicode ) {
47 $s = $this->transformUsingPairFile( 'normalize-ar.ser', $s );
48 }
49 return $s;
50 }
51}
$wgFixArabicUnicode
Set this to true to replace Arabic presentation forms with their standard forms in the U+0600-U+06FF ...
Arabic (العربية)
normalize( $s)
Temporary hack for T11413: replace Arabic presentation forms with their standard equivalents.
Internationalisation code.
Definition Language.php:35
transformUsingPairFile( $file, $string)
Transform a string using serialized data stored in the given file (which must be in the serialized su...