Upgrade to angularjs 1.2.0 rc1
This commit is contained in:
parent
d223dfd662
commit
d6b021bfaf
674 changed files with 79667 additions and 62269 deletions
112
lib/angular/i18n/angular-locale_en.js
vendored
112
lib/angular/i18n/angular-locale_en.js
vendored
|
@ -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": "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"
|
||||
},
|
||||
"AMPMS": [
|
||||
"AM",
|
||||
"PM"
|
||||
],
|
||||
"DAY": [
|
||||
"Sunday",
|
||||
"Monday",
|
||||
"Tuesday",
|
||||
"Wednesday",
|
||||
"Thursday",
|
||||
"Friday",
|
||||
"Saturday"
|
||||
],
|
||||
"MONTH": [
|
||||
"January",
|
||||
"February",
|
||||
"March",
|
||||
"April",
|
||||
"May",
|
||||
"June",
|
||||
"July",
|
||||
"August",
|
||||
"September",
|
||||
"October",
|
||||
"November",
|
||||
"December"
|
||||
],
|
||||
"SHORTDAY": [
|
||||
"Sun",
|
||||
"Mon",
|
||||
"Tue",
|
||||
"Wed",
|
||||
"Thu",
|
||||
"Fri",
|
||||
"Sat"
|
||||
],
|
||||
"SHORTMONTH": [
|
||||
"Jan",
|
||||
"Feb",
|
||||
"Mar",
|
||||
"Apr",
|
||||
"May",
|
||||
"Jun",
|
||||
"Jul",
|
||||
"Aug",
|
||||
"Sep",
|
||||
"Oct",
|
||||
"Nov",
|
||||
"Dec"
|
||||
],
|
||||
"fullDate": "EEEE, MMMM d, y",
|
||||
"longDate": "MMMM d, y",
|
||||
"medium": "MMM d, y h:mm:ss a",
|
||||
|
@ -65,8 +65,8 @@ $provide.value("$locale", {
|
|||
"CURRENCY_SYM": "$",
|
||||
"DECIMAL_SEP": ".",
|
||||
"GROUP_SEP": ",",
|
||||
"PATTERNS": {
|
||||
"0": {
|
||||
"PATTERNS": [
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"macFrac": 0,
|
||||
|
@ -78,19 +78,19 @@ $provide.value("$locale", {
|
|||
"posPre": "",
|
||||
"posSuf": ""
|
||||
},
|
||||
"1": {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"macFrac": 0,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "(\u00A4",
|
||||
"negPre": "(\u00a4",
|
||||
"negSuf": ")",
|
||||
"posPre": "\u00A4",
|
||||
"posPre": "\u00a4",
|
||||
"posSuf": ""
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"id": "en",
|
||||
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue