Upgrade to angularjs 1.2.0 rc1

This commit is contained in:
Colin Frei 2013-08-21 19:46:51 +02:00
parent d223dfd662
commit d6b021bfaf
674 changed files with 79667 additions and 62269 deletions

View file

@ -2,56 +2,56 @@ 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"
},
"AMPMS": [
"a.m.",
"p.m."
],
"DAY": [
"domingo",
"lunes",
"martes",
"mi\u00e9rcoles",
"jueves",
"viernes",
"s\u00e1bado"
],
"MONTH": [
"enero",
"febrero",
"marzo",
"abril",
"mayo",
"junio",
"julio",
"agosto",
"septiembre",
"octubre",
"noviembre",
"diciembre"
],
"SHORTDAY": [
"dom",
"lun",
"mar",
"mi\u00e9",
"jue",
"vie",
"s\u00e1b"
],
"SHORTMONTH": [
"ene",
"feb",
"mar",
"abr",
"may",
"jun",
"jul",
"ago",
"sep",
"oct",
"nov",
"dic"
],
"fullDate": "EEEE, d 'de' MMMM 'de' y",
"longDate": "d 'de' MMMM 'de' y",
"medium": "dd/MM/yyyy HH:mm:ss",
@ -62,11 +62,11 @@ $provide.value("$locale", {
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "",
"CURRENCY_SYM": "\u20ac",
"DECIMAL_SEP": ",",
"GROUP_SEP": ".",
"PATTERNS": {
"0": {
"PATTERNS": [
{
"gSize": 3,
"lgSize": 3,
"macFrac": 0,
@ -78,7 +78,7 @@ $provide.value("$locale", {
"posPre": "",
"posSuf": ""
},
"1": {
{
"gSize": 3,
"lgSize": 3,
"macFrac": 0,
@ -86,11 +86,11 @@ $provide.value("$locale", {
"minFrac": 2,
"minInt": 1,
"negPre": "-",
"negSuf": " \u00A4",
"negSuf": "\u00a0\u00a4",
"posPre": "",
"posSuf": " \u00A4"
"posSuf": "\u00a0\u00a4"
}
}
]
},
"id": "es-py",
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}