|
47
|
1 |
angular.module("ngLocale", [], ["$provide", function($provide) { |
|
|
2 |
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; |
|
|
3 |
$provide.value("$locale", { |
|
|
4 |
"DATETIME_FORMATS": { |
|
|
5 |
"AMPMS": [ |
|
|
6 |
"SA", |
|
|
7 |
"CH" |
|
|
8 |
], |
|
|
9 |
"DAY": [ |
|
|
10 |
"Ch\u1ee7 nh\u1eadt", |
|
|
11 |
"Th\u1ee9 hai", |
|
|
12 |
"Th\u1ee9 ba", |
|
|
13 |
"Th\u1ee9 t\u01b0", |
|
|
14 |
"Th\u1ee9 n\u0103m", |
|
|
15 |
"Th\u1ee9 s\u00e1u", |
|
|
16 |
"Th\u1ee9 b\u1ea3y" |
|
|
17 |
], |
|
|
18 |
"MONTH": [ |
|
|
19 |
"th\u00e1ng m\u1ed9t", |
|
|
20 |
"th\u00e1ng hai", |
|
|
21 |
"th\u00e1ng ba", |
|
|
22 |
"th\u00e1ng t\u01b0", |
|
|
23 |
"th\u00e1ng n\u0103m", |
|
|
24 |
"th\u00e1ng s\u00e1u", |
|
|
25 |
"th\u00e1ng b\u1ea3y", |
|
|
26 |
"th\u00e1ng t\u00e1m", |
|
|
27 |
"th\u00e1ng ch\u00edn", |
|
|
28 |
"th\u00e1ng m\u01b0\u1eddi", |
|
|
29 |
"th\u00e1ng m\u01b0\u1eddi m\u1ed9t", |
|
|
30 |
"th\u00e1ng m\u01b0\u1eddi hai" |
|
|
31 |
], |
|
|
32 |
"SHORTDAY": [ |
|
|
33 |
"CN", |
|
|
34 |
"Th 2", |
|
|
35 |
"Th 3", |
|
|
36 |
"Th 4", |
|
|
37 |
"Th 5", |
|
|
38 |
"Th 6", |
|
|
39 |
"Th 7" |
|
|
40 |
], |
|
|
41 |
"SHORTMONTH": [ |
|
|
42 |
"thg 1", |
|
|
43 |
"thg 2", |
|
|
44 |
"thg 3", |
|
|
45 |
"thg 4", |
|
|
46 |
"thg 5", |
|
|
47 |
"thg 6", |
|
|
48 |
"thg 7", |
|
|
49 |
"thg 8", |
|
|
50 |
"thg 9", |
|
|
51 |
"thg 10", |
|
|
52 |
"thg 11", |
|
|
53 |
"thg 12" |
|
|
54 |
], |
|
|
55 |
"fullDate": "EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y", |
|
|
56 |
"longDate": "'Ng\u00e0y' dd 'th\u00e1ng' M 'n\u0103m' y", |
|
|
57 |
"medium": "dd-MM-yyyy HH:mm:ss", |
|
|
58 |
"mediumDate": "dd-MM-yyyy", |
|
|
59 |
"mediumTime": "HH:mm:ss", |
|
|
60 |
"short": "dd/MM/yyyy HH:mm", |
|
|
61 |
"shortDate": "dd/MM/yyyy", |
|
|
62 |
"shortTime": "HH:mm" |
|
|
63 |
}, |
|
|
64 |
"NUMBER_FORMATS": { |
|
|
65 |
"CURRENCY_SYM": "\u20ab", |
|
|
66 |
"DECIMAL_SEP": ",", |
|
|
67 |
"GROUP_SEP": ".", |
|
|
68 |
"PATTERNS": [ |
|
|
69 |
{ |
|
|
70 |
"gSize": 3, |
|
|
71 |
"lgSize": 3, |
|
|
72 |
"macFrac": 0, |
|
|
73 |
"maxFrac": 3, |
|
|
74 |
"minFrac": 0, |
|
|
75 |
"minInt": 1, |
|
|
76 |
"negPre": "-", |
|
|
77 |
"negSuf": "", |
|
|
78 |
"posPre": "", |
|
|
79 |
"posSuf": "" |
|
|
80 |
}, |
|
|
81 |
{ |
|
|
82 |
"gSize": 3, |
|
|
83 |
"lgSize": 3, |
|
|
84 |
"macFrac": 0, |
|
|
85 |
"maxFrac": 2, |
|
|
86 |
"minFrac": 2, |
|
|
87 |
"minInt": 1, |
|
|
88 |
"negPre": "-", |
|
|
89 |
"negSuf": "\u00a0\u00a4", |
|
|
90 |
"posPre": "", |
|
|
91 |
"posSuf": "\u00a0\u00a4" |
|
|
92 |
} |
|
|
93 |
] |
|
|
94 |
}, |
|
|
95 |
"id": "vi", |
|
|
96 |
"pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;} |
|
|
97 |
}); |
|
|
98 |
}]); |