1 //! moment.js locale configuration
2 //! locale : Japanese [ja]
3 //! author : LI Long : https://github.com/baryon
5 ;(function (global
, factory
) {
6 typeof exports
=== 'object' && typeof module
!== 'undefined'
7 && typeof require
=== 'function' ? factory(require('../moment')) :
8 typeof define
=== 'function' && define
.amd
? define(['../moment'], factory
) :
10 }(this, function (moment
) { 'use strict';
13 var ja
= moment
.defineLocale('ja', {
14 months
: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
15 monthsShort
: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
16 weekdays
: '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'),
17 weekdaysShort
: '日_月_火_水_木_金_土'.split('_'),
18 weekdaysMin
: '日_月_火_水_木_金_土'.split('_'),
24 LLL
: 'YYYY年M月D日Ah時m分',
25 LLLL
: 'YYYY年M月D日Ah時m分 dddd'
27 meridiemParse
: /午前|午後/i,
28 isPM : function (input
) {
29 return input
=== '午後';
31 meridiem : function (hour
, minute
, isLower
) {
41 nextWeek
: '[来週]dddd LT',
43 lastWeek
: '[前週]dddd LT',
46 ordinalParse
: /\d{1,2}日/,
47 ordinal : function (number
, period
) {