MediaWiki REL1_39
LanguageAz.php
Go to the documentation of this file.
1<?php
26class LanguageAz extends Language {
27
32 public function ucfirst( $string ) {
33 if ( substr( $string, 0, 1 ) === 'i' ) {
34 return 'İ' . substr( $string, 1 );
35 }
36 return parent::ucfirst( $string );
37 }
38}
Azerbaijani (Azərbaycan) specific code.
ucfirst( $string)
Base class for language-specific code.
Definition Language.php:53