summaryrefslogtreecommitdiff
path: root/languages/classes/LanguageMy.php
blob: b12e458517561e429c6cdd56b72b066ee6f73e35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

/** Burmese (Myanmasa)
 *
 * @ingroup Language
 *
 * @author Niklas Laxström, 2008
 */
class LanguageMy extends Language {

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