webogram-i2p/app/vendor/angular/i18n/angular-locale_zh-hk.js

126 lines
2.5 KiB
JavaScript
Raw Normal View History

2014-01-05 16:07:11 +00:00
'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": [
"\u4e0a\u5348",
"\u4e0b\u5348"
],
"DAY": [
"\u661f\u671f\u65e5",
"\u661f\u671f\u4e00",
"\u661f\u671f\u4e8c",
"\u661f\u671f\u4e09",
"\u661f\u671f\u56db",
"\u661f\u671f\u4e94",
"\u661f\u671f\u516d"
],
2015-10-01 17:06:16 +00:00
"ERANAMES": [
"\u516c\u5143\u524d",
"\u516c\u5143"
],
"ERAS": [
2019-05-09 19:56:23 +00:00
"\u516c\u5143\u524d",
"\u516c\u5143"
2015-10-01 17:06:16 +00:00
],
"FIRSTDAYOFWEEK": 6,
2014-01-05 16:07:11 +00:00
"MONTH": [
"1\u6708",
"2\u6708",
"3\u6708",
"4\u6708",
"5\u6708",
"6\u6708",
"7\u6708",
"8\u6708",
"9\u6708",
"10\u6708",
"11\u6708",
"12\u6708"
],
"SHORTDAY": [
"\u9031\u65e5",
"\u9031\u4e00",
"\u9031\u4e8c",
"\u9031\u4e09",
"\u9031\u56db",
"\u9031\u4e94",
"\u9031\u516d"
],
"SHORTMONTH": [
"1\u6708",
"2\u6708",
"3\u6708",
"4\u6708",
"5\u6708",
"6\u6708",
"7\u6708",
"8\u6708",
"9\u6708",
"10\u6708",
"11\u6708",
"12\u6708"
],
2016-06-16 16:39:05 +00:00
"STANDALONEMONTH": [
"1\u6708",
"2\u6708",
"3\u6708",
"4\u6708",
"5\u6708",
"6\u6708",
"7\u6708",
"8\u6708",
"9\u6708",
"10\u6708",
"11\u6708",
"12\u6708"
],
2015-10-01 17:06:16 +00:00
"WEEKENDRANGE": [
5,
6
],
2014-01-05 16:07:11 +00:00
"fullDate": "y\u5e74M\u6708d\u65e5EEEE",
"longDate": "y\u5e74M\u6708d\u65e5",
"medium": "y\u5e74M\u6708d\u65e5 ah:mm:ss",
2014-01-05 16:07:11 +00:00
"mediumDate": "y\u5e74M\u6708d\u65e5",
"mediumTime": "ah:mm:ss",
2019-05-09 19:56:23 +00:00
"short": "d/M/y ah:mm",
"shortDate": "d/M/y",
2014-01-05 16:07:11 +00:00
"shortTime": "ah:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "$",
"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,
2015-10-01 17:06:16 +00:00
"negPre": "-\u00a4",
"negSuf": "",
2014-01-05 16:07:11 +00:00
"posPre": "\u00a4",
"posSuf": ""
}
]
},
"id": "zh-hk",
2016-06-16 16:39:05 +00:00
"localeID": "zh_HK",
2014-11-11 10:55:03 +00:00
"pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;}
2014-01-05 16:07:11 +00:00
});
2014-11-11 10:55:03 +00:00
}]);