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