summaryrefslogtreecommitdiff
path: root/resources/src/mediawiki.language/languages/ru.js
blob: 2077b6beb2997a0d545f1b1f0949d9fdb83d0292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*!
 * Russian (Русский) language functions
 */

// These tests were originally made for names of Wikimedia
// websites, so they don't currently cover all the possible
// cases.

mediaWiki.language.convertGrammar = function ( word, form ) {
	'use strict';

	var grammarForms = mediaWiki.language.getData( 'ru', 'grammarForms' );
	if ( grammarForms && grammarForms[form] ) {
		return grammarForms[form][word];
	}
	switch ( form ) {
		case 'genitive': // родительный падеж
			if ( word.slice( -1 ) === 'ь' ) {
				word = word.slice( 0, -1 ) + 'я';
			} else if ( word.slice( -2 ) === 'ия' ) {
				word = word.slice( 0, -2 ) + 'ии';
			} else if ( word.slice( -2 ) === 'ка' ) {
				word = word.slice( 0, -2 ) + 'ки';
			} else if ( word.slice( -2 ) === 'ти' ) {
				word = word.slice( 0, -2 ) + 'тей';
			} else if ( word.slice( -2 ) === 'ды' ) {
				word = word.slice( 0, -2 ) + 'дов';
			} else if ( word.slice( -1 ) === 'д' ) {
				word = word.slice( 0, -1 ) + 'да';
			} else if ( word.slice( -3 ) === 'ные' ) {
				word = word.slice( 0, -3 ) + 'ных';
			} else if ( word.slice( -3 ) === 'ник' ) {
				word = word.slice( 0, -3 ) + 'ника';
			}
			break;
		case 'prepositional': // предложный падеж
			if ( word.slice( -1 ) === 'ь' ) {
				word = word.slice( 0, -1 ) + 'е';
			} else if ( word.slice( -2 ) === 'ия' ) {
				word = word.slice( 0, -2 ) + 'ии';
			} else if ( word.slice( -2 ) === 'ка' ) {
				word = word.slice( 0, -2 ) + 'ке';
			} else if ( word.slice( -2 ) === 'ти' ) {
				word = word.slice( 0, -2 ) + 'тях';
			} else if ( word.slice( -2 ) === 'ды' ) {
				word = word.slice( 0, -2 ) + 'дах';
			} else if ( word.slice( -1 ) === 'д' ) {
				word = word.slice( 0, -1 ) + 'де';
			} else if ( word.slice( -3 ) === 'ные' ) {
				word = word.slice( 0, -3 ) + 'ных';
			} else if ( word.slice( -3 ) === 'ник' ) {
				word = word.slice( 0, -3 ) + 'нике';
			}
			break;
	}
	return word;
};