LanguageMy.php 326 B

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