1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<?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 Umherirrender
* @author Zawthet
* @author ကိုရာဝီ
*/
$digitTransformTable = array(
'0' => '၀',
'1' => '၁',
'2' => '၂',
'3' => '၃',
'4' => '၄',
'5' => '၅',
'6' => '၆',
'7' => '၇',
'8' => '၈',
'9' => '၉',
);
$datePreferences = array(
'default',
'my normal',
'my long',
'ISO 8601',
);
$defaultDateFormat = 'my normal';
$dateFormats = array(
'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 "ရက်"',
);
|