summaryrefslogtreecommitdiff
path: root/languages/classes/LanguageKm.php
blob: 831feb9c796c478ae0a5d6818386034020394695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
/** Khmer (ភាសាខ្មែរ)
 *
 * @ingroup Language
 *
 * @author Niklas Laxström
 */
class LanguageKm extends Language {
	function commafy($_) {
		/* NO-op for Khmer. Cannot use
		 * $separatorTransformTable = array( ',' => '' )
		 * That would break when parsing and doing strstr '' => 'foo';
		 */
		return $_;
	}

}