diff options
| author | Chirayu Krishnappa | 2013-03-18 15:54:18 -0700 | 
|---|---|---|
| committer | Chirayu Krishnappa | 2013-03-20 15:50:07 -0700 | 
| commit | 0c72708a2bb123d2772f5c6b8cb6adc61f197a72 (patch) | |
| tree | c0aea4bbeeff58cf5a55226dce26c7e7e1c58635 /src/ngLocale/angular-locale_en-bz.js | |
| parent | fec2909f3a5e97bfabbb65d957e0d20d1a588e40 (diff) | |
| download | angular.js-0c72708a2bb123d2772f5c6b8cb6adc61f197a72.tar.bz2 | |
chore($ngLocale): generate ngLocale files from the Closure code (includes datetimesymbolsext.js)
Diffstat (limited to 'src/ngLocale/angular-locale_en-bz.js')
| -rw-r--r-- | src/ngLocale/angular-locale_en-bz.js | 98 | 
1 files changed, 98 insertions, 0 deletions
| diff --git a/src/ngLocale/angular-locale_en-bz.js b/src/ngLocale/angular-locale_en-bz.js new file mode 100644 index 00000000..8b17431f --- /dev/null +++ b/src/ngLocale/angular-locale_en-bz.js @@ -0,0 +1,98 @@ +angular.module("ngLocale", [], ["$provide", function($provide) { +var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; +$provide.value("$locale", { +  "DATETIME_FORMATS": { +    "AMPMS": { +      "0": "AM", +      "1": "PM" +    }, +    "DAY": { +      "0": "Sunday", +      "1": "Monday", +      "2": "Tuesday", +      "3": "Wednesday", +      "4": "Thursday", +      "5": "Friday", +      "6": "Saturday" +    }, +    "MONTH": { +      "0": "January", +      "1": "February", +      "2": "March", +      "3": "April", +      "4": "May", +      "5": "June", +      "6": "July", +      "7": "August", +      "8": "September", +      "9": "October", +      "10": "November", +      "11": "December" +    }, +    "SHORTDAY": { +      "0": "Sun", +      "1": "Mon", +      "2": "Tue", +      "3": "Wed", +      "4": "Thu", +      "5": "Fri", +      "6": "Sat" +    }, +    "SHORTMONTH": { +      "0": "Jan", +      "1": "Feb", +      "2": "Mar", +      "3": "Apr", +      "4": "May", +      "5": "Jun", +      "6": "Jul", +      "7": "Aug", +      "8": "Sep", +      "9": "Oct", +      "10": "Nov", +      "11": "Dec" +    }, +    "fullDate": "dd MMMM y", +    "longDate": "dd MMMM y", +    "medium": "dd-MMM-y HH:mm:ss", +    "mediumDate": "dd-MMM-y", +    "mediumTime": "HH:mm:ss", +    "short": "dd/MM/yy HH:mm", +    "shortDate": "dd/MM/yy", +    "shortTime": "HH:mm" +  }, +  "NUMBER_FORMATS": { +    "CURRENCY_SYM": "$", +    "DECIMAL_SEP": ".", +    "GROUP_SEP": ",", +    "PATTERNS": { +      "0": { +        "gSize": 3, +        "lgSize": 3, +        "macFrac": 0, +        "maxFrac": 3, +        "minFrac": 0, +        "minInt": 1, +        "negPre": "-", +        "negSuf": "", +        "posPre": "", +        "posSuf": "" +      }, +      "1": { +        "gSize": 3, +        "lgSize": 3, +        "macFrac": 0, +        "maxFrac": 2, +        "minFrac": 2, +        "minInt": 1, +        "negPre": "(\u00A4", +        "negSuf": ")", +        "posPre": "\u00A4", +        "posSuf": "" +      } +    } +  }, +  "id": "en-bz", +  "pluralCat": function (n) {  if (n == 1) {   return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;} +}); +}]);
\ No newline at end of file | 
