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
{
31 * Convert from the nominative form of a noun to some other case
32 * Invoked with {{grammar:case|word}}
38 function convertGrammar( $word, $case ) {
39 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
46 # site names so it doesn't matter if they are wrong sometimes. Just add
47 # a special case for your site name if necessary.
49 # join and array_slice instead mb_substr
51 preg_match_all( '/./us', $word, $ar );
52 if ( !preg_match( "/[a-zA-Z_]/us", $word ) ) {
54 case 'genitive': # родительный падеж
55 if ( ( implode( '', array_slice( $ar[0], -4 ) ) == 'вики' )
56 ||
( implode( '', array_slice( $ar[0], -4 ) ) == 'Вики' )
58 } elseif ( implode( '', array_slice( $ar[0], -2 ) ) == 'ї' ) {
59 $word = implode( '', array_slice( $ar[0], 0, -2 ) ) . 'їѩ';
62 case 'accusative': # винительный падеж