Skip to content

Commit

Permalink
fix: fix Advanced format bug in zh-cn
Browse files Browse the repository at this point in the history
close #242
  • Loading branch information
iamkun committed Jun 14, 2018
1 parent 0e0ca89 commit 0c07874
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/locale/zh-cn.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const locale = {
weekdaysMin: '日_一_二_三_四_五_六'.split('_'),
months: '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),
monthsShort: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
ordinal: n => n,
ordinal: n => `${n}日`,
relativeTime: {
future: '%s内',
past: '%s前',
Expand Down
2 changes: 1 addition & 1 deletion src/locale/zh-tw.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const locale = {
weekdaysMin: '日_一_二_三_四_五_六'.split('_'),
months: '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),
monthsShort: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
ordinal: n => n,
ordinal: n => `${n}日`,
relativeTime: {
future: '%s內',
past: '%s前',
Expand Down

0 comments on commit 0c07874

Please sign in to comment.