MediaWiki REL1_35
LanguageAz.php
Go to the documentation of this file.
1<?php
29class LanguageAz extends Language {
30
35 public function ucfirst( $string ) {
36 if ( substr( $string, 0, 1 ) === 'i' ) {
37 return 'İ' . substr( $string, 1 );
38 }
39 return parent::ucfirst( $string );
40 }
41}
Azerbaijani (Azərbaycan)
ucfirst( $string)
Internationalisation code See https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation for more...
Definition Language.php:41