3 * Old Church Slavonic (Ѩзыкъ словѣньскъ) specific code.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * Old Church Slavonic (Ѩзыкъ словѣньскъ)
29 class LanguageCu
extends Language
{
32 * Convert from the nominative form of a noun to some other case
33 * Invoked with {{grammar:case|word}}
39 function convertGrammar( $word, $case ) {
40 global $wgGrammarForms;
41 if ( isset( $wgGrammarForms['сu'][$case][$word] ) ) {
42 return $wgGrammarForms['сu'][$case][$word];
45 # These rules are not perfect, but they are currently only used for site names so it doesn't
46 # matter if they are wrong sometimes. Just add a special case for your site name if necessary.
48 # join and array_slice instead mb_substr
50 preg_match_all( '/./us', $word, $ar );
51 if ( !preg_match( "/[a-zA-Z_]/us", $word ) ) {
53 case 'genitive': # родительный падеж
54 if ( ( join( '', array_slice( $ar[0], -4 ) ) == 'вики' ) ||
( join( '', array_slice( $ar[0], -4 ) ) == 'Вики' ) ) {
55 } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ї' ) {
56 $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'їѩ';
59 case 'accusative': # винительный падеж
72 function convertPlural( $count, $forms ) {
73 if ( !count( $forms ) ) {
76 $forms = $this->preConvertPlural( $forms, 4 );
78 switch ( $count %
10 ) {
79 case 1: return $forms[0];
80 case 2: return $forms[1];
82 case 4: return $forms[2];
83 default: return $forms[3];