Skip to content

Commit d5930b9

Browse files
authored
fix: update zh-cn locale definition of noon (#1278)
Changed the definition of “中午”(noon), which is between 11am to 13pm.
1 parent 17221ec commit d5930b9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/locale/zh-cn.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ const locale = {
5151
return '凌晨'
5252
} else if (hm < 900) {
5353
return '早上'
54-
} else if (hm < 1130) {
54+
} else if (hm < 1100) {
5555
return '上午'
56-
} else if (hm < 1230) {
56+
} else if (hm < 1300) {
5757
return '中午'
5858
} else if (hm < 1800) {
5959
return '下午'

0 commit comments

Comments
 (0)