Ohm-Management - Projektarbeit B-ME
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.

zh-hk.js 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. //! moment.js locale configuration
  2. ;(function (global, factory) {
  3. typeof exports === 'object' && typeof module !== 'undefined'
  4. && typeof require === 'function' ? factory(require('../moment')) :
  5. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  6. factory(global.moment)
  7. }(this, (function (moment) { 'use strict';
  8. var zhHk = moment.defineLocale('zh-hk', {
  9. months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),
  10. monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
  11. weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
  12. weekdaysShort : '週日_週一_週二_週三_週四_週五_週六'.split('_'),
  13. weekdaysMin : '日_一_二_三_四_五_六'.split('_'),
  14. longDateFormat : {
  15. LT : 'HH:mm',
  16. LTS : 'HH:mm:ss',
  17. L : 'YYYY/MM/DD',
  18. LL : 'YYYY年M月D日',
  19. LLL : 'YYYY年M月D日 HH:mm',
  20. LLLL : 'YYYY年M月D日dddd HH:mm',
  21. l : 'YYYY/M/D',
  22. ll : 'YYYY年M月D日',
  23. lll : 'YYYY年M月D日 HH:mm',
  24. llll : 'YYYY年M月D日dddd HH:mm'
  25. },
  26. meridiemParse: /凌晨|早上|上午|中午|下午|晚上/,
  27. meridiemHour : function (hour, meridiem) {
  28. if (hour === 12) {
  29. hour = 0;
  30. }
  31. if (meridiem === '凌晨' || meridiem === '早上' || meridiem === '上午') {
  32. return hour;
  33. } else if (meridiem === '中午') {
  34. return hour >= 11 ? hour : hour + 12;
  35. } else if (meridiem === '下午' || meridiem === '晚上') {
  36. return hour + 12;
  37. }
  38. },
  39. meridiem : function (hour, minute, isLower) {
  40. var hm = hour * 100 + minute;
  41. if (hm < 600) {
  42. return '凌晨';
  43. } else if (hm < 900) {
  44. return '早上';
  45. } else if (hm < 1130) {
  46. return '上午';
  47. } else if (hm < 1230) {
  48. return '中午';
  49. } else if (hm < 1800) {
  50. return '下午';
  51. } else {
  52. return '晚上';
  53. }
  54. },
  55. calendar : {
  56. sameDay : '[今天]LT',
  57. nextDay : '[明天]LT',
  58. nextWeek : '[下]ddddLT',
  59. lastDay : '[昨天]LT',
  60. lastWeek : '[上]ddddLT',
  61. sameElse : 'L'
  62. },
  63. dayOfMonthOrdinalParse: /\d{1,2}(日|月|週)/,
  64. ordinal : function (number, period) {
  65. switch (period) {
  66. case 'd' :
  67. case 'D' :
  68. case 'DDD' :
  69. return number + '日';
  70. case 'M' :
  71. return number + '月';
  72. case 'w' :
  73. case 'W' :
  74. return number + '週';
  75. default :
  76. return number;
  77. }
  78. },
  79. relativeTime : {
  80. future : '%s內',
  81. past : '%s前',
  82. s : '幾秒',
  83. ss : '%d 秒',
  84. m : '1 分鐘',
  85. mm : '%d 分鐘',
  86. h : '1 小時',
  87. hh : '%d 小時',
  88. d : '1 天',
  89. dd : '%d 天',
  90. M : '1 個月',
  91. MM : '%d 個月',
  92. y : '1 年',
  93. yy : '%d 年'
  94. }
  95. });
  96. return zhHk;
  97. })));