mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-09 01:17:04 +03:00
Move almost all libs to node_modules
Update libs
This commit is contained in:
parent
b895c6ac1a
commit
c3985da102
374 changed files with 17466 additions and 83393 deletions
|
|
@ -1,34 +1,38 @@
|
|||
// moment.js language configuration
|
||||
// language : japanese (ja)
|
||||
// author : LI Long : https://github.com/baryon
|
||||
//! moment.js locale configuration
|
||||
//! locale : Japanese [ja]
|
||||
//! author : LI Long : https://github.com/baryon
|
||||
|
||||
(function (factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
define(['moment'], factory); // AMD
|
||||
} else if (typeof exports === 'object') {
|
||||
module.exports = factory(require('../moment')); // Node
|
||||
} else {
|
||||
factory(window.moment); // Browser global
|
||||
}
|
||||
}(function (moment) {
|
||||
return moment.lang('ja', {
|
||||
months : "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),
|
||||
monthsShort : "1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),
|
||||
weekdays : "日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"),
|
||||
weekdaysShort : "日_月_火_水_木_金_土".split("_"),
|
||||
weekdaysMin : "日_月_火_水_木_金_土".split("_"),
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
|
||||
|
||||
var ja = moment.defineLocale('ja', {
|
||||
months : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
|
||||
monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
|
||||
weekdays : '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'),
|
||||
weekdaysShort : '日_月_火_水_木_金_土'.split('_'),
|
||||
weekdaysMin : '日_月_火_水_木_金_土'.split('_'),
|
||||
longDateFormat : {
|
||||
LT : "Ah時m分",
|
||||
L : "YYYY/MM/DD",
|
||||
LL : "YYYY年M月D日",
|
||||
LLL : "YYYY年M月D日LT",
|
||||
LLLL : "YYYY年M月D日LT dddd"
|
||||
LT : 'Ah時m分',
|
||||
LTS : 'Ah時m分s秒',
|
||||
L : 'YYYY/MM/DD',
|
||||
LL : 'YYYY年M月D日',
|
||||
LLL : 'YYYY年M月D日Ah時m分',
|
||||
LLLL : 'YYYY年M月D日Ah時m分 dddd'
|
||||
},
|
||||
meridiemParse: /午前|午後/i,
|
||||
isPM : function (input) {
|
||||
return input === '午後';
|
||||
},
|
||||
meridiem : function (hour, minute, isLower) {
|
||||
if (hour < 12) {
|
||||
return "午前";
|
||||
return '午前';
|
||||
} else {
|
||||
return "午後";
|
||||
return '午後';
|
||||
}
|
||||
},
|
||||
calendar : {
|
||||
|
|
@ -39,20 +43,34 @@
|
|||
lastWeek : '[前週]dddd LT',
|
||||
sameElse : 'L'
|
||||
},
|
||||
ordinalParse : /\d{1,2}日/,
|
||||
ordinal : function (number, period) {
|
||||
switch (period) {
|
||||
case 'd':
|
||||
case 'D':
|
||||
case 'DDD':
|
||||
return number + '日';
|
||||
default:
|
||||
return number;
|
||||
}
|
||||
},
|
||||
relativeTime : {
|
||||
future : "%s後",
|
||||
past : "%s前",
|
||||
s : "数秒",
|
||||
m : "1分",
|
||||
mm : "%d分",
|
||||
h : "1時間",
|
||||
hh : "%d時間",
|
||||
d : "1日",
|
||||
dd : "%d日",
|
||||
M : "1ヶ月",
|
||||
MM : "%dヶ月",
|
||||
y : "1年",
|
||||
yy : "%d年"
|
||||
future : '%s後',
|
||||
past : '%s前',
|
||||
s : '数秒',
|
||||
m : '1分',
|
||||
mm : '%d分',
|
||||
h : '1時間',
|
||||
hh : '%d時間',
|
||||
d : '1日',
|
||||
dd : '%d日',
|
||||
M : '1ヶ月',
|
||||
MM : '%dヶ月',
|
||||
y : '1年',
|
||||
yy : '%d年'
|
||||
}
|
||||
});
|
||||
}));
|
||||
|
||||
return ja;
|
||||
|
||||
}));
|
||||
Loading…
Add table
Add a link
Reference in a new issue