Log function name for SHOW PROCESSLIST query in getLag().
[mediawiki.git] / languages / classes / LanguageLv.php
blob2c8d9f316fbd5f446c5a77fdba99e39909a18463
1 <?php
3 /** Latvian (Latviešu)
5 * @ingroup Language
7 * @author Niklas Laxström
9 * @copyright Copyright © 2006, Niklas Laxström
10 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
12 class LanguageLv extends Language {
13 /**
14 * Plural form transformations. Using the first form for words with the last digit 1, but not for words with the last digits 11, and the second form for all the others.
16 * Example: {{plural:{{NUMBEROFARTICLES}}|article|articles}}
18 * @param integer $count
19 * @param string $wordform1
20 * @param string $wordform2
21 * @param string $wordform3 (not used)
22 * @return string
24 function convertPlural( $count, $forms ) {
25 if ( !count($forms) ) { return ''; }
26 $forms = $this->preConvertPlural( $forms, 2 );
28 return ( ( $count % 10 == 1 ) && ( $count % 100 != 11 ) ) ? $forms[0] : $forms[1];