Stylize languages/*, languages/classes/*, but not languages/messages/*
[lhc/web/wiklou.git] / languages / classes / LanguageMy.php
1 <?php
2 /** Burmese (Myanmasa)
3 *
4 * @ingroup Language
5 * @file
6 *
7 * @author Niklas Laxström, 2008
8 */
9
10 class LanguageMy extends Language {
11 function commafy( $_ ) {
12 /* NO-op. Cannot use
13 * $separatorTransformTable = array( ',' => '' )
14 * That would break when parsing and doing strstr '' => 'foo';
15 */
16 return $_;
17 }
18 }