Telegram Web, preconfigured for usage in I2P.
http://web.telegram.i2p/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.3 KiB
99 lines
2.3 KiB
10 years ago
|
'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": [
|
||
|
"AM",
|
||
|
"PM"
|
||
|
],
|
||
|
"DAY": [
|
||
|
"Sul",
|
||
|
"Lun",
|
||
|
"Meurzh",
|
||
|
"Merc\u02bcher",
|
||
|
"Yaou",
|
||
|
"Gwener",
|
||
|
"Sadorn"
|
||
|
],
|
||
|
"MONTH": [
|
||
|
"Genver",
|
||
|
"C\u02bchwevrer",
|
||
|
"Meurzh",
|
||
|
"Ebrel",
|
||
|
"Mae",
|
||
|
"Mezheven",
|
||
|
"Gouere",
|
||
|
"Eost",
|
||
|
"Gwengolo",
|
||
|
"Here",
|
||
|
"Du",
|
||
|
"Kerzu"
|
||
|
],
|
||
|
"SHORTDAY": [
|
||
|
"sul",
|
||
|
"lun",
|
||
|
"meu.",
|
||
|
"mer.",
|
||
|
"yaou",
|
||
|
"gwe.",
|
||
|
"sad."
|
||
|
],
|
||
|
"SHORTMONTH": [
|
||
|
"Gen",
|
||
|
"C\u02bchwe",
|
||
|
"Meur",
|
||
|
"Ebr",
|
||
|
"Mae",
|
||
|
"Mezh",
|
||
|
"Goue",
|
||
|
"Eost",
|
||
|
"Gwen",
|
||
|
"Here",
|
||
|
"Du",
|
||
|
"Ker"
|
||
|
],
|
||
|
"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": "\u20ac",
|
||
|
"DECIMAL_SEP": ",",
|
||
|
"GROUP_SEP": "\u00a0",
|
||
|
"PATTERNS": [
|
||
|
{
|
||
|
"gSize": 3,
|
||
|
"lgSize": 3,
|
||
|
"macFrac": 0,
|
||
|
"maxFrac": 3,
|
||
|
"minFrac": 0,
|
||
|
"minInt": 1,
|
||
|
"negPre": "-",
|
||
|
"negSuf": "",
|
||
|
"posPre": "",
|
||
|
"posSuf": ""
|
||
|
},
|
||
|
{
|
||
|
"gSize": 3,
|
||
|
"lgSize": 3,
|
||
|
"macFrac": 0,
|
||
|
"maxFrac": 2,
|
||
|
"minFrac": 2,
|
||
|
"minInt": 1,
|
||
|
"negPre": "\u00a4\u00a0-",
|
||
|
"negSuf": "",
|
||
|
"posPre": "\u00a4\u00a0",
|
||
|
"posSuf": ""
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"id": "br",
|
||
|
"pluralCat": function (n, opt_precision) { if (n % 10 == 1 && n % 100 != 11 && n % 100 != 71 && n % 100 != 91) { return PLURAL_CATEGORY.ONE; } if (n % 10 == 2 && n % 100 != 12 && n % 100 != 72 && n % 100 != 92) { return PLURAL_CATEGORY.TWO; } if ((n % 10 >= 3 && n % 10 <= 4 || n % 10 == 9) && (n % 100 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) { return PLURAL_CATEGORY.FEW; } if (n != 0 && n % 1000000 == 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;}
|
||
|
});
|
||
|
}]);
|