MediaWiki master
LanguageAz.php
Go to the documentation of this file.
1<?php
8
14class LanguageAz extends Language {
15
17 public function ucfirst( $str ) {
18 if ( str_starts_with( $str, 'i' ) ) {
19 return 'İ' . substr( $str, 1 );
20 }
21 return parent::ucfirst( $str );
22 }
23}
Azerbaijani (Azərbaycan) specific code.
ucfirst( $str)
string The string with uppercase conversion applied to the first character
Base class for language-specific code.
Definition Language.php:69