112e96ae9818c0c0111ba5d130615b6337756238
[portal/sdk.git] /
1 'use strict';
2 angular.module("ngLocale", [], ["$provide", function($provide) {
3 var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 $provide.value("$locale", {
5   "DATETIME_FORMATS": {
6     "AMPMS": [
7       "SA",
8       "CH"
9     ],
10     "DAY": [
11       "Ch\u1ee7 Nh\u1eadt",
12       "Th\u1ee9 Hai",
13       "Th\u1ee9 Ba",
14       "Th\u1ee9 T\u01b0",
15       "Th\u1ee9 N\u0103m",
16       "Th\u1ee9 S\u00e1u",
17       "Th\u1ee9 B\u1ea3y"
18     ],
19     "ERANAMES": [
20       "tr. CN",
21       "sau CN"
22     ],
23     "ERAS": [
24       "tr. CN",
25       "sau CN"
26     ],
27     "FIRSTDAYOFWEEK": 0,
28     "MONTH": [
29       "th\u00e1ng 1",
30       "th\u00e1ng 2",
31       "th\u00e1ng 3",
32       "th\u00e1ng 4",
33       "th\u00e1ng 5",
34       "th\u00e1ng 6",
35       "th\u00e1ng 7",
36       "th\u00e1ng 8",
37       "th\u00e1ng 9",
38       "th\u00e1ng 10",
39       "th\u00e1ng 11",
40       "th\u00e1ng 12"
41     ],
42     "SHORTDAY": [
43       "CN",
44       "Th 2",
45       "Th 3",
46       "Th 4",
47       "Th 5",
48       "Th 6",
49       "Th 7"
50     ],
51     "SHORTMONTH": [
52       "thg 1",
53       "thg 2",
54       "thg 3",
55       "thg 4",
56       "thg 5",
57       "thg 6",
58       "thg 7",
59       "thg 8",
60       "thg 9",
61       "thg 10",
62       "thg 11",
63       "thg 12"
64     ],
65     "WEEKENDRANGE": [
66       5,
67       6
68     ],
69     "fullDate": "EEEE, 'ng\u00e0y' dd MMMM 'n\u0103m' y",
70     "longDate": "'Ng\u00e0y' dd 'th\u00e1ng' MM 'n\u0103m' y",
71     "medium": "dd-MM-y HH:mm:ss",
72     "mediumDate": "dd-MM-y",
73     "mediumTime": "HH:mm:ss",
74     "short": "dd/MM/y HH:mm",
75     "shortDate": "dd/MM/y",
76     "shortTime": "HH:mm"
77   },
78   "NUMBER_FORMATS": {
79     "CURRENCY_SYM": "\u20ab",
80     "DECIMAL_SEP": ",",
81     "GROUP_SEP": ".",
82     "PATTERNS": [
83       {
84         "gSize": 3,
85         "lgSize": 3,
86         "maxFrac": 3,
87         "minFrac": 0,
88         "minInt": 1,
89         "negPre": "-",
90         "negSuf": "",
91         "posPre": "",
92         "posSuf": ""
93       },
94       {
95         "gSize": 3,
96         "lgSize": 3,
97         "maxFrac": 2,
98         "minFrac": 2,
99         "minInt": 1,
100         "negPre": "-",
101         "negSuf": "\u00a0\u00a4",
102         "posPre": "",
103         "posSuf": "\u00a0\u00a4"
104       }
105     ]
106   },
107   "id": "vi-vn",
108   "pluralCat": function(n, opt_precision) {  return PLURAL_CATEGORY.OTHER;}
109 });
110 }]);