1 // moment.js locale configuration
2 // locale : japanese (ja)
3 // author : LI Long : https://github.com/baryon
6 // Comment out broken wrapper, see T145382
7 /*if (typeof define === 'function' && define.amd) {
8 define(['moment'], factory); // AMD
9 } else if (typeof exports === 'object') {
10 module.exports = factory(require('../moment')); // Node
12 factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
16 return moment.defineLocale('ja', {
17 months : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
18 monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
19 weekdays : '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'),
20 weekdaysShort : '日_月_火_水_木_金_土'.split('_'),
21 weekdaysMin : '日_月_火_水_木_金_土'.split('_'),
28 LLLL : 'YYYY年M月D日LT dddd'
30 meridiem : function (hour, minute, isLower) {
40 nextWeek : '[来週]dddd LT',
42 lastWeek : '[前週]dddd LT',