Update to German (de) translation. Consistent use of "Seite" instead of "Artikel...
[lhc/web/wiklou.git] / languages / LanguageLt.php
1 <?php
2 /** Lithuanian (Lietuvių)
3 *
4 * @package MediaWiki
5 * @subpackage Language
6 *
7 */
8
9 class LanguageLt extends Language {
10 /* Word forms (with examples):
11 1 - vienas (1) lapas
12 2 - trys (3) lapai
13 3 - penkiolika (15) lapų
14 */
15 function convertPlural( $count, $wordform1, $wordform2, $wordform3) {
16 $count = str_replace (' ', '', $count);
17 if ($count%10==1 && $count%100!=11) return $wordform1;
18 if ($count%10>=2 && ($count%100<10 || $count%100>=20)) return $wordform2;
19 return $wordform3;
20 }
21 }
22 ?>