31 # Convert from the nominative form of a noun to some other case
32 # Invoked with {{GRAMMAR:case|word}}
58 if ( substr( $string, 0, 1 ) ===
'i' ) {
59 return 'İ' . substr( $string, 1 );
61 return parent::ucfirst( $string );
72 if ( substr( $string, 0, 1 ) ===
'I' ) {
73 return 'ı' . substr( $string, 1 );
75 return parent::lcfirst( $string );
$wgGrammarForms
Some languages need different word forms, usually for different cases.
Karakalpak (Qaraqalpaqsha)
lcfirst( $string)
It fixes issue with lcfirst for transforming 'I' to 'ı'.
convertGrammar( $word, $case)
Cases: genitive, dative, accusative, locative, ablative, comitative + possessive forms.
ucfirst( $string)
It fixes issue with ucfirst for transforming 'i' to 'İ'.
Internationalisation code.