ja.js 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. //! moment.js locale configuration
  2. //! locale : japanese (ja)
  3. //! author : LI Long : https://github.com/baryon
  4. ;(function (global, factory) {
  5. typeof exports === 'object' && typeof module !== 'undefined'
  6. && typeof require === 'function' ? factory(require('../moment')) :
  7. typeof define === 'function' && define.amd ? define(['moment'], factory) :
  8. factory(global.moment)
  9. }(this, function (moment) { 'use strict';
  10. var ja = moment.defineLocale('ja', {
  11. months : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
  12. monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
  13. weekdays : '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'),
  14. weekdaysShort : '日_月_火_水_木_金_土'.split('_'),
  15. weekdaysMin : '日_月_火_水_木_金_土'.split('_'),
  16. longDateFormat : {
  17. LT : 'Ah時m分',
  18. LTS : 'Ah時m分s秒',
  19. L : 'YYYY/MM/DD',
  20. LL : 'YYYY年M月D日',
  21. LLL : 'YYYY年M月D日Ah時m分',
  22. LLLL : 'YYYY年M月D日Ah時m分 dddd'
  23. },
  24. meridiemParse: /午前|午後/i,
  25. isPM : function (input) {
  26. return input === '午後';
  27. },
  28. meridiem : function (hour, minute, isLower) {
  29. if (hour < 12) {
  30. return '午前';
  31. } else {
  32. return '午後';
  33. }
  34. },
  35. calendar : {
  36. sameDay : '[今日] LT',
  37. nextDay : '[明日] LT',
  38. nextWeek : '[来週]dddd LT',
  39. lastDay : '[昨日] LT',
  40. lastWeek : '[前週]dddd LT',
  41. sameElse : 'L'
  42. },
  43. ordinalParse : /\d{1,2}日/,
  44. ordinal : function (number, period) {
  45. switch (period) {
  46. case 'd':
  47. case 'D':
  48. case 'DDD':
  49. return number + '日';
  50. default:
  51. return number;
  52. }
  53. },
  54. relativeTime : {
  55. future : '%s後',
  56. past : '%s前',
  57. s : '数秒',
  58. m : '1分',
  59. mm : '%d分',
  60. h : '1時間',
  61. hh : '%d時間',
  62. d : '1日',
  63. dd : '%d日',
  64. M : '1ヶ月',
  65. MM : '%dヶ月',
  66. y : '1年',
  67. yy : '%d年'
  68. }
  69. });
  70. return ja;
  71. }));