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": [
"\u0cb0\u0cb5\u0cbf\u0cb5\u0cbe\u0cb0",
"\u0cb8\u0ccb\u0cae\u0cb5\u0cbe\u0cb0",
"\u0cae\u0c82\u0c97\u0cb3\u0cb5\u0cbe\u0cb0",
"\u0cac\u0cc1\u0ca7\u0cb5\u0cbe\u0cb0",
"\u0c97\u0cc1\u0cb0\u0cc1\u0cb5\u0cbe\u0cb0",
"\u0cb6\u0cc1\u0c95\u0ccd\u0cb0\u0cb5\u0cbe\u0cb0",
"\u0cb6\u0ca8\u0cbf\u0cb5\u0cbe\u0cb0"
],
"MONTH": [
"\u0c9c\u0ca8\u0cb5\u0cb0\u0cc0",
"\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cc0",
"\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
"\u0c8e\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
"\u0cae\u0cc6",
"\u0c9c\u0cc2\u0ca8\u0ccd",
"\u0c9c\u0cc1\u0cb2\u0cc8",
"\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
"\u0cb8\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
"\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
"\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
"\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
],
"SHORTDAY": [
"\u0cb0.",
"\u0cb8\u0ccb.",
"\u0cae\u0c82.",
"\u0cac\u0cc1.",
"\u0c97\u0cc1.",
"\u0cb6\u0cc1.",
"\u0cb6\u0ca8\u0cbf."
],
"SHORTMONTH": [
"\u0c9c\u0ca8\u0cb5\u0cb0\u0cc0",
"\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cc0",
"\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd",
"\u0c8e\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd",
"\u0cae\u0cc6",
"\u0c9c\u0cc2\u0ca8\u0ccd",
"\u0c9c\u0cc1\u0cb2\u0cc8",
"\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd",
"\u0cb8\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
"\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd",
"\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd",
"\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd"
],
"fullDate": "EEEE d MMMM y",
"longDate": "d MMMM y",
"medium": "d MMM y hh:mm:ss a",
"mediumDate": "d MMM y",
"mediumTime": "hh:mm:ss a",
"short": "d-M-yy hh:mm a",
"shortDate": "d-M-yy",
"shortTime": "hh: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": "kn-in",
"pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
});
}]);