Skip to content

Commit

Permalink
fix: update zh locale meridiem "noon"
Browse files Browse the repository at this point in the history
  • Loading branch information
iamkun committed Dec 19, 2020
1 parent aaabd80 commit 0e7ff3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/locale/zh.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ const locale = {
return '凌晨'
} else if (hm < 900) {
return '早上'
} else if (hm < 1130) {
} else if (hm < 1100) {
return '上午'
} else if (hm < 1230) {
} else if (hm < 1300) {
return '中午'
} else if (hm < 1800) {
return '下午'
Expand Down

0 comments on commit 0e7ff3d

Please sign in to comment.