Skip to content

Commit

Permalink
fix(locale): fix zhCN quarter translation (#2771)
Browse files Browse the repository at this point in the history
Fixed translation for quarters in `format`  in Chinese Simplified locale (`zh-CN`).
  • Loading branch information
07akioni committed Nov 30, 2021
1 parent 75eb760 commit 258845b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/locale/zh-CN/_lib/localize/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ var eraValues = {

var quarterValues = {
narrow: ['1', '2', '3', '4'],
abbreviated: ['第一刻', '第二刻', '第三刻', '第四刻'],
wide: ['第一刻钟', '第二刻钟', '第三刻钟', '第四刻钟']
abbreviated: ['第一季', '第二季', '第三季', '第四季'],
wide: ['第一季度', '第二季度', '第三季度', '第四季度'],
}

var monthValues = {
Expand Down

0 comments on commit 258845b

Please sign in to comment.