wiki.techinc.nl/languages/classes/LanguageMy.php
2010-10-10 12:53:37 +00:00

17 lines
No EOL
319 B
PHP

<?php
/** Burmese (Myanmasa)
*
* @ingroup Language
*
* @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 $_;
}
}