summaryrefslogtreecommitdiff
path: root/languages/classes/LanguageMy.php
blob: d76b99e77a6ef4f83ed4fa53e559cb6b632e5464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/** Burmese (Myanmasa)
 *
 * @ingroup Language
 * @file
 *
 * @author Niklas Laxström, 2008
 */

class LanguageMy extends Language {
	function commafy($_) {
		/* NO-op. Cannot use
		 * $separatorTransformTable = array( ',' => '' )
		 * That would break when parsing and doing strstr '' => 'foo';
		 */
		return $_;
	}
}