Skip to content

Commit

Permalink
fix: update zh-cn locale definition of noon (#1278)
Browse files Browse the repository at this point in the history
Changed the definition of “中午”(noon), which is between 11am to 13pm.
  • Loading branch information
JeremyGolf70 authored Dec 17, 2020
1 parent 17221ec commit d5930b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/locale/zh-cn.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 d5930b9

Please sign in to comment.