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", {
69 "fullDate": "EEEE, y MMMM dd",
70 "longDate": "y MMMM d",
71 "medium": "y MMM d HH:mm:ss",
72 "mediumDate": "y MMM d",
73 "mediumTime": "HH:mm:ss",
74 "short": "yy/MM/dd HH:mm",
75 "shortDate": "yy/MM/dd",
79 "CURRENCY_SYM": "so\u02bcm",
81 "GROUP_SEP": "\u00a0",
100 "negPre": "-\u00a4\u00a0",
102 "posPre": "\u00a4\u00a0",
108 "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}