Added result properties to action=paraminfo
[lhc/web/wiklou.git] / languages / classes / LanguageKm.php
1 <?php
2 /** Khmer (ភាសាខ្មែរ)
3 *
4 * @ingroup Language
5 *
6 * @author Niklas Laxström
7 */
8 class LanguageKm extends Language {
9
10 /**
11 * @param $_ string
12 * @return string
13 */
14 function commafy( $_ ) {
15 /* NO-op for Khmer. Cannot use
16 * $separatorTransformTable = array( ',' => '' )
17 * That would break when parsing and doing strstr '' => 'foo';
18 */
19 return $_;
20 }
21
22 }