MediaWiki master
LanguageMl.php
Go to the documentation of this file.
1<?php
7namespace MediaWiki\Languages;
8
11
17class LanguageMl extends Language {
32 public function normalize( $s ) {
33 $s = parent::normalize( $s );
34 return $this->transformUsingPairFile( NormalizeMl::class, $s );
35 }
36}
37
39class_alias( LanguageMl::class, 'LanguageMl' );
Base class for language-specific code.
Definition Language.php:65
transformUsingPairFile(string $dataClass, string $input)
Transform a string using serialized data stored in the given file (which must be in the serialized su...
Malayalam (മലയാളം)
normalize( $s)
Convert Unicode 5.0 style Malayalam input to Unicode 5.1, similar to T11413 which is the same issue f...