MediaWiki  1.34.0
LanguageMl.php
Go to the documentation of this file.
1 <?php
29 class LanguageMl extends Language {
44  public function normalize( $s ) {
46  $s = parent::normalize( $s );
47  if ( $wgFixMalayalamUnicode ) {
48  $s = $this->transformUsingPairFile( 'normalize-ml.php', $s );
49  } else {
50  wfDeprecated( '$wgFixMalayalamUnicode = false', '1.33' );
51  }
52  return $s;
53  }
54 }
$s
$s
Definition: mergeMessageFileList.php:185
$wgFixMalayalamUnicode
$wgFixMalayalamUnicode
Set this to true to replace ZWJ-based chillu sequences in Malayalam text with their Unicode 5....
Definition: DefaultSettings.php:3050
LanguageMl\normalize
normalize( $s)
Temporary hack for the issue described at http://permalink.gmane.org/gmane.science....
Definition: LanguageMl.php:44
wfDeprecated
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
Definition: GlobalFunctions.php:1044
Language\transformUsingPairFile
transformUsingPairFile( $file, $string)
Transform a string using serialized data stored in the given file (which must be in the serialized su...
Definition: Language.php:2969
LanguageMl
Malayalam (മലയാളം)
Definition: LanguageMl.php:29
Language
Internationalisation code.
Definition: Language.php:37