diff options
Diffstat (limited to 'node_modules/moment/src/locale/zh-cn.js')
-rw-r--r-- | node_modules/moment/src/locale/zh-cn.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/node_modules/moment/src/locale/zh-cn.js b/node_modules/moment/src/locale/zh-cn.js index 662f3047c..d9e6e7e2a 100644 --- a/node_modules/moment/src/locale/zh-cn.js +++ b/node_modules/moment/src/locale/zh-cn.js @@ -14,14 +14,14 @@ export default moment.defineLocale('zh-cn', { longDateFormat : { LT : 'HH:mm', LTS : 'HH:mm:ss', - L : 'YYYY年MMMD日', - LL : 'YYYY年MMMD日', - LLL : 'YYYY年MMMD日Ah点mm分', - LLLL : 'YYYY年MMMD日ddddAh点mm分', - l : 'YYYY年MMMD日', - ll : 'YYYY年MMMD日', - lll : 'YYYY年MMMD日 HH:mm', - llll : 'YYYY年MMMD日dddd HH:mm' + L : 'YYYY/MM/DD', + LL : 'YYYY年M月D日', + LLL : 'YYYY年M月D日Ah点mm分', + LLLL : 'YYYY年M月D日ddddAh点mm分', + l : 'YYYY/M/D', + ll : 'YYYY年M月D日', + lll : 'YYYY年M月D日 HH:mm', + llll : 'YYYY年M月D日dddd HH:mm' }, meridiemParse: /凌晨|早上|上午|中午|下午|晚上/, meridiemHour: function (hour, meridiem) { @@ -82,6 +82,7 @@ export default moment.defineLocale('zh-cn', { future : '%s内', past : '%s前', s : '几秒', + ss : '%d 秒', m : '1 分钟', mm : '%d 分钟', h : '1 小时', @@ -99,4 +100,3 @@ export default moment.defineLocale('zh-cn', { doy : 4 // The week that contains Jan 4th is the first week of the year. } }); - |