@@ -65,6 +65,21 @@ goog.i18n.currency.SPACE_FLAG_ = 0x20;
|
||||
goog.i18n.currency.tier2Enabled_ = false;
|
||||
|
||||
|
||||
/**
|
||||
* Tests if currency is available.
|
||||
*
|
||||
* Note: If the currency is not available it might be in the tier2 currency set:
|
||||
* {@link goog.i18n.currency.CurrencyInfoTier2}. If that is the case call
|
||||
* {@link goog.i18n.currency.addTier2Support} before calling any other function
|
||||
* in this namespace.
|
||||
*
|
||||
* @param {string} currencyCode Currency code to tested.
|
||||
* @return {boolean} If the currency is available.
|
||||
*/
|
||||
goog.i18n.currency.isAvailable = function(currencyCode) {
|
||||
return currencyCode in goog.i18n.currency.CurrencyInfo;
|
||||
};
|
||||
|
||||
/**
|
||||
* This function will add tier2 currency support. Be default, only tier1
|
||||
* (most popular currencies) are supported. If an application really needs
|
||||
@@ -84,6 +99,7 @@ goog.i18n.currency.addTier2Support = function() {
|
||||
|
||||
|
||||
/**
|
||||
* Deprecated.
|
||||
* Global currency pattern always uses ISO-4217 currency code as prefix. Local
|
||||
* currency sign is added if it is different from currency code. Each currency
|
||||
* is unique in this form. The negative side is that ISO code looks weird in
|
||||
@@ -92,6 +108,9 @@ goog.i18n.currency.addTier2Support = function() {
|
||||
*
|
||||
* @param {string} currencyCode ISO-4217 3-letter currency code.
|
||||
* @return {string} Global currency pattern string for given currency.
|
||||
* @deprecated Format numbers using {@link goog.i18n.NumberFormat} with
|
||||
* {@link goog.i18n.NumberFormat.Format.CURRENCY} and
|
||||
* {@link goog.i18n.NumberFormat.CurrencyStyle.GLOBAL}
|
||||
*/
|
||||
goog.i18n.currency.getGlobalCurrencyPattern = function(currencyCode) {
|
||||
var info = goog.i18n.currency.CurrencyInfo[currencyCode];
|
||||
@@ -119,12 +138,16 @@ goog.i18n.currency.getGlobalCurrencySign = function(currencyCode) {
|
||||
|
||||
|
||||
/**
|
||||
* Deprecated.
|
||||
* Local currency pattern is the most frequently used pattern in currency's
|
||||
* native region. It does not care about how it is distinguished from other
|
||||
* currencies.
|
||||
*
|
||||
* @param {string} currencyCode ISO-4217 3-letter currency code.
|
||||
* @return {string} Local currency pattern string for given currency.
|
||||
* @deprecated Format numbers using {@link goog.i18n.NumberFormat} with
|
||||
* {@link goog.i18n.NumberFormat.Format.CURRENCY} and
|
||||
* {@link goog.i18n.NumberFormat.CurrencyStyle.LOCAL}
|
||||
*/
|
||||
goog.i18n.currency.getLocalCurrencyPattern = function(currencyCode) {
|
||||
var info = goog.i18n.currency.CurrencyInfo[currencyCode];
|
||||
@@ -145,6 +168,7 @@ goog.i18n.currency.getLocalCurrencySign = function(currencyCode) {
|
||||
|
||||
|
||||
/**
|
||||
* Deprecated.
|
||||
* Portable currency pattern is a compromise between local and global. It is
|
||||
* not a mere blend or mid-way between the two. Currency sign is chosen so that
|
||||
* it looks familiar to native users. It also has enough information to
|
||||
@@ -154,6 +178,9 @@ goog.i18n.currency.getLocalCurrencySign = function(currencyCode) {
|
||||
*
|
||||
* @param {string} currencyCode ISO-4217 3-letter currency code.
|
||||
* @return {string} Portable currency pattern string for given currency.
|
||||
* @deprecated Format numbers using {@link goog.i18n.NumberFormat} with
|
||||
* {@link goog.i18n.NumberFormat.Format.CURRENCY} and
|
||||
* {@link goog.i18n.NumberFormat.CurrencyStyle.PORTABLE}
|
||||
*/
|
||||
goog.i18n.currency.getPortableCurrencyPattern = function(currencyCode) {
|
||||
var info = goog.i18n.currency.CurrencyInfo[currencyCode];
|
||||
@@ -174,12 +201,17 @@ goog.i18n.currency.getPortableCurrencySign = function(currencyCode) {
|
||||
|
||||
|
||||
/**
|
||||
* This function returns the default currency sign position. Some applications
|
||||
* This function returns the default currency sign's position. Some applications
|
||||
* may want to handle currency sign and currency amount separately. This
|
||||
* function can be used in such situations to correctly position the currency
|
||||
* sign relative to the amount.
|
||||
*
|
||||
* To match the behavior of ICU, position is not determined by display locale.
|
||||
* Use {@link goog.i18n.NumberFormat#isCurrencyCodeBeforeValue} for a locale
|
||||
* aware version of this API (recommended). isPrefixSignPosition() returns the
|
||||
* default currency sign's position in the currency's default locale (e.g. 'en'
|
||||
* for 'USD'), but most commonly the position is needed for the locale in which
|
||||
* the number is going to be displayed. For example, in 'fr' 10.10 USD would be
|
||||
* displayed as '10,10 $'.
|
||||
*
|
||||
* @param {string} currencyCode ISO-4217 3-letter currency code.
|
||||
* @return {boolean} true if currency should be positioned before amount field.
|
||||
@@ -267,6 +299,10 @@ goog.i18n.currency.adjustPrecision = function(pattern, currencyCode) {
|
||||
* 18: two decimals precision (2), currency sign last (16), no space (0)
|
||||
* 50: two decimals precision (2), currency sign last (16), space (32)
|
||||
*
|
||||
* It's not recommended to read this data directly. Format numbers using
|
||||
* {@link goog.i18n.NumberFormat} with
|
||||
* {@link goog.i18n.NumberFormat.Format.CURRENCY} instead.
|
||||
*
|
||||
* @const {!Object<!Array<?>>}
|
||||
*/
|
||||
goog.i18n.currency.CurrencyInfo = {
|
||||
@@ -310,7 +346,7 @@ goog.i18n.currency.CurrencyInfo = {
|
||||
'NOK': [50, 'kr', 'NOkr'],
|
||||
'PAB': [2, 'B/.', 'B/.'],
|
||||
'PEN': [2, 'S/.', 'S/.'],
|
||||
'PHP': [2, '\u20B1', 'Php'],
|
||||
'PHP': [2, '\u20B1', 'PHP'],
|
||||
'PKR': [0, 'Rs', 'PKRs.'],
|
||||
'PLN': [50, 'z\u0142', 'z\u0142'],
|
||||
'RON': [2, 'RON', 'RON'],
|
||||
@@ -334,6 +370,11 @@ goog.i18n.currency.CurrencyInfo = {
|
||||
|
||||
/**
|
||||
* Tier 2 currency information.
|
||||
*
|
||||
* It's not recommended to read this data directly. Format numbers using
|
||||
* {@link goog.i18n.NumberFormat} with
|
||||
* {@link goog.i18n.NumberFormat.Format.CURRENCY} instead.
|
||||
*
|
||||
* @const {!Object<!Array<?>>}
|
||||
*/
|
||||
goog.i18n.currency.CurrencyInfoTier2 = {
|
||||
@@ -431,7 +472,7 @@ goog.i18n.currency.CurrencyInfoTier2 = {
|
||||
'XAF': [0, 'FCFA', 'FCFA'],
|
||||
'XCD': [2, '$', 'EC$'],
|
||||
'XOF': [0, 'CFA', 'CFA'],
|
||||
'XPF': [0, 'FCFP', 'FCFP'],
|
||||
'XPF': [48, 'FCFP', 'FCFP'],
|
||||
'ZMW': [0, 'ZMW', 'ZMW'],
|
||||
'ZWD': [0, '$', 'Z$']
|
||||
};
|
||||
|
||||
+1609
-2622
File diff suppressed because it is too large
Load Diff
+4146
-12018
File diff suppressed because it is too large
Load Diff
+494
-1936
File diff suppressed because it is too large
Load Diff
+4384
-2027
File diff suppressed because it is too large
Load Diff
+21
-33
@@ -17,7 +17,7 @@
|
||||
*
|
||||
* This file is autogenerated by script:
|
||||
* http://go/generate_pluralrules.py
|
||||
* File generated from CLDR ver. 29
|
||||
* File generated from CLDR ver. 31.0.1
|
||||
*
|
||||
* Before check in, this file could have been manually edited. This is to
|
||||
* incorporate changes before we could fix CLDR. All manual modification must be
|
||||
@@ -128,22 +128,6 @@ goog.i18n.pluralRules.filSelect_ = function(n, opt_precision) {
|
||||
return goog.i18n.pluralRules.Keyword.OTHER;
|
||||
};
|
||||
|
||||
/**
|
||||
* Plural select rules for pt_PT locale
|
||||
*
|
||||
* @param {number} n The count of items.
|
||||
* @param {number=} opt_precision Precision for number formatting, if not default.
|
||||
* @return {goog.i18n.pluralRules.Keyword} Locale-specific plural value.
|
||||
* @private
|
||||
*/
|
||||
goog.i18n.pluralRules.pt_PTSelect_ = function(n, opt_precision) {
|
||||
var vf = goog.i18n.pluralRules.get_vf_(n, opt_precision);
|
||||
if (n == 1 && vf.v == 0) {
|
||||
return goog.i18n.pluralRules.Keyword.ONE;
|
||||
}
|
||||
return goog.i18n.pluralRules.Keyword.OTHER;
|
||||
};
|
||||
|
||||
/**
|
||||
* Plural select rules for br locale
|
||||
*
|
||||
@@ -240,6 +224,22 @@ goog.i18n.pluralRules.frSelect_ = function(n, opt_precision) {
|
||||
return goog.i18n.pluralRules.Keyword.OTHER;
|
||||
};
|
||||
|
||||
/**
|
||||
* Plural select rules for pt locale
|
||||
*
|
||||
* @param {number} n The count of items.
|
||||
* @param {number=} opt_precision Precision for number formatting, if not default.
|
||||
* @return {goog.i18n.pluralRules.Keyword} Locale-specific plural value.
|
||||
* @private
|
||||
*/
|
||||
goog.i18n.pluralRules.ptSelect_ = function(n, opt_precision) {
|
||||
var i = n | 0;
|
||||
if (i >= 0 && i <= 1) {
|
||||
return goog.i18n.pluralRules.Keyword.ONE;
|
||||
}
|
||||
return goog.i18n.pluralRules.Keyword.OTHER;
|
||||
};
|
||||
|
||||
/**
|
||||
* Plural select rules for cs locale
|
||||
*
|
||||
@@ -559,21 +559,6 @@ goog.i18n.pluralRules.gaSelect_ = function(n, opt_precision) {
|
||||
return goog.i18n.pluralRules.Keyword.OTHER;
|
||||
};
|
||||
|
||||
/**
|
||||
* Plural select rules for pt locale
|
||||
*
|
||||
* @param {number} n The count of items.
|
||||
* @param {number=} opt_precision Precision for number formatting, if not default.
|
||||
* @return {goog.i18n.pluralRules.Keyword} Locale-specific plural value.
|
||||
* @private
|
||||
*/
|
||||
goog.i18n.pluralRules.ptSelect_ = function(n, opt_precision) {
|
||||
if (n >= 0 && n <= 2 && n != 2) {
|
||||
return goog.i18n.pluralRules.Keyword.ONE;
|
||||
}
|
||||
return goog.i18n.pluralRules.Keyword.OTHER;
|
||||
};
|
||||
|
||||
/**
|
||||
* Plural select rules for es locale
|
||||
*
|
||||
@@ -820,6 +805,9 @@ if (goog.LOCALE == 'am') {
|
||||
if (goog.LOCALE == 'ar') {
|
||||
goog.i18n.pluralRules.select = goog.i18n.pluralRules.arSelect_;
|
||||
}
|
||||
if (goog.LOCALE == 'ar_DZ' || goog.LOCALE == 'ar-DZ') {
|
||||
goog.i18n.pluralRules.select = goog.i18n.pluralRules.arSelect_;
|
||||
}
|
||||
if (goog.LOCALE == 'az') {
|
||||
goog.i18n.pluralRules.select = goog.i18n.pluralRules.esSelect_;
|
||||
}
|
||||
@@ -1061,7 +1049,7 @@ if (goog.LOCALE == 'pt_BR' || goog.LOCALE == 'pt-BR') {
|
||||
goog.i18n.pluralRules.select = goog.i18n.pluralRules.ptSelect_;
|
||||
}
|
||||
if (goog.LOCALE == 'pt_PT' || goog.LOCALE == 'pt-PT') {
|
||||
goog.i18n.pluralRules.select = goog.i18n.pluralRules.pt_PTSelect_;
|
||||
goog.i18n.pluralRules.select = goog.i18n.pluralRules.ptSelect_;
|
||||
}
|
||||
if (goog.LOCALE == 'ro') {
|
||||
goog.i18n.pluralRules.select = goog.i18n.pluralRules.roSelect_;
|
||||
|
||||
Vendored
+7
-7
@@ -80,14 +80,14 @@ $provide.value("$locale", {
|
||||
5,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE d MMMM y",
|
||||
"longDate": "d MMMM y",
|
||||
"medium": "d MMM y h:mm:ss a",
|
||||
"mediumDate": "d MMM y",
|
||||
"mediumTime": "h:mm:ss a",
|
||||
"short": "y-MM-dd h:mm a",
|
||||
"fullDate": "EEEE, dd MMMM y",
|
||||
"longDate": "dd MMMM y",
|
||||
"medium": "dd MMM y HH:mm:ss",
|
||||
"mediumDate": "dd MMM y",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "y-MM-dd HH:mm",
|
||||
"shortDate": "y-MM-dd",
|
||||
"shortTime": "h:mm a"
|
||||
"shortTime": "HH:mm"
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
"CURRENCY_SYM": "$",
|
||||
|
||||
Vendored
+4
-4
@@ -82,12 +82,12 @@ $provide.value("$locale", {
|
||||
],
|
||||
"fullDate": "EEEE, dd MMMM y",
|
||||
"longDate": "dd MMMM y",
|
||||
"medium": "dd MMM y h:mm:ss a",
|
||||
"medium": "dd MMM y HH:mm:ss",
|
||||
"mediumDate": "dd MMM y",
|
||||
"mediumTime": "h:mm:ss a",
|
||||
"short": "y-MM-dd h:mm a",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "y-MM-dd HH:mm",
|
||||
"shortDate": "y-MM-dd",
|
||||
"shortTime": "h:mm a"
|
||||
"shortTime": "HH:mm"
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
"CURRENCY_SYM": "R",
|
||||
|
||||
Vendored
+4
-4
@@ -82,12 +82,12 @@ $provide.value("$locale", {
|
||||
],
|
||||
"fullDate": "EEEE, dd MMMM y",
|
||||
"longDate": "dd MMMM y",
|
||||
"medium": "dd MMM y h:mm:ss a",
|
||||
"medium": "dd MMM y HH:mm:ss",
|
||||
"mediumDate": "dd MMM y",
|
||||
"mediumTime": "h:mm:ss a",
|
||||
"short": "y-MM-dd h:mm a",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "y-MM-dd HH:mm",
|
||||
"shortDate": "y-MM-dd",
|
||||
"shortTime": "h:mm a"
|
||||
"shortTime": "HH:mm"
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
"CURRENCY_SYM": "R",
|
||||
|
||||
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a4",
|
||||
|
||||
+7
-7
@@ -24,7 +24,7 @@ $provide.value("$locale", {
|
||||
"\u0642.\u0645",
|
||||
"\u0645"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 5,
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"MONTH": [
|
||||
"\u064a\u0646\u0627\u064a\u0631",
|
||||
"\u0641\u0628\u0631\u0627\u064a\u0631",
|
||||
@@ -77,8 +77,8 @@ $provide.value("$locale", {
|
||||
"\u062f\u064a\u0633\u0645\u0628\u0631"
|
||||
],
|
||||
"WEEKENDRANGE": [
|
||||
4,
|
||||
5
|
||||
5,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE\u060c d MMMM\u060c y",
|
||||
"longDate": "d MMMM\u060c y",
|
||||
@@ -111,10 +111,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+4
-4
@@ -111,10 +111,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+6
-6
@@ -108,13 +108,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 3,
|
||||
"minFrac": 3,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+6
-6
@@ -108,13 +108,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+4
-4
@@ -111,10 +111,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+4
-4
@@ -111,10 +111,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+4
-4
@@ -111,10 +111,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+6
-6
@@ -108,13 +108,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+6
-6
@@ -108,13 +108,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 3,
|
||||
"minFrac": 3,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+6
-6
@@ -108,13 +108,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+6
-6
@@ -108,13 +108,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 3,
|
||||
"minFrac": 3,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+6
-6
@@ -108,13 +108,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+2
-2
@@ -108,8 +108,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 3,
|
||||
"minFrac": 3,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
|
||||
Vendored
+6
-6
@@ -108,13 +108,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+6
-6
@@ -108,13 +108,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 3,
|
||||
"minFrac": 3,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+4
-4
@@ -111,10 +111,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+4
-4
@@ -111,10 +111,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+4
-4
@@ -111,10 +111,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+4
-4
@@ -111,10 +111,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+6
-6
@@ -108,13 +108,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+4
-4
@@ -111,10 +111,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+6
-6
@@ -108,13 +108,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+6
-6
@@ -108,13 +108,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+2
-2
@@ -108,8 +108,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 3,
|
||||
"minFrac": 3,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
|
||||
Vendored
+46
-46
@@ -4,63 +4,63 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"\u202eAM\u202c",
|
||||
"\u202ePM\u202c"
|
||||
"\u061c\u202eAM\u202c\u061c",
|
||||
"\u061c\u202ePM\u202c\u061c"
|
||||
],
|
||||
"DAY": [
|
||||
"\u202eSunday\u202c",
|
||||
"\u202eMonday\u202c",
|
||||
"\u202eTuesday\u202c",
|
||||
"\u202eWednesday\u202c",
|
||||
"\u202eThursday\u202c",
|
||||
"\u202eFriday\u202c",
|
||||
"\u202eSaturday\u202c"
|
||||
"\u061c\u202eSunday\u202c\u061c",
|
||||
"\u061c\u202eMonday\u202c\u061c",
|
||||
"\u061c\u202eTuesday\u202c\u061c",
|
||||
"\u061c\u202eWednesday\u202c\u061c",
|
||||
"\u061c\u202eThursday\u202c\u061c",
|
||||
"\u061c\u202eFriday\u202c\u061c",
|
||||
"\u061c\u202eSaturday\u202c\u061c"
|
||||
],
|
||||
"ERANAMES": [
|
||||
"\u202eBefore\u202c \u202eChrist\u202c",
|
||||
"\u202eAnno\u202c \u202eDomini\u202c"
|
||||
"\u061c\u202eBefore\u202c\u061c \u061c\u202eChrist\u202c\u061c",
|
||||
"\u061c\u202eAnno\u202c\u061c \u061c\u202eDomini\u202c\u061c"
|
||||
],
|
||||
"ERAS": [
|
||||
"\u202eBC\u202c",
|
||||
"\u202eAD\u202c"
|
||||
"\u061c\u202eBC\u202c\u061c",
|
||||
"\u061c\u202eAD\u202c\u061c"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"MONTH": [
|
||||
"\u202eJanuary\u202c",
|
||||
"\u202eFebruary\u202c",
|
||||
"\u202eMarch\u202c",
|
||||
"\u202eApril\u202c",
|
||||
"\u202eMay\u202c",
|
||||
"\u202eJune\u202c",
|
||||
"\u202eJuly\u202c",
|
||||
"\u202eAugust\u202c",
|
||||
"\u202eSeptember\u202c",
|
||||
"\u202eOctober\u202c",
|
||||
"\u202eNovember\u202c",
|
||||
"\u202eDecember\u202c"
|
||||
"\u061c\u202eJanuary\u202c\u061c",
|
||||
"\u061c\u202eFebruary\u202c\u061c",
|
||||
"\u061c\u202eMarch\u202c\u061c",
|
||||
"\u061c\u202eApril\u202c\u061c",
|
||||
"\u061c\u202eMay\u202c\u061c",
|
||||
"\u061c\u202eJune\u202c\u061c",
|
||||
"\u061c\u202eJuly\u202c\u061c",
|
||||
"\u061c\u202eAugust\u202c\u061c",
|
||||
"\u061c\u202eSeptember\u202c\u061c",
|
||||
"\u061c\u202eOctober\u202c\u061c",
|
||||
"\u061c\u202eNovember\u202c\u061c",
|
||||
"\u061c\u202eDecember\u202c\u061c"
|
||||
],
|
||||
"SHORTDAY": [
|
||||
"\u202eSun\u202c",
|
||||
"\u202eMon\u202c",
|
||||
"\u202eTue\u202c",
|
||||
"\u202eWed\u202c",
|
||||
"\u202eThu\u202c",
|
||||
"\u202eFri\u202c",
|
||||
"\u202eSat\u202c"
|
||||
"\u061c\u202eSun\u202c\u061c",
|
||||
"\u061c\u202eMon\u202c\u061c",
|
||||
"\u061c\u202eTue\u202c\u061c",
|
||||
"\u061c\u202eWed\u202c\u061c",
|
||||
"\u061c\u202eThu\u202c\u061c",
|
||||
"\u061c\u202eFri\u202c\u061c",
|
||||
"\u061c\u202eSat\u202c\u061c"
|
||||
],
|
||||
"SHORTMONTH": [
|
||||
"\u202eJan\u202c",
|
||||
"\u202eFeb\u202c",
|
||||
"\u202eMar\u202c",
|
||||
"\u202eApr\u202c",
|
||||
"\u202eMay\u202c",
|
||||
"\u202eJun\u202c",
|
||||
"\u202eJul\u202c",
|
||||
"\u202eAug\u202c",
|
||||
"\u202eSep\u202c",
|
||||
"\u202eOct\u202c",
|
||||
"\u202eNov\u202c",
|
||||
"\u202eDec\u202c"
|
||||
"\u061c\u202eJan\u202c\u061c",
|
||||
"\u061c\u202eFeb\u202c\u061c",
|
||||
"\u061c\u202eMar\u202c\u061c",
|
||||
"\u061c\u202eApr\u202c\u061c",
|
||||
"\u061c\u202eMay\u202c\u061c",
|
||||
"\u061c\u202eJun\u202c\u061c",
|
||||
"\u061c\u202eJul\u202c\u061c",
|
||||
"\u061c\u202eAug\u202c\u061c",
|
||||
"\u061c\u202eSep\u202c\u061c",
|
||||
"\u061c\u202eOct\u202c\u061c",
|
||||
"\u061c\u202eNov\u202c\u061c",
|
||||
"\u061c\u202eDec\u202c\u061c"
|
||||
],
|
||||
"STANDALONEMONTH": [
|
||||
"\u064a\u0646\u0627\u064a\u0631",
|
||||
@@ -91,8 +91,8 @@ $provide.value("$locale", {
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
"CURRENCY_SYM": "\u00a3",
|
||||
"DECIMAL_SEP": "\u066b",
|
||||
"GROUP_SEP": "\u066c",
|
||||
"DECIMAL_SEP": ".",
|
||||
"GROUP_SEP": ",",
|
||||
"PATTERNS": [
|
||||
{
|
||||
"gSize": 3,
|
||||
|
||||
Vendored
+6
-6
@@ -108,13 +108,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+4
-4
@@ -111,10 +111,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+8
-8
@@ -98,14 +98,14 @@ $provide.value("$locale", {
|
||||
6,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE, d MMMM, y",
|
||||
"longDate": "d MMMM, y",
|
||||
"medium": "dd-MM-y h.mm.ss a",
|
||||
"mediumDate": "dd-MM-y",
|
||||
"mediumTime": "h.mm.ss a",
|
||||
"short": "d-M-y h.mm. a",
|
||||
"shortDate": "d-M-y",
|
||||
"shortTime": "h.mm. a"
|
||||
"fullDate": "y MMMM d, EEEE",
|
||||
"longDate": "y MMMM d",
|
||||
"medium": "y MMM d HH:mm:ss",
|
||||
"mediumDate": "y MMM d",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "y-MM-dd HH:mm",
|
||||
"shortDate": "y-MM-dd",
|
||||
"shortTime": "HH:mm"
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
"CURRENCY_SYM": "\u20b9",
|
||||
|
||||
Vendored
+8
-8
@@ -98,14 +98,14 @@ $provide.value("$locale", {
|
||||
6,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE, d MMMM, y",
|
||||
"longDate": "d MMMM, y",
|
||||
"medium": "dd-MM-y h.mm.ss a",
|
||||
"mediumDate": "dd-MM-y",
|
||||
"mediumTime": "h.mm.ss a",
|
||||
"short": "d-M-y h.mm. a",
|
||||
"shortDate": "d-M-y",
|
||||
"shortTime": "h.mm. a"
|
||||
"fullDate": "y MMMM d, EEEE",
|
||||
"longDate": "y MMMM d",
|
||||
"medium": "y MMM d HH:mm:ss",
|
||||
"mediumDate": "y MMM d",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "y-MM-dd HH:mm",
|
||||
"shortDate": "y-MM-dd",
|
||||
"shortTime": "HH:mm"
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
"CURRENCY_SYM": "\u20b9",
|
||||
|
||||
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
|
||||
+3
-3
@@ -23,7 +23,7 @@ $provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"de la ma\u00f1ana",
|
||||
"de la tardi"
|
||||
"de la tarde"
|
||||
],
|
||||
"DAY": [
|
||||
"domingu",
|
||||
@@ -35,11 +35,11 @@ $provide.value("$locale", {
|
||||
"s\u00e1badu"
|
||||
],
|
||||
"ERANAMES": [
|
||||
"a.C.",
|
||||
"enantes de Cristu",
|
||||
"despu\u00e9s de Cristu"
|
||||
],
|
||||
"ERAS": [
|
||||
"a.C.",
|
||||
"e.C.",
|
||||
"d.C."
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
|
||||
Vendored
+3
-3
@@ -23,7 +23,7 @@ $provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"de la ma\u00f1ana",
|
||||
"de la tardi"
|
||||
"de la tarde"
|
||||
],
|
||||
"DAY": [
|
||||
"domingu",
|
||||
@@ -35,11 +35,11 @@ $provide.value("$locale", {
|
||||
"s\u00e1badu"
|
||||
],
|
||||
"ERANAMES": [
|
||||
"a.C.",
|
||||
"enantes de Cristu",
|
||||
"despu\u00e9s de Cristu"
|
||||
],
|
||||
"ERAS": [
|
||||
"a.C.",
|
||||
"e.C.",
|
||||
"d.C."
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
|
||||
+40
-40
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"AM",
|
||||
"PM"
|
||||
"\u0410\u041c",
|
||||
"\u041f\u041c"
|
||||
],
|
||||
"DAY": [
|
||||
"\u0431\u0430\u0437\u0430\u0440",
|
||||
@@ -17,12 +17,12 @@ $provide.value("$locale", {
|
||||
"\u0448\u04d9\u043d\u0431\u04d9"
|
||||
],
|
||||
"ERANAMES": [
|
||||
"BCE",
|
||||
"CE"
|
||||
"\u0435\u0440\u0430\u043c\u044b\u0437\u0434\u0430\u043d \u04d9\u0432\u0432\u04d9\u043b",
|
||||
"\u0458\u0435\u043d\u0438 \u0435\u0440\u0430"
|
||||
],
|
||||
"ERAS": [
|
||||
"BCE",
|
||||
"CE"
|
||||
"\u0435.\u04d9.",
|
||||
"\u0458.\u0435."
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"MONTH": [
|
||||
@@ -40,50 +40,50 @@ $provide.value("$locale", {
|
||||
"\u0434\u0435\u043a\u0430\u0431\u0440"
|
||||
],
|
||||
"SHORTDAY": [
|
||||
"\u0431\u0430\u0437\u0430\u0440",
|
||||
"\u0431\u0430\u0437\u0430\u0440 \u0435\u0440\u0442\u04d9\u0441\u0438",
|
||||
"\u0447\u04d9\u0440\u0448\u04d9\u043d\u0431\u04d9 \u0430\u0445\u0448\u0430\u043c\u044b",
|
||||
"\u0447\u04d9\u0440\u0448\u04d9\u043d\u0431\u04d9",
|
||||
"\u04b9\u04af\u043c\u04d9 \u0430\u0445\u0448\u0430\u043c\u044b",
|
||||
"\u04b9\u04af\u043c\u04d9",
|
||||
"\u0448\u04d9\u043d\u0431\u04d9"
|
||||
"\u0411.",
|
||||
"\u0411.\u0415.",
|
||||
"\u0427.\u0410.",
|
||||
"\u0427.",
|
||||
"\u04b8.\u0410.",
|
||||
"\u04b8.",
|
||||
"\u0428."
|
||||
],
|
||||
"SHORTMONTH": [
|
||||
"\u0458\u0430\u043d\u0432\u0430\u0440",
|
||||
"\u0444\u0435\u0432\u0440\u0430\u043b",
|
||||
"\u043c\u0430\u0440\u0442",
|
||||
"\u0430\u043f\u0440\u0435\u043b",
|
||||
"\u0458\u0430\u043d",
|
||||
"\u0444\u0435\u0432",
|
||||
"\u043c\u0430\u0440",
|
||||
"\u0430\u043f\u0440",
|
||||
"\u043c\u0430\u0439",
|
||||
"\u0438\u0458\u0443\u043d",
|
||||
"\u0438\u0458\u0443\u043b",
|
||||
"\u0430\u0432\u0433\u0443\u0441\u0442",
|
||||
"\u0441\u0435\u043d\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u043e\u043a\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u043d\u043e\u0458\u0430\u0431\u0440",
|
||||
"\u0434\u0435\u043a\u0430\u0431\u0440"
|
||||
"\u0438\u0458\u043d",
|
||||
"\u0438\u0458\u043b",
|
||||
"\u0430\u0432\u0433",
|
||||
"\u0441\u0435\u043d",
|
||||
"\u043e\u043a\u0442",
|
||||
"\u043d\u043e\u0458",
|
||||
"\u0434\u0435\u043a"
|
||||
],
|
||||
"STANDALONEMONTH": [
|
||||
"\u0458\u0430\u043d\u0432\u0430\u0440",
|
||||
"\u0444\u0435\u0432\u0440\u0430\u043b",
|
||||
"\u043c\u0430\u0440\u0442",
|
||||
"\u0430\u043f\u0440\u0435\u043b",
|
||||
"\u043c\u0430\u0439",
|
||||
"\u0438\u0458\u0443\u043d",
|
||||
"\u0438\u0458\u0443\u043b",
|
||||
"\u0430\u0432\u0433\u0443\u0441\u0442",
|
||||
"\u0441\u0435\u043d\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u043e\u043a\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u043d\u043e\u0458\u0430\u0431\u0440",
|
||||
"\u0434\u0435\u043a\u0430\u0431\u0440"
|
||||
"\u0408\u0430\u043d\u0432\u0430\u0440",
|
||||
"\u0424\u0435\u0432\u0440\u0430\u043b",
|
||||
"\u041c\u0430\u0440\u0442",
|
||||
"\u0410\u043f\u0440\u0435\u043b",
|
||||
"\u041c\u0430\u0439",
|
||||
"\u0418\u0458\u0443\u043d",
|
||||
"\u0418\u0458\u0443\u043b",
|
||||
"\u0410\u0432\u0433\u0443\u0441\u0442",
|
||||
"\u0421\u0435\u043d\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u041e\u043a\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u041d\u043e\u0458\u0430\u0431\u0440",
|
||||
"\u0414\u0435\u043a\u0430\u0431\u0440"
|
||||
],
|
||||
"WEEKENDRANGE": [
|
||||
5,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE, d, MMMM, y",
|
||||
"longDate": "d MMMM, y",
|
||||
"medium": "d MMM, y HH:mm:ss",
|
||||
"mediumDate": "d MMM, y",
|
||||
"fullDate": "d MMMM y, EEEE",
|
||||
"longDate": "d MMMM y",
|
||||
"medium": "d MMM y HH:mm:ss",
|
||||
"mediumDate": "d MMM y",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "dd.MM.yy HH:mm",
|
||||
"shortDate": "dd.MM.yy",
|
||||
|
||||
+40
-40
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"AM",
|
||||
"PM"
|
||||
"\u0410\u041c",
|
||||
"\u041f\u041c"
|
||||
],
|
||||
"DAY": [
|
||||
"\u0431\u0430\u0437\u0430\u0440",
|
||||
@@ -17,12 +17,12 @@ $provide.value("$locale", {
|
||||
"\u0448\u04d9\u043d\u0431\u04d9"
|
||||
],
|
||||
"ERANAMES": [
|
||||
"BCE",
|
||||
"CE"
|
||||
"\u0435\u0440\u0430\u043c\u044b\u0437\u0434\u0430\u043d \u04d9\u0432\u0432\u04d9\u043b",
|
||||
"\u0458\u0435\u043d\u0438 \u0435\u0440\u0430"
|
||||
],
|
||||
"ERAS": [
|
||||
"BCE",
|
||||
"CE"
|
||||
"\u0435.\u04d9.",
|
||||
"\u0458.\u0435."
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"MONTH": [
|
||||
@@ -40,50 +40,50 @@ $provide.value("$locale", {
|
||||
"\u0434\u0435\u043a\u0430\u0431\u0440"
|
||||
],
|
||||
"SHORTDAY": [
|
||||
"\u0431\u0430\u0437\u0430\u0440",
|
||||
"\u0431\u0430\u0437\u0430\u0440 \u0435\u0440\u0442\u04d9\u0441\u0438",
|
||||
"\u0447\u04d9\u0440\u0448\u04d9\u043d\u0431\u04d9 \u0430\u0445\u0448\u0430\u043c\u044b",
|
||||
"\u0447\u04d9\u0440\u0448\u04d9\u043d\u0431\u04d9",
|
||||
"\u04b9\u04af\u043c\u04d9 \u0430\u0445\u0448\u0430\u043c\u044b",
|
||||
"\u04b9\u04af\u043c\u04d9",
|
||||
"\u0448\u04d9\u043d\u0431\u04d9"
|
||||
"\u0411.",
|
||||
"\u0411.\u0415.",
|
||||
"\u0427.\u0410.",
|
||||
"\u0427.",
|
||||
"\u04b8.\u0410.",
|
||||
"\u04b8.",
|
||||
"\u0428."
|
||||
],
|
||||
"SHORTMONTH": [
|
||||
"\u0458\u0430\u043d\u0432\u0430\u0440",
|
||||
"\u0444\u0435\u0432\u0440\u0430\u043b",
|
||||
"\u043c\u0430\u0440\u0442",
|
||||
"\u0430\u043f\u0440\u0435\u043b",
|
||||
"\u0458\u0430\u043d",
|
||||
"\u0444\u0435\u0432",
|
||||
"\u043c\u0430\u0440",
|
||||
"\u0430\u043f\u0440",
|
||||
"\u043c\u0430\u0439",
|
||||
"\u0438\u0458\u0443\u043d",
|
||||
"\u0438\u0458\u0443\u043b",
|
||||
"\u0430\u0432\u0433\u0443\u0441\u0442",
|
||||
"\u0441\u0435\u043d\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u043e\u043a\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u043d\u043e\u0458\u0430\u0431\u0440",
|
||||
"\u0434\u0435\u043a\u0430\u0431\u0440"
|
||||
"\u0438\u0458\u043d",
|
||||
"\u0438\u0458\u043b",
|
||||
"\u0430\u0432\u0433",
|
||||
"\u0441\u0435\u043d",
|
||||
"\u043e\u043a\u0442",
|
||||
"\u043d\u043e\u0458",
|
||||
"\u0434\u0435\u043a"
|
||||
],
|
||||
"STANDALONEMONTH": [
|
||||
"\u0458\u0430\u043d\u0432\u0430\u0440",
|
||||
"\u0444\u0435\u0432\u0440\u0430\u043b",
|
||||
"\u043c\u0430\u0440\u0442",
|
||||
"\u0430\u043f\u0440\u0435\u043b",
|
||||
"\u043c\u0430\u0439",
|
||||
"\u0438\u0458\u0443\u043d",
|
||||
"\u0438\u0458\u0443\u043b",
|
||||
"\u0430\u0432\u0433\u0443\u0441\u0442",
|
||||
"\u0441\u0435\u043d\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u043e\u043a\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u043d\u043e\u0458\u0430\u0431\u0440",
|
||||
"\u0434\u0435\u043a\u0430\u0431\u0440"
|
||||
"\u0408\u0430\u043d\u0432\u0430\u0440",
|
||||
"\u0424\u0435\u0432\u0440\u0430\u043b",
|
||||
"\u041c\u0430\u0440\u0442",
|
||||
"\u0410\u043f\u0440\u0435\u043b",
|
||||
"\u041c\u0430\u0439",
|
||||
"\u0418\u0458\u0443\u043d",
|
||||
"\u0418\u0458\u0443\u043b",
|
||||
"\u0410\u0432\u0433\u0443\u0441\u0442",
|
||||
"\u0421\u0435\u043d\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u041e\u043a\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u041d\u043e\u0458\u0430\u0431\u0440",
|
||||
"\u0414\u0435\u043a\u0430\u0431\u0440"
|
||||
],
|
||||
"WEEKENDRANGE": [
|
||||
5,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE, d, MMMM, y",
|
||||
"longDate": "d MMMM, y",
|
||||
"medium": "d MMM, y HH:mm:ss",
|
||||
"mediumDate": "d MMM, y",
|
||||
"fullDate": "d MMMM y, EEEE",
|
||||
"longDate": "d MMMM y",
|
||||
"medium": "d MMM y HH:mm:ss",
|
||||
"mediumDate": "d MMM y",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "dd.MM.yy HH:mm",
|
||||
"shortDate": "dd.MM.yy",
|
||||
|
||||
+2
-2
@@ -18,11 +18,11 @@ $provide.value("$locale", {
|
||||
],
|
||||
"ERANAMES": [
|
||||
"eram\u0131zdan \u0259vv\u0259l",
|
||||
"eram\u0131z"
|
||||
"yeni era"
|
||||
],
|
||||
"ERAS": [
|
||||
"e.\u0259.",
|
||||
"b.e."
|
||||
"y.e."
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"MONTH": [
|
||||
|
||||
+2
-2
@@ -18,11 +18,11 @@ $provide.value("$locale", {
|
||||
],
|
||||
"ERANAMES": [
|
||||
"eram\u0131zdan \u0259vv\u0259l",
|
||||
"eram\u0131z"
|
||||
"yeni era"
|
||||
],
|
||||
"ERAS": [
|
||||
"e.\u0259.",
|
||||
"b.e."
|
||||
"y.e."
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"MONTH": [
|
||||
|
||||
Vendored
+2
-2
@@ -18,11 +18,11 @@ $provide.value("$locale", {
|
||||
],
|
||||
"ERANAMES": [
|
||||
"eram\u0131zdan \u0259vv\u0259l",
|
||||
"eram\u0131z"
|
||||
"yeni era"
|
||||
],
|
||||
"ERAS": [
|
||||
"e.\u0259.",
|
||||
"b.e."
|
||||
"y.e."
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"MONTH": [
|
||||
|
||||
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
|
||||
Vendored
+13
-13
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"\u0434\u0430 \u043f\u0430\u045e\u0434\u043d\u044f",
|
||||
"\u043f\u0430\u0441\u043b\u044f \u043f\u0430\u045e\u0434\u043d\u044f"
|
||||
"AM",
|
||||
"PM"
|
||||
],
|
||||
"DAY": [
|
||||
"\u043d\u044f\u0434\u0437\u0435\u043b\u044f",
|
||||
@@ -17,8 +17,8 @@ $provide.value("$locale", {
|
||||
"\u0441\u0443\u0431\u043e\u0442\u0430"
|
||||
],
|
||||
"ERANAMES": [
|
||||
"\u0434\u0430 \u043d\u0430\u0448\u0430\u0439 \u044d\u0440\u044b",
|
||||
"\u043d\u0430\u0448\u0430\u0439 \u044d\u0440\u044b"
|
||||
"\u0434\u0430 \u043d\u0430\u0440\u0430\u0434\u0436\u044d\u043d\u043d\u044f \u0425\u0440\u044b\u0441\u0442\u043e\u0432\u0430",
|
||||
"\u0430\u0434 \u043d\u0430\u0440\u0430\u0434\u0436\u044d\u043d\u043d\u044f \u0425\u0440\u044b\u0441\u0442\u043e\u0432\u0430"
|
||||
],
|
||||
"ERAS": [
|
||||
"\u0434\u0430 \u043d.\u044d.",
|
||||
@@ -80,17 +80,17 @@ $provide.value("$locale", {
|
||||
5,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE, d MMMM y",
|
||||
"longDate": "d MMMM y",
|
||||
"medium": "d.M.y HH.mm.ss",
|
||||
"mediumDate": "d.M.y",
|
||||
"mediumTime": "HH.mm.ss",
|
||||
"short": "d.M.yy HH.mm",
|
||||
"shortDate": "d.M.yy",
|
||||
"shortTime": "HH.mm"
|
||||
"fullDate": "EEEE, d MMMM y '\u0433'.",
|
||||
"longDate": "d MMMM y '\u0433'.",
|
||||
"medium": "d.MM.y HH:mm:ss",
|
||||
"mediumDate": "d.MM.y",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "d.MM.yy HH:mm",
|
||||
"shortDate": "d.MM.yy",
|
||||
"shortTime": "HH:mm"
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
"CURRENCY_SYM": "p.",
|
||||
"CURRENCY_SYM": "BYN",
|
||||
"DECIMAL_SEP": ",",
|
||||
"GROUP_SEP": "\u00a0",
|
||||
"PATTERNS": [
|
||||
|
||||
Vendored
+13
-13
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"\u0434\u0430 \u043f\u0430\u045e\u0434\u043d\u044f",
|
||||
"\u043f\u0430\u0441\u043b\u044f \u043f\u0430\u045e\u0434\u043d\u044f"
|
||||
"AM",
|
||||
"PM"
|
||||
],
|
||||
"DAY": [
|
||||
"\u043d\u044f\u0434\u0437\u0435\u043b\u044f",
|
||||
@@ -17,8 +17,8 @@ $provide.value("$locale", {
|
||||
"\u0441\u0443\u0431\u043e\u0442\u0430"
|
||||
],
|
||||
"ERANAMES": [
|
||||
"\u0434\u0430 \u043d\u0430\u0448\u0430\u0439 \u044d\u0440\u044b",
|
||||
"\u043d\u0430\u0448\u0430\u0439 \u044d\u0440\u044b"
|
||||
"\u0434\u0430 \u043d\u0430\u0440\u0430\u0434\u0436\u044d\u043d\u043d\u044f \u0425\u0440\u044b\u0441\u0442\u043e\u0432\u0430",
|
||||
"\u0430\u0434 \u043d\u0430\u0440\u0430\u0434\u0436\u044d\u043d\u043d\u044f \u0425\u0440\u044b\u0441\u0442\u043e\u0432\u0430"
|
||||
],
|
||||
"ERAS": [
|
||||
"\u0434\u0430 \u043d.\u044d.",
|
||||
@@ -80,17 +80,17 @@ $provide.value("$locale", {
|
||||
5,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE, d MMMM y",
|
||||
"longDate": "d MMMM y",
|
||||
"medium": "d.M.y HH.mm.ss",
|
||||
"mediumDate": "d.M.y",
|
||||
"mediumTime": "HH.mm.ss",
|
||||
"short": "d.M.yy HH.mm",
|
||||
"shortDate": "d.M.yy",
|
||||
"shortTime": "HH.mm"
|
||||
"fullDate": "EEEE, d MMMM y '\u0433'.",
|
||||
"longDate": "d MMMM y '\u0433'.",
|
||||
"medium": "d.MM.y HH:mm:ss",
|
||||
"mediumDate": "d.MM.y",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "d.MM.yy HH:mm",
|
||||
"shortDate": "d.MM.yy",
|
||||
"shortTime": "HH:mm"
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
"CURRENCY_SYM": "p.",
|
||||
"CURRENCY_SYM": "BYN",
|
||||
"DECIMAL_SEP": ",",
|
||||
"GROUP_SEP": "\u00a0",
|
||||
"PATTERNS": [
|
||||
|
||||
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a4",
|
||||
|
||||
Vendored
+2
-2
@@ -106,8 +106,8 @@ $provide.value("$locale", {
|
||||
"posSuf": ""
|
||||
},
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"gSize": 0,
|
||||
"lgSize": 0,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
|
||||
Vendored
+2
-2
@@ -106,8 +106,8 @@ $provide.value("$locale", {
|
||||
"posSuf": ""
|
||||
},
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"gSize": 0,
|
||||
"lgSize": 0,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
|
||||
Vendored
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4",
|
||||
"negSuf": "",
|
||||
|
||||
Vendored
+4
-4
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"am",
|
||||
"pm"
|
||||
"AM",
|
||||
"PM"
|
||||
],
|
||||
"DAY": [
|
||||
"\u09b0\u09ac\u09bf\u09ac\u09be\u09b0",
|
||||
@@ -49,8 +49,8 @@ $provide.value("$locale", {
|
||||
"\u09b6\u09a8\u09bf"
|
||||
],
|
||||
"SHORTMONTH": [
|
||||
"\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
|
||||
"\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
|
||||
"\u099c\u09be\u09a8\u09c1",
|
||||
"\u09ab\u09c7\u09ac",
|
||||
"\u09ae\u09be\u09b0\u09cd\u099a",
|
||||
"\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
|
||||
"\u09ae\u09c7",
|
||||
|
||||
Vendored
+4
-4
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"am",
|
||||
"pm"
|
||||
"AM",
|
||||
"PM"
|
||||
],
|
||||
"DAY": [
|
||||
"\u09b0\u09ac\u09bf\u09ac\u09be\u09b0",
|
||||
@@ -49,8 +49,8 @@ $provide.value("$locale", {
|
||||
"\u09b6\u09a8\u09bf"
|
||||
],
|
||||
"SHORTMONTH": [
|
||||
"\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
|
||||
"\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
|
||||
"\u099c\u09be\u09a8\u09c1",
|
||||
"\u09ab\u09c7\u09ac",
|
||||
"\u09ae\u09be\u09b0\u09cd\u099a",
|
||||
"\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
|
||||
"\u09ae\u09c7",
|
||||
|
||||
Vendored
+4
-4
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"am",
|
||||
"pm"
|
||||
"AM",
|
||||
"PM"
|
||||
],
|
||||
"DAY": [
|
||||
"\u09b0\u09ac\u09bf\u09ac\u09be\u09b0",
|
||||
@@ -49,8 +49,8 @@ $provide.value("$locale", {
|
||||
"\u09b6\u09a8\u09bf"
|
||||
],
|
||||
"SHORTMONTH": [
|
||||
"\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
|
||||
"\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
|
||||
"\u099c\u09be\u09a8\u09c1",
|
||||
"\u09ab\u09c7\u09ac",
|
||||
"\u09ae\u09be\u09b0\u09cd\u099a",
|
||||
"\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
|
||||
"\u09ae\u09c7",
|
||||
|
||||
Vendored
+1
-1
@@ -95,7 +95,7 @@ $provide.value("$locale", {
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b"
|
||||
],
|
||||
"WEEKENDRANGE": [
|
||||
5,
|
||||
6,
|
||||
6
|
||||
],
|
||||
"fullDate": "y MMMM\u0f60\u0f72\u0f0b\u0f5a\u0f7a\u0f66\u0f0bd, EEEE",
|
||||
|
||||
+2
-2
@@ -42,7 +42,7 @@ $provide.value("$locale", {
|
||||
"\u0908\u0938\u093e.\u092a\u0942\u0930\u094d\u0935",
|
||||
"\u0938\u0928"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"FIRSTDAYOFWEEK": 6,
|
||||
"MONTH": [
|
||||
"\u091c\u093e\u0928\u0941\u0935\u093e\u0930\u0940",
|
||||
"\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
|
||||
@@ -95,7 +95,7 @@ $provide.value("$locale", {
|
||||
"\u0926\u093f\u0938\u0947\u091c\u094d\u092c\u093c\u0930"
|
||||
],
|
||||
"WEEKENDRANGE": [
|
||||
5,
|
||||
6,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE, MMMM d, y",
|
||||
|
||||
Vendored
+2
-2
@@ -42,7 +42,7 @@ $provide.value("$locale", {
|
||||
"\u0908\u0938\u093e.\u092a\u0942\u0930\u094d\u0935",
|
||||
"\u0938\u0928"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"FIRSTDAYOFWEEK": 6,
|
||||
"MONTH": [
|
||||
"\u091c\u093e\u0928\u0941\u0935\u093e\u0930\u0940",
|
||||
"\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
|
||||
@@ -95,7 +95,7 @@ $provide.value("$locale", {
|
||||
"\u0926\u093f\u0938\u0947\u091c\u094d\u092c\u093c\u0930"
|
||||
],
|
||||
"WEEKENDRANGE": [
|
||||
5,
|
||||
6,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE, MMMM d, y",
|
||||
|
||||
+12
-12
@@ -22,7 +22,7 @@ function getVF(n, opt_precision) {
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"prije podne",
|
||||
"prijepodne",
|
||||
"popodne"
|
||||
],
|
||||
"DAY": [
|
||||
@@ -35,8 +35,8 @@ $provide.value("$locale", {
|
||||
"subota"
|
||||
],
|
||||
"ERANAMES": [
|
||||
"Prije nove ere",
|
||||
"Nove ere"
|
||||
"prije nove ere",
|
||||
"nove ere"
|
||||
],
|
||||
"ERAS": [
|
||||
"p. n. e.",
|
||||
@@ -51,7 +51,7 @@ $provide.value("$locale", {
|
||||
"maj",
|
||||
"juni",
|
||||
"juli",
|
||||
"august",
|
||||
"avgust",
|
||||
"septembar",
|
||||
"oktobar",
|
||||
"novembar",
|
||||
@@ -74,7 +74,7 @@ $provide.value("$locale", {
|
||||
"maj",
|
||||
"jun",
|
||||
"jul",
|
||||
"aug",
|
||||
"avg",
|
||||
"sep",
|
||||
"okt",
|
||||
"nov",
|
||||
@@ -88,7 +88,7 @@ $provide.value("$locale", {
|
||||
"maj",
|
||||
"juni",
|
||||
"juli",
|
||||
"august",
|
||||
"avgust",
|
||||
"septembar",
|
||||
"oktobar",
|
||||
"novembar",
|
||||
@@ -98,13 +98,13 @@ $provide.value("$locale", {
|
||||
5,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE, dd. MMMM y.",
|
||||
"longDate": "dd. MMMM y.",
|
||||
"medium": "dd. MMM. y. HH:mm:ss",
|
||||
"mediumDate": "dd. MMM. y.",
|
||||
"fullDate": "EEEE, d. MMMM y.",
|
||||
"longDate": "d. MMMM y.",
|
||||
"medium": "d. MMM. y. HH:mm:ss",
|
||||
"mediumDate": "d. MMM. y.",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "dd.MM.yy. HH:mm",
|
||||
"shortDate": "dd.MM.yy.",
|
||||
"short": "d.M.yy. HH:mm",
|
||||
"shortDate": "d.M.yy.",
|
||||
"shortTime": "HH:mm"
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
|
||||
+12
-12
@@ -22,7 +22,7 @@ function getVF(n, opt_precision) {
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"prije podne",
|
||||
"prijepodne",
|
||||
"popodne"
|
||||
],
|
||||
"DAY": [
|
||||
@@ -35,8 +35,8 @@ $provide.value("$locale", {
|
||||
"subota"
|
||||
],
|
||||
"ERANAMES": [
|
||||
"Prije nove ere",
|
||||
"Nove ere"
|
||||
"prije nove ere",
|
||||
"nove ere"
|
||||
],
|
||||
"ERAS": [
|
||||
"p. n. e.",
|
||||
@@ -51,7 +51,7 @@ $provide.value("$locale", {
|
||||
"maj",
|
||||
"juni",
|
||||
"juli",
|
||||
"august",
|
||||
"avgust",
|
||||
"septembar",
|
||||
"oktobar",
|
||||
"novembar",
|
||||
@@ -74,7 +74,7 @@ $provide.value("$locale", {
|
||||
"maj",
|
||||
"jun",
|
||||
"jul",
|
||||
"aug",
|
||||
"avg",
|
||||
"sep",
|
||||
"okt",
|
||||
"nov",
|
||||
@@ -88,7 +88,7 @@ $provide.value("$locale", {
|
||||
"maj",
|
||||
"juni",
|
||||
"juli",
|
||||
"august",
|
||||
"avgust",
|
||||
"septembar",
|
||||
"oktobar",
|
||||
"novembar",
|
||||
@@ -98,13 +98,13 @@ $provide.value("$locale", {
|
||||
5,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE, dd. MMMM y.",
|
||||
"longDate": "dd. MMMM y.",
|
||||
"medium": "dd. MMM. y. HH:mm:ss",
|
||||
"mediumDate": "dd. MMM. y.",
|
||||
"fullDate": "EEEE, d. MMMM y.",
|
||||
"longDate": "d. MMMM y.",
|
||||
"medium": "d. MMM. y. HH:mm:ss",
|
||||
"mediumDate": "d. MMM. y.",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "dd.MM.yy. HH:mm",
|
||||
"shortDate": "dd.MM.yy.",
|
||||
"short": "d.M.yy. HH:mm",
|
||||
"shortDate": "d.M.yy.",
|
||||
"shortTime": "HH:mm"
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
|
||||
Vendored
+12
-12
@@ -22,7 +22,7 @@ function getVF(n, opt_precision) {
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"prije podne",
|
||||
"prijepodne",
|
||||
"popodne"
|
||||
],
|
||||
"DAY": [
|
||||
@@ -35,8 +35,8 @@ $provide.value("$locale", {
|
||||
"subota"
|
||||
],
|
||||
"ERANAMES": [
|
||||
"Prije nove ere",
|
||||
"Nove ere"
|
||||
"prije nove ere",
|
||||
"nove ere"
|
||||
],
|
||||
"ERAS": [
|
||||
"p. n. e.",
|
||||
@@ -51,7 +51,7 @@ $provide.value("$locale", {
|
||||
"maj",
|
||||
"juni",
|
||||
"juli",
|
||||
"august",
|
||||
"avgust",
|
||||
"septembar",
|
||||
"oktobar",
|
||||
"novembar",
|
||||
@@ -74,7 +74,7 @@ $provide.value("$locale", {
|
||||
"maj",
|
||||
"jun",
|
||||
"jul",
|
||||
"aug",
|
||||
"avg",
|
||||
"sep",
|
||||
"okt",
|
||||
"nov",
|
||||
@@ -88,7 +88,7 @@ $provide.value("$locale", {
|
||||
"maj",
|
||||
"juni",
|
||||
"juli",
|
||||
"august",
|
||||
"avgust",
|
||||
"septembar",
|
||||
"oktobar",
|
||||
"novembar",
|
||||
@@ -98,13 +98,13 @@ $provide.value("$locale", {
|
||||
5,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE, dd. MMMM y.",
|
||||
"longDate": "dd. MMMM y.",
|
||||
"medium": "dd. MMM. y. HH:mm:ss",
|
||||
"mediumDate": "dd. MMM. y.",
|
||||
"fullDate": "EEEE, d. MMMM y.",
|
||||
"longDate": "d. MMMM y.",
|
||||
"medium": "d. MMM. y. HH:mm:ss",
|
||||
"mediumDate": "d. MMM. y.",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "dd.MM.yy. HH:mm",
|
||||
"shortDate": "dd.MM.yy.",
|
||||
"short": "d.M.yy. HH:mm",
|
||||
"shortDate": "d.M.yy.",
|
||||
"shortTime": "HH:mm"
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
|
||||
Vendored
+12
-12
@@ -67,18 +67,18 @@ $provide.value("$locale", {
|
||||
"ds."
|
||||
],
|
||||
"SHORTMONTH": [
|
||||
"gen.",
|
||||
"febr.",
|
||||
"mar\u00e7",
|
||||
"abr.",
|
||||
"maig",
|
||||
"juny",
|
||||
"jul.",
|
||||
"ag.",
|
||||
"set.",
|
||||
"oct.",
|
||||
"nov.",
|
||||
"des."
|
||||
"de gen.",
|
||||
"de febr.",
|
||||
"de mar\u00e7",
|
||||
"d\u2019abr.",
|
||||
"de maig",
|
||||
"de juny",
|
||||
"de jul.",
|
||||
"d\u2019ag.",
|
||||
"de set.",
|
||||
"d\u2019oct.",
|
||||
"de nov.",
|
||||
"de des."
|
||||
],
|
||||
"STANDALONEMONTH": [
|
||||
"gener",
|
||||
|
||||
Vendored
+12
-12
@@ -67,18 +67,18 @@ $provide.value("$locale", {
|
||||
"ds."
|
||||
],
|
||||
"SHORTMONTH": [
|
||||
"gen.",
|
||||
"febr.",
|
||||
"mar\u00e7",
|
||||
"abr.",
|
||||
"maig",
|
||||
"juny",
|
||||
"jul.",
|
||||
"ag.",
|
||||
"set.",
|
||||
"oct.",
|
||||
"nov.",
|
||||
"des."
|
||||
"de gen.",
|
||||
"de febr.",
|
||||
"de mar\u00e7",
|
||||
"d\u2019abr.",
|
||||
"de maig",
|
||||
"de juny",
|
||||
"de jul.",
|
||||
"d\u2019ag.",
|
||||
"de set.",
|
||||
"d\u2019oct.",
|
||||
"de nov.",
|
||||
"de des."
|
||||
],
|
||||
"STANDALONEMONTH": [
|
||||
"gener",
|
||||
|
||||
Vendored
+12
-12
@@ -67,18 +67,18 @@ $provide.value("$locale", {
|
||||
"ds."
|
||||
],
|
||||
"SHORTMONTH": [
|
||||
"gen.",
|
||||
"febr.",
|
||||
"mar\u00e7",
|
||||
"abr.",
|
||||
"maig",
|
||||
"juny",
|
||||
"jul.",
|
||||
"ag.",
|
||||
"set.",
|
||||
"oct.",
|
||||
"nov.",
|
||||
"des."
|
||||
"de gen.",
|
||||
"de febr.",
|
||||
"de mar\u00e7",
|
||||
"d\u2019abr.",
|
||||
"de maig",
|
||||
"de juny",
|
||||
"de jul.",
|
||||
"d\u2019ag.",
|
||||
"de set.",
|
||||
"d\u2019oct.",
|
||||
"de nov.",
|
||||
"de des."
|
||||
],
|
||||
"STANDALONEMONTH": [
|
||||
"gener",
|
||||
|
||||
Vendored
+12
-12
@@ -67,18 +67,18 @@ $provide.value("$locale", {
|
||||
"ds."
|
||||
],
|
||||
"SHORTMONTH": [
|
||||
"gen.",
|
||||
"febr.",
|
||||
"mar\u00e7",
|
||||
"abr.",
|
||||
"maig",
|
||||
"juny",
|
||||
"jul.",
|
||||
"ag.",
|
||||
"set.",
|
||||
"oct.",
|
||||
"nov.",
|
||||
"des."
|
||||
"de gen.",
|
||||
"de febr.",
|
||||
"de mar\u00e7",
|
||||
"d\u2019abr.",
|
||||
"de maig",
|
||||
"de juny",
|
||||
"de jul.",
|
||||
"d\u2019ag.",
|
||||
"de set.",
|
||||
"d\u2019oct.",
|
||||
"de nov.",
|
||||
"de des."
|
||||
],
|
||||
"STANDALONEMONTH": [
|
||||
"gener",
|
||||
|
||||
Vendored
+12
-12
@@ -67,18 +67,18 @@ $provide.value("$locale", {
|
||||
"ds."
|
||||
],
|
||||
"SHORTMONTH": [
|
||||
"gen.",
|
||||
"febr.",
|
||||
"mar\u00e7",
|
||||
"abr.",
|
||||
"maig",
|
||||
"juny",
|
||||
"jul.",
|
||||
"ag.",
|
||||
"set.",
|
||||
"oct.",
|
||||
"nov.",
|
||||
"des."
|
||||
"de gen.",
|
||||
"de febr.",
|
||||
"de mar\u00e7",
|
||||
"d\u2019abr.",
|
||||
"de maig",
|
||||
"de juny",
|
||||
"de jul.",
|
||||
"d\u2019ag.",
|
||||
"de set.",
|
||||
"d\u2019oct.",
|
||||
"de nov.",
|
||||
"de des."
|
||||
],
|
||||
"STANDALONEMONTH": [
|
||||
"gener",
|
||||
|
||||
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4",
|
||||
"negSuf": "",
|
||||
|
||||
+4
-4
@@ -17,12 +17,12 @@ $provide.value("$locale", {
|
||||
"\u13a4\u13be\u13d9\u13d3\u13c8\u13d5\u13be"
|
||||
],
|
||||
"ERANAMES": [
|
||||
"\u13cf \u13e5\u13cc \u13be\u13d5\u13b2\u13cd\u13ac\u13be",
|
||||
"\u13a0\u13a9\u13c3\u13ae\u13b5\u13d3\u13cd\u13d7\u13f1 \u13a0\u13d5\u13d8\u13f1\u13cd\u13ac \u13f1\u13b0\u13e9 \u13e7\u13d3\u13c2\u13b8\u13a2\u13cd\u13d7"
|
||||
"\u13e7\u13d3\u13b7\u13b8 \u13a4\u13b7\u13af\u13cd\u13d7 \u13a6\u13b6\u13c1\u13db",
|
||||
"\u13a0\u13c3 \u13d9\u13bb\u13c2"
|
||||
],
|
||||
"ERAS": [
|
||||
"\u13a4\u13d3\u13b7\u13b8",
|
||||
"\u13a4\u13b6\u13d0\u13c5"
|
||||
"BC",
|
||||
"AD"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 6,
|
||||
"MONTH": [
|
||||
|
||||
Vendored
+5
-5
@@ -17,14 +17,14 @@ $provide.value("$locale", {
|
||||
"\u13a4\u13be\u13d9\u13d3\u13c8\u13d5\u13be"
|
||||
],
|
||||
"ERANAMES": [
|
||||
"\u13cf \u13e5\u13cc \u13be\u13d5\u13b2\u13cd\u13ac\u13be",
|
||||
"\u13a0\u13a9\u13c3\u13ae\u13b5\u13d3\u13cd\u13d7\u13f1 \u13a0\u13d5\u13d8\u13f1\u13cd\u13ac \u13f1\u13b0\u13e9 \u13e7\u13d3\u13c2\u13b8\u13a2\u13cd\u13d7"
|
||||
"\u13e7\u13d3\u13b7\u13b8 \u13a4\u13b7\u13af\u13cd\u13d7 \u13a6\u13b6\u13c1\u13db",
|
||||
"\u13a0\u13c3 \u13d9\u13bb\u13c2"
|
||||
],
|
||||
"ERAS": [
|
||||
"\u13a4\u13d3\u13b7\u13b8",
|
||||
"\u13a4\u13b6\u13d0\u13c5"
|
||||
"BC",
|
||||
"AD"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"FIRSTDAYOFWEEK": 6,
|
||||
"MONTH": [
|
||||
"\u13a4\u13c3\u13b8\u13d4\u13c5",
|
||||
"\u13a7\u13a6\u13b5",
|
||||
|
||||
+8
-8
@@ -39,8 +39,8 @@ $provide.value("$locale", {
|
||||
"\u0632\u0627\u06cc\u06cc\u0646\u06cc"
|
||||
],
|
||||
"ERAS": [
|
||||
"\u067e.\u0646",
|
||||
"\u0632"
|
||||
"\u067e\u06ce\u0634 \u0632\u0627\u06cc\u06cc\u0646",
|
||||
"\u0632\u0627\u06cc\u06cc\u0646\u06cc"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 5,
|
||||
"MONTH": [
|
||||
@@ -126,13 +126,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
+8
-8
@@ -39,8 +39,8 @@ $provide.value("$locale", {
|
||||
"\u0632\u0627\u06cc\u06cc\u0646\u06cc"
|
||||
],
|
||||
"ERAS": [
|
||||
"\u067e.\u0646",
|
||||
"\u0632"
|
||||
"\u067e\u06ce\u0634 \u0632\u0627\u06cc\u06cc\u0646",
|
||||
"\u0632\u0627\u06cc\u06cc\u0646\u06cc"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 5,
|
||||
"MONTH": [
|
||||
@@ -126,13 +126,13 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+6
-6
@@ -39,8 +39,8 @@ $provide.value("$locale", {
|
||||
"\u0632\u0627\u06cc\u06cc\u0646\u06cc"
|
||||
],
|
||||
"ERAS": [
|
||||
"\u067e.\u0646",
|
||||
"\u0632"
|
||||
"\u067e\u06ce\u0634 \u0632\u0627\u06cc\u06cc\u0646",
|
||||
"\u0632\u0627\u06cc\u06cc\u0646\u06cc"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 5,
|
||||
"MONTH": [
|
||||
@@ -129,10 +129,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posSuf": ""
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+2
-2
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"AM",
|
||||
"PM"
|
||||
"yb",
|
||||
"yh"
|
||||
],
|
||||
"DAY": [
|
||||
"Dydd Sul",
|
||||
|
||||
Vendored
+2
-2
@@ -4,8 +4,8 @@ var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"AM",
|
||||
"PM"
|
||||
"yb",
|
||||
"yh"
|
||||
],
|
||||
"DAY": [
|
||||
"Dydd Sul",
|
||||
|
||||
+1
-1
@@ -42,7 +42,7 @@ $provide.value("$locale", {
|
||||
"KK",
|
||||
"BK"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"FIRSTDAYOFWEEK": 6,
|
||||
"MONTH": [
|
||||
"Mori ghwa imbiri",
|
||||
"Mori ghwa kawi",
|
||||
|
||||
Vendored
+1
-1
@@ -42,7 +42,7 @@ $provide.value("$locale", {
|
||||
"KK",
|
||||
"BK"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"FIRSTDAYOFWEEK": 6,
|
||||
"MONTH": [
|
||||
"Mori ghwa imbiri",
|
||||
"Mori ghwa kawi",
|
||||
|
||||
Vendored
+1
-1
@@ -110,7 +110,7 @@ $provide.value("$locale", {
|
||||
"NUMBER_FORMATS": {
|
||||
"CURRENCY_SYM": "CHF",
|
||||
"DECIMAL_SEP": ".",
|
||||
"GROUP_SEP": "'",
|
||||
"GROUP_SEP": "\u2019",
|
||||
"PATTERNS": [
|
||||
{
|
||||
"gSize": 3,
|
||||
|
||||
Vendored
+143
@@ -0,0 +1,143 @@
|
||||
'use strict';
|
||||
angular.module("ngLocale", [], ["$provide", function($provide) {
|
||||
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
|
||||
function getDecimals(n) {
|
||||
n = n + '';
|
||||
var i = n.indexOf('.');
|
||||
return (i == -1) ? 0 : n.length - i - 1;
|
||||
}
|
||||
|
||||
function getVF(n, opt_precision) {
|
||||
var v = opt_precision;
|
||||
|
||||
if (undefined === v) {
|
||||
v = Math.min(getDecimals(n), 3);
|
||||
}
|
||||
|
||||
var base = Math.pow(10, v);
|
||||
var f = ((n * base) | 0) % base;
|
||||
return {v: v, f: f};
|
||||
}
|
||||
|
||||
$provide.value("$locale", {
|
||||
"DATETIME_FORMATS": {
|
||||
"AMPMS": [
|
||||
"vorm.",
|
||||
"nachm."
|
||||
],
|
||||
"DAY": [
|
||||
"Sonntag",
|
||||
"Montag",
|
||||
"Dienstag",
|
||||
"Mittwoch",
|
||||
"Donnerstag",
|
||||
"Freitag",
|
||||
"Samstag"
|
||||
],
|
||||
"ERANAMES": [
|
||||
"v. Chr.",
|
||||
"n. Chr."
|
||||
],
|
||||
"ERAS": [
|
||||
"v. Chr.",
|
||||
"n. Chr."
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"MONTH": [
|
||||
"J\u00e4nner",
|
||||
"Februar",
|
||||
"M\u00e4rz",
|
||||
"April",
|
||||
"Mai",
|
||||
"Juni",
|
||||
"Juli",
|
||||
"August",
|
||||
"September",
|
||||
"Oktober",
|
||||
"November",
|
||||
"Dezember"
|
||||
],
|
||||
"SHORTDAY": [
|
||||
"So.",
|
||||
"Mo.",
|
||||
"Di.",
|
||||
"Mi.",
|
||||
"Do.",
|
||||
"Fr.",
|
||||
"Sa."
|
||||
],
|
||||
"SHORTMONTH": [
|
||||
"J\u00e4n.",
|
||||
"Feb.",
|
||||
"M\u00e4rz",
|
||||
"Apr.",
|
||||
"Mai",
|
||||
"Juni",
|
||||
"Juli",
|
||||
"Aug.",
|
||||
"Sep.",
|
||||
"Okt.",
|
||||
"Nov.",
|
||||
"Dez."
|
||||
],
|
||||
"STANDALONEMONTH": [
|
||||
"J\u00e4nner",
|
||||
"Februar",
|
||||
"M\u00e4rz",
|
||||
"April",
|
||||
"Mai",
|
||||
"Juni",
|
||||
"Juli",
|
||||
"August",
|
||||
"September",
|
||||
"Oktober",
|
||||
"November",
|
||||
"Dezember"
|
||||
],
|
||||
"WEEKENDRANGE": [
|
||||
5,
|
||||
6
|
||||
],
|
||||
"fullDate": "EEEE, d. MMMM y",
|
||||
"longDate": "d. MMMM y",
|
||||
"medium": "dd.MM.y HH:mm:ss",
|
||||
"mediumDate": "dd.MM.y",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "dd.MM.yy HH:mm",
|
||||
"shortDate": "dd.MM.yy",
|
||||
"shortTime": "HH:mm"
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
"CURRENCY_SYM": "\u20ac",
|
||||
"DECIMAL_SEP": ",",
|
||||
"GROUP_SEP": ".",
|
||||
"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,
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
}
|
||||
]
|
||||
},
|
||||
"id": "de-it",
|
||||
"localeID": "de_IT",
|
||||
"pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
|
||||
});
|
||||
}]);
|
||||
Vendored
+1
-1
@@ -110,7 +110,7 @@ $provide.value("$locale", {
|
||||
"NUMBER_FORMATS": {
|
||||
"CURRENCY_SYM": "CHF",
|
||||
"DECIMAL_SEP": ".",
|
||||
"GROUP_SEP": "'",
|
||||
"GROUP_SEP": "\u2019",
|
||||
"PATTERNS": [
|
||||
{
|
||||
"gSize": 3,
|
||||
|
||||
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a4",
|
||||
|
||||
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
|
||||
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
|
||||
+1
-1
@@ -42,7 +42,7 @@ $provide.value("$locale", {
|
||||
"MK",
|
||||
"TK"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"FIRSTDAYOFWEEK": 6,
|
||||
"MONTH": [
|
||||
"Mweri wa mbere",
|
||||
"Mweri wa ka\u0129ri",
|
||||
|
||||
Vendored
+1
-1
@@ -42,7 +42,7 @@ $provide.value("$locale", {
|
||||
"MK",
|
||||
"TK"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"FIRSTDAYOFWEEK": 6,
|
||||
"MONTH": [
|
||||
"Mweri wa mbere",
|
||||
"Mweri wa ka\u0129ri",
|
||||
|
||||
Vendored
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4",
|
||||
"negSuf": "",
|
||||
|
||||
+1
-1
@@ -42,7 +42,7 @@ $provide.value("$locale", {
|
||||
"BC",
|
||||
"AD"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 6,
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"MONTH": [
|
||||
"January",
|
||||
"February",
|
||||
|
||||
+1
-1
@@ -42,7 +42,7 @@ $provide.value("$locale", {
|
||||
"BC",
|
||||
"AD"
|
||||
],
|
||||
"FIRSTDAYOFWEEK": 6,
|
||||
"FIRSTDAYOFWEEK": 0,
|
||||
"MONTH": [
|
||||
"January",
|
||||
"February",
|
||||
|
||||
Vendored
+2
-2
@@ -129,9 +129,9 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4\u00a0",
|
||||
"negPre": "-\u00a4",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posPre": "\u00a4",
|
||||
"posSuf": ""
|
||||
}
|
||||
]
|
||||
|
||||
Vendored
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4",
|
||||
"negSuf": "",
|
||||
|
||||
Vendored
+4
-4
@@ -100,12 +100,12 @@ $provide.value("$locale", {
|
||||
],
|
||||
"fullDate": "EEEE, dd MMMM y",
|
||||
"longDate": "dd MMMM y",
|
||||
"medium": "dd MMM y h:mm:ss a",
|
||||
"medium": "dd MMM y HH:mm:ss",
|
||||
"mediumDate": "dd MMM y",
|
||||
"mediumTime": "h:mm:ss a",
|
||||
"short": "dd/MM/yy h:mm a",
|
||||
"mediumTime": "HH:mm:ss",
|
||||
"short": "dd/MM/yy HH:mm",
|
||||
"shortDate": "dd/MM/yy",
|
||||
"shortTime": "h:mm a"
|
||||
"shortTime": "HH:mm"
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
"CURRENCY_SYM": "P",
|
||||
|
||||
Vendored
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4",
|
||||
"negSuf": "",
|
||||
|
||||
Vendored
+4
-4
@@ -129,10 +129,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
"negPre": "-\u00a4",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4",
|
||||
"posSuf": ""
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+4
-4
@@ -129,10 +129,10 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "-",
|
||||
"negSuf": "\u00a0\u00a4",
|
||||
"posPre": "",
|
||||
"posSuf": "\u00a0\u00a4"
|
||||
"negPre": "-\u00a4",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4",
|
||||
"posSuf": ""
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4",
|
||||
"negSuf": "",
|
||||
|
||||
Vendored
+2
-2
@@ -103,8 +103,8 @@ $provide.value("$locale", {
|
||||
"medium": "d MMM y h:mm:ss a",
|
||||
"mediumDate": "d MMM y",
|
||||
"mediumTime": "h:mm:ss a",
|
||||
"short": "d/M/yy h:mm a",
|
||||
"shortDate": "d/M/yy",
|
||||
"short": "dd/MM/y h:mm a",
|
||||
"shortDate": "dd/MM/y",
|
||||
"shortTime": "h:mm a"
|
||||
},
|
||||
"NUMBER_FORMATS": {
|
||||
|
||||
Vendored
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4",
|
||||
"negSuf": "",
|
||||
|
||||
Vendored
+2
-2
@@ -126,8 +126,8 @@ $provide.value("$locale", {
|
||||
{
|
||||
"gSize": 3,
|
||||
"lgSize": 3,
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"maxFrac": 0,
|
||||
"minFrac": 0,
|
||||
"minInt": 1,
|
||||
"negPre": "-\u00a4",
|
||||
"negSuf": "",
|
||||
|
||||
Vendored
+2
-2
@@ -129,9 +129,9 @@ $provide.value("$locale", {
|
||||
"maxFrac": 2,
|
||||
"minFrac": 2,
|
||||
"minInt": 1,
|
||||
"negPre": "\u00a4\u00a0-",
|
||||
"negPre": "-\u00a4",
|
||||
"negSuf": "",
|
||||
"posPre": "\u00a4\u00a0",
|
||||
"posPre": "\u00a4",
|
||||
"posSuf": ""
|
||||
}
|
||||
]
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user