Commit f30563736646c0ba3854d7e1bbd48e991a96f698

Authored by cn.shperry
Committed by GitHub
1 parent 40071529

fix: 中文模式下日期选择框月份及星期异常显示英文 (#1406). (#2053)

Co-authored-by: 舒培培 <622292@ky-tech.com.cn>
src/locales/lang/zh-CN/antdLocale/DatePicker.ts 0 → 100644
  1 +export default {
  2 + lang: {
  3 + shortWeekDays: ['一', '二', '三', '四', '五', '六', '日'],
  4 + shortMonths: [
  5 + '1月',
  6 + '2月',
  7 + '3月',
  8 + '4月',
  9 + '5月',
  10 + '6月',
  11 + '7月',
  12 + '8月',
  13 + '9月',
  14 + '10月',
  15 + '11月',
  16 + '12月',
  17 + ],
  18 + },
  19 +};
... ...