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.9 KiB

'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": [
"\u0c06\u0c26\u0c3f\u0c35\u0c3e\u0c30\u0c02",
"\u0c38\u0c4b\u0c2e\u0c35\u0c3e\u0c30\u0c02",
"\u0c2e\u0c02\u0c17\u0c33\u0c35\u0c3e\u0c30\u0c02",
"\u0c2c\u0c41\u0c27\u0c35\u0c3e\u0c30\u0c02",
"\u0c17\u0c41\u0c30\u0c41\u0c35\u0c3e\u0c30\u0c02",
"\u0c36\u0c41\u0c15\u0c4d\u0c30\u0c35\u0c3e\u0c30\u0c02",
"\u0c36\u0c28\u0c3f\u0c35\u0c3e\u0c30\u0c02"
],
"MONTH": [
"\u0c1c\u0c28\u0c35\u0c30\u0c3f",
"\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f",
"\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
"\u0c0e\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d",
"\u0c2e\u0c47",
"\u0c1c\u0c42\u0c28\u0c4d",
"\u0c1c\u0c41\u0c32\u0c48",
"\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41",
"\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d",
"\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d",
"\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d",
"\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d"
],
"SHORTDAY": [
"\u0c06\u0c26\u0c3f",
"\u0c38\u0c4b\u0c2e",
"\u0c2e\u0c02\u0c17\u0c33",
"\u0c2c\u0c41\u0c27",
"\u0c17\u0c41\u0c30\u0c41",
"\u0c36\u0c41\u0c15\u0c4d\u0c30",
"\u0c36\u0c28\u0c3f"
],
"SHORTMONTH": [
"\u0c1c\u0c28",
"\u0c2b\u0c3f\u0c2c\u0c4d\u0c30",
"\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f",
"\u0c0f\u0c2a\u0c4d\u0c30\u0c3f",
"\u0c2e\u0c47",
"\u0c1c\u0c42\u0c28\u0c4d",
"\u0c1c\u0c41\u0c32\u0c48",
"\u0c06\u0c17",
"\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02",
"\u0c05\u0c15\u0c4d\u0c1f\u0c4b",
"\u0c28\u0c35\u0c02",
"\u0c21\u0c3f\u0c38\u0c46\u0c02"
],
"fullDate": "d MMMM y EEEE",
"longDate": "d MMMM y",
"medium": "d MMM y h:mm:ss a",
"mediumDate": "d MMM y",
"mediumTime": "h:mm:ss a",
"short": "dd-MM-yy h:mm a",
"shortDate": "dd-MM-yy",
"shortTime": "h:mm a"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "\u20b9",
"DECIMAL_SEP": ".",
"GROUP_SEP": ",",
"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-",
"negSuf": "",
"posPre": "\u00a4",
"posSuf": ""
}
]
},
"id": "te-in",
"pluralCat": function (n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
});
}]);