MediaWiki REL1_33
LanguageKsh.php
Go to the documentation of this file.
1<?php
30class LanguageKsh extends Language {
31 private static $familygender = [
32 // Do not add male wiki families, since that's the default.
33 // No need add neuter wikis having names ending in -wiki.
34 'wikipedia' => 'f',
35 'wikiversity' => 'f',
36 'wiktionary' => 'n',
37 'wikibooks' => 'n',
38 'wikiquote' => 'n',
39 'wikisource' => 'n',
40 'wikitravel' => 'n',
41 'wikia' => 'f',
42 'translatewiki.net' => 'n',
43 ];
44
89 function convertGrammar( $word, $case ) {
90 $lord = strtolower( $word );
91 $gender = 'm'; // Nuutnaarel // default
92 if ( preg_match( '/wiki$/', $lord ) ) {
93 $gender = 'n'; // Dat xyz-wiki
94 }
95 if ( isset( self::$familygender[$lord] ) ) {
96 $gender = self::$familygender[$lord];
97 }
98 $case = ' ' . strtolower( $case );
99 if ( preg_match( '/ [is]/', $case ) ) {
100 # däm WikiMaatplaz singe, dä Wikipeedija iere, däm Wikiwööterbooch singe
101 # dem/em WikiMaatplaz singe, de Wikipeedija iere, dem/em Wikiwööterbooch singe
102 # däm WikiMaatplaz sing, dä Wikipeedija ier, däm Wikiwööterbooch sing
103 # dem/em WikiMaatplaz sing, de Wikipeedija ier, dem/em Wikiwööterbooch sing
104 $word = ( preg_match( '/ b/', $case )
105 ? ( $gender == 'f' ? 'dä' : 'däm' )
106 : ( $gender == 'f' ? 'de' : 'dem' )
107 ) . ' ' . $word . ' ' .
108 ( $gender == 'f' ? 'ier' : 'sing' ) .
109 ( preg_match( '/ m/', $case ) ? 'e' : ''
110 );
111 } elseif ( preg_match( '/ e/', $case ) ) {
112 # en dämm WikiMaatPlaz, en dä Wikipeedija, en dämm Wikiwööterbooch
113 # em WikiMaatplaz, en de Wikipeedija, em Wikiwööterbooch
114 if ( preg_match( '/ b/', $case ) ) {
115 $word = 'en ' . ( $gender == 'f' ? 'dä' : 'däm' ) . ' ' . $word;
116 } else {
117 $word = ( $gender == 'f' ? 'en de' : 'em' ) . ' ' . $word;
118 }
119 } elseif ( preg_match( '/ [fv]/', $case ) || preg_match( '/ [2jg]/', $case ) ) {
120 # vun däm WikiMaatplaz, vun dä Wikipeedija, vun däm Wikiwööterbooch
121 # vum WikiMaatplaz, vun de Wikipeedija, vum Wikiwööterbooch
122 if ( preg_match( '/ b/', $case ) ) {
123 $word = 'vun ' . ( $gender == 'f' ? 'dä' : 'däm' ) . ' ' . $word;
124 } else {
125 $word = ( $gender == 'f' ? 'vun de' : 'vum' ) . ' ' . $word;
126 }
127 } elseif ( preg_match( '/ [3d]/', $case ) ) {
128 # dämm WikiMaatPlaz, dä Wikipeedija, dämm Wikiwööterbooch
129 # dem/em WikiMaatplaz, de Wikipeedija, dem/em Wikiwööterbooch
130 if ( preg_match( '/ b/', $case ) ) {
131 $word = ( $gender == 'f' ? 'dää' : 'dämm' ) . ' ' . $word;
132 } else {
133 $word = ( $gender == 'f' ? 'de' : 'dem' ) . ' ' . $word;
134 }
135 } else {
136 # dä WikiMaatPlaz, di Wikipeedija, dat Wikiwööterbooch
137 # der WikiMaatplaz, de Wikipeedija, et Wikiwööterbooch
138 if ( preg_match( '/ b/', $case ) ) {
139 switch ( $gender ) {
140 case 'm':
141 $lord = 'dä';
142 break;
143 case 'f':
144 $lord = 'di';
145 break;
146 default:
147 $lord = 'dat';
148 }
149 } else {
150 switch ( $gender ) {
151 case 'm':
152 $lord = 'der';
153 break;
154 case 'f':
155 $lord = 'de';
156 break;
157 default:
158 $lord = 'et';
159 }
160 }
161 $word = $lord . ' ' . $word;
162 }
163 return $word;
164 }
165
174 function convertPlural( $count, $forms ) {
175 $forms = $this->handleExplicitPluralForms( $count, $forms );
176 if ( is_string( $forms ) ) {
177 return $forms;
178 }
179 if ( !count( $forms ) ) {
180 return '';
181 }
182 $forms = $this->preConvertPlural( $forms, 3 );
183
184 if ( $count == 1 ) {
185 return $forms[0];
186 } elseif ( $count == 0 ) {
187 return $forms[2];
188 } else {
189 return $forms[1];
190 }
191 }
192}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
Ripuarian (Ripoarėsh)
static $familygender
convertPlural( $count, $forms)
Handle cases of (1, other, 0) or (1, other)
convertGrammar( $word, $case)
Convert from the nominative form of a noun to other cases.
Internationalisation code.
Definition Language.php:36
preConvertPlural($forms, $count)
Checks that convertPlural was given an array and pads it to requested amount of forms by copying the ...
handleExplicitPluralForms( $count, array $forms)
Handles explicit plural forms for Language::convertPlural()