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", {
8 "\u13d2\u13af\u13f1\u13a2\u13d7\u13e2"
11 "\u13a4\u13be\u13d9\u13d3\u13c6\u13cd\u13ac",
12 "\u13a4\u13be\u13d9\u13d3\u13c9\u13c5\u13af",
13 "\u13d4\u13b5\u13c1\u13a2\u13a6",
14 "\u13e6\u13a2\u13c1\u13a2\u13a6",
15 "\u13c5\u13a9\u13c1\u13a2\u13a6",
16 "\u13e7\u13be\u13a9\u13b6\u13cd\u13d7",
17 "\u13a4\u13be\u13d9\u13d3\u13c8\u13d5\u13be"
20 "\u13cf \u13e5\u13cc \u13be\u13d5\u13b2\u13cd\u13ac\u13be",
21 "\u13a0\u13a9\u13c3\u13ae\u13b5\u13d3\u13cd\u13d7\u13f1 \u13a0\u13d5\u13d8\u13f1\u13cd\u13ac \u13f1\u13b0\u13e9 \u13e7\u13d3\u13c2\u13b8\u13a2\u13cd\u13d7"
24 "\u13a4\u13d3\u13b7\u13b8",
25 "\u13a4\u13b6\u13d0\u13c5"
29 "\u13a4\u13c3\u13b8\u13d4\u13c5",
33 "\u13a0\u13c2\u13cd\u13ac\u13d8",
34 "\u13d5\u13ad\u13b7\u13f1",
35 "\u13ab\u13f0\u13c9\u13c2",
37 "\u13da\u13b5\u13cd\u13d7",
38 "\u13da\u13c2\u13c5\u13d7",
39 "\u13c5\u13d3\u13d5\u13c6",
40 "\u13a5\u13cd\u13a9\u13f1"
69 "fullDate": "EEEE, MMMM d, y",
70 "longDate": "MMMM d, y",
71 "medium": "MMM d, y h:mm:ss a",
72 "mediumDate": "MMM d, y",
73 "mediumTime": "h:mm:ss a",
74 "short": "M/d/yy h:mm a",
75 "shortDate": "M/d/yy",
108 "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}