* Number format for Khmer (no thousand separator, ',' as decimal separator)
[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 function commafy($_) {
10 /* NO-op for Khmer. Cannot use
11 * $separatorTransformTable = array( ',' => '' )
12 * That would break when parsing and doing strstr '' => 'foo';
13 */
14 return $_;
15 }
16
17 }