2 angular.module("ngLocale", [], ["$provide", function($provide) {
3 var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 function getDecimals(n) {
6 var i = n.indexOf('.');
7 return (i == -1) ? 0 : n.length - i - 1;
10 function getVF(n, opt_precision) {
11 var v = opt_precision;
13 if (undefined === v) {
14 v = Math.min(getDecimals(n), 3);
17 var base = Math.pow(10, v);
18 var f = ((n * base) | 0) % base;
22 $provide.value("$locale", {
25 "\u00c0\u00e1r\u1ecd\u0300",
26 "\u1ecc\u0300s\u00e1n"
29 "\u1eccj\u1ecd\u0301 \u00c0\u00eck\u00fa",
30 "\u1eccj\u1ecd\u0301 Aj\u00e9",
31 "\u1eccj\u1ecd\u0301 \u00ccs\u1eb9\u0301gun",
32 "\u1eccj\u1ecd\u0301r\u00fa",
33 "\u1eccj\u1ecd\u0301b\u1ecd",
34 "\u1eccj\u1ecd\u0301 \u1eb8t\u00ec",
35 "\u1eccj\u1ecd\u0301 \u00c0b\u00e1m\u1eb9\u0301ta"
47 "O\u1e63\u00f9 \u1e62\u1eb9\u0301r\u1eb9\u0301",
48 "O\u1e63\u00f9 \u00c8r\u00e8l\u00e8",
49 "O\u1e63\u00f9 \u1eb8r\u1eb9\u0300n\u00e0",
50 "O\u1e63\u00f9 \u00ccgb\u00e9",
51 "O\u1e63\u00f9 \u1eb8\u0300bibi",
52 "O\u1e63\u00f9 \u00d2k\u00fadu",
53 "O\u1e63\u00f9 Ag\u1eb9m\u1ecd",
54 "O\u1e63\u00f9 \u00d2g\u00fan",
55 "O\u1e63\u00f9 Owewe",
56 "O\u1e63\u00f9 \u1ecc\u0300w\u00e0r\u00e0",
57 "O\u1e63\u00f9 B\u00e9l\u00fa",
58 "O\u1e63\u00f9 \u1ecc\u0300p\u1eb9\u0300"
61 "\u00c0\u00eck\u00fa",
63 "\u00ccs\u1eb9\u0301gun",
64 "\u1eccj\u1ecd\u0301r\u00fa",
65 "\u1eccj\u1ecd\u0301b\u1ecd",
67 "\u00c0b\u00e1m\u1eb9\u0301ta"
70 "\u1e62\u1eb9\u0301r\u1eb9\u0301",
71 "\u00c8r\u00e8l\u00e8",
72 "\u1eb8r\u1eb9\u0300n\u00e0",
79 "\u1ecc\u0300w\u00e0r\u00e0",
81 "\u1ecc\u0300p\u1eb9\u0300"
87 "fullDate": "EEEE, d MMMM y",
88 "longDate": "d MMMM y",
89 "medium": "d MMM y h:mm:ss a",
90 "mediumDate": "d MMM y",
91 "mediumTime": "h:mm:ss a",
92 "short": "dd/MM/y h:mm a",
93 "shortDate": "dd/MM/y",
97 "CURRENCY_SYM": "\u20a6",
126 "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}