Also remove my name from i18n files I am not translate Bug: T139301 Change-Id: If806324cd07e662f5e995e11cf899b5b934cd79b
58 lines
1.1 KiB
PHP
58 lines
1.1 KiB
PHP
<?php
|
||
/** Burmese (မြန်မာဘာသာ)
|
||
*
|
||
* To improve a translation please visit https://translatewiki.net
|
||
*
|
||
* @ingroup Language
|
||
* @file
|
||
*
|
||
* @author Erikoo
|
||
* @author Hakka
|
||
* @author Hanzaw
|
||
* @author Hintha
|
||
* @author Lagoonaing
|
||
* @author Liangent
|
||
* @author Lionslayer
|
||
* @author Minnyoonthit
|
||
* @author Myanmars
|
||
* @author Myolay
|
||
* @author Parabaik
|
||
* @author Purodha
|
||
* @author Saiddzone
|
||
* @author Thanlwin
|
||
* @author Thitaung
|
||
* @author Zawthet
|
||
* @author ကိုရာဝီ
|
||
*/
|
||
|
||
$digitTransformTable = [
|
||
'0' => '၀',
|
||
'1' => '၁',
|
||
'2' => '၂',
|
||
'3' => '၃',
|
||
'4' => '၄',
|
||
'5' => '၅',
|
||
'6' => '၆',
|
||
'7' => '၇',
|
||
'8' => '၈',
|
||
'9' => '၉',
|
||
];
|
||
|
||
$datePreferences = [
|
||
'default',
|
||
'my normal',
|
||
'my long',
|
||
'ISO 8601',
|
||
];
|
||
|
||
$defaultDateFormat = 'my normal';
|
||
|
||
$dateFormats = [
|
||
'my normal time' => 'H:i',
|
||
'my normal date' => 'j F Y',
|
||
'my normal both' => ' H:i"၊" j F Y',
|
||
|
||
'my long time' => 'H:i',
|
||
'my long date' => 'Y "ဇန်နဝါရီ" F"လ" j "ရက်"',
|
||
'my long both' => 'H:i"၊" Y "ဇန်နဝါရီ" F"လ" j "ရက်"',
|
||
];
|