webogram-i2p/app/vendor/angular/i18n/angular-locale_es-mx.js

111 lines
2.1 KiB
JavaScript
Raw Normal View History

2014-01-05 16:07:11 +00:00
'use strict';
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": [
"a.m.",
"p.m."
],
"DAY": [
"domingo",
"lunes",
"martes",
"mi\u00e9rcoles",
"jueves",
"viernes",
"s\u00e1bado"
],
2015-10-01 17:06:16 +00:00
"ERANAMES": [
"antes de Cristo",
"despu\u00e9s de Cristo"
],
"ERAS": [
"a. C.",
"d. C."
],
"FIRSTDAYOFWEEK": 6,
2014-01-05 16:07:11 +00:00
"MONTH": [
"enero",
"febrero",
"marzo",
"abril",
"mayo",
"junio",
"julio",
"agosto",
"septiembre",
"octubre",
"noviembre",
"diciembre"
],
"SHORTDAY": [
"dom.",
"lun.",
"mar.",
2015-10-01 17:06:16 +00:00
"mi\u00e9.",
"jue.",
2015-10-01 17:06:16 +00:00
"vie.",
"s\u00e1b."
2014-01-05 16:07:11 +00:00
],
"SHORTMONTH": [
2015-10-01 17:06:16 +00:00
"ene",
"feb",
"mar",
"abr",
"may",
"jun",
"jul",
"ago",
"sep",
"oct",
"nov",
"dic"
],
"WEEKENDRANGE": [
5,
6
2014-01-05 16:07:11 +00:00
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
2015-10-01 17:06:16 +00:00
"medium": "dd/MM/y h:mm:ss a",
"mediumDate": "dd/MM/y",
2015-10-01 17:06:16 +00:00
"mediumTime": "h:mm:ss a",
"short": "dd/MM/yy h:mm a",
2014-01-05 16:07:11 +00:00
"shortDate": "dd/MM/yy",
2015-10-01 17:06:16 +00:00
"shortTime": "h:mm a"
2014-01-05 16:07:11 +00:00
},
"NUMBER_FORMATS": {
2014-10-02 09:11:46 +00:00
"CURRENCY_SYM": "$",
"DECIMAL_SEP": ".",
"GROUP_SEP": ",",
2014-01-05 16:07:11 +00:00
"PATTERNS": [
{
"gSize": 3,
"lgSize": 3,
"maxFrac": 3,
"minFrac": 0,
"minInt": 1,
"negPre": "-",
"negSuf": "",
"posPre": "",
"posSuf": ""
},
{
"gSize": 3,
"lgSize": 3,
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
2015-10-01 17:06:16 +00:00
"negPre": "-\u00a4",
2014-10-02 09:11:46 +00:00
"negSuf": "",
"posPre": "\u00a4",
"posSuf": ""
2014-01-05 16:07:11 +00:00
}
]
},
"id": "es-mx",
2014-11-11 10:55:03 +00:00
"pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
2014-01-05 16:07:11 +00:00
});
2014-11-11 10:55:03 +00:00
}]);