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_es-us.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_es-us.js')
| -rw-r--r-- | src/ngLocale/angular-locale_es-us.js | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/src/ngLocale/angular-locale_es-us.js b/src/ngLocale/angular-locale_es-us.js new file mode 100644 index 00000000..6bb08e03 --- /dev/null +++ b/src/ngLocale/angular-locale_es-us.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": "a.m.", + "1": "p.m." + }, + "DAY": { + "0": "domingo", + "1": "lunes", + "2": "martes", + "3": "miércoles", + "4": "jueves", + "5": "viernes", + "6": "sábado" + }, + "MONTH": { + "0": "enero", + "1": "febrero", + "2": "marzo", + "3": "abril", + "4": "mayo", + "5": "junio", + "6": "julio", + "7": "agosto", + "8": "septiembre", + "9": "octubre", + "10": "noviembre", + "11": "diciembre" + }, + "SHORTDAY": { + "0": "dom", + "1": "lun", + "2": "mar", + "3": "mié", + "4": "jue", + "5": "vie", + "6": "sáb" + }, + "SHORTMONTH": { + "0": "ene", + "1": "feb", + "2": "mar", + "3": "abr", + "4": "may", + "5": "jun", + "6": "jul", + "7": "ago", + "8": "sep", + "9": "oct", + "10": "nov", + "11": "dic" + }, + "fullDate": "EEEE, d 'de' MMMM 'de' y", + "longDate": "d 'de' MMMM 'de' y", + "medium": "MMM d, y h:mm:ss a", + "mediumDate": "MMM d, y", + "mediumTime": "h:mm:ss a", + "short": "M/d/yy h:mm a", + "shortDate": "M/d/yy", + "shortTime": "h:mm a" + }, + "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": "-", + "negSuf": " \u00A4", + "posPre": "", + "posSuf": " \u00A4" + } + } + }, + "id": "es-us", + "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} +}); +}]);
\ No newline at end of file |
