MessagesMy.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. /** Burmese (မြန်မာဘာသာ)
  3. *
  4. * To improve a translation please visit https://translatewiki.net
  5. *
  6. * @ingroup Language
  7. * @file
  8. *
  9. * @author Erikoo
  10. * @author Hakka
  11. * @author Hanzaw
  12. * @author Hintha
  13. * @author Lagoonaing
  14. * @author Liangent
  15. * @author Lionslayer
  16. * @author Minnyoonthit
  17. * @author Myanmars
  18. * @author Myolay
  19. * @author Parabaik
  20. * @author Purodha
  21. * @author Saiddzone
  22. * @author Thanlwin
  23. * @author Thitaung
  24. * @author Zawthet
  25. * @author ကိုရာဝီ
  26. */
  27. $digitTransformTable = [
  28. '0' => '၀',
  29. '1' => '၁',
  30. '2' => '၂',
  31. '3' => '၃',
  32. '4' => '၄',
  33. '5' => '၅',
  34. '6' => '၆',
  35. '7' => '၇',
  36. '8' => '၈',
  37. '9' => '၉',
  38. ];
  39. $datePreferences = [
  40. 'default',
  41. 'my normal',
  42. 'my long',
  43. 'ISO 8601',
  44. ];
  45. $defaultDateFormat = 'my normal';
  46. $dateFormats = [
  47. 'my normal time' => 'H:i',
  48. 'my normal date' => 'j F Y',
  49. 'my normal both' => ' H:i"၊" j F Y',
  50. 'my long time' => 'H:i',
  51. 'my long date' => 'Y "ဇန်နဝါရီ" F"လ" j "ရက်"',
  52. 'my long both' => 'H:i"၊" Y "ဇန်နဝါရီ" F"လ" j "ရက်"',
  53. ];