From f30563736646c0ba3854d7e1bbd48e991a96f698 Mon Sep 17 00:00:00 2001 From: "cn.shperry" Date: Sun, 10 Jul 2022 18:26:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=B8=AD=E6=96=87=E6=A8=A1=E5=BC=8F?= =?UTF-8?q?=E4=B8=8B=E6=97=A5=E6=9C=9F=E9=80=89=E6=8B=A9=E6=A1=86=E6=9C=88?= =?UTF-8?q?=E4=BB=BD=E5=8F=8A=E6=98=9F=E6=9C=9F=E5=BC=82=E5=B8=B8=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E8=8B=B1=E6=96=87=20(#1406).=20(#2053)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 舒培培 <622292@ky-tech.com.cn> --- .../lang/zh-CN/antdLocale/DatePicker.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/locales/lang/zh-CN/antdLocale/DatePicker.ts diff --git a/src/locales/lang/zh-CN/antdLocale/DatePicker.ts b/src/locales/lang/zh-CN/antdLocale/DatePicker.ts new file mode 100644 index 000000000..452dff022 --- /dev/null +++ b/src/locales/lang/zh-CN/antdLocale/DatePicker.ts @@ -0,0 +1,19 @@ +export default { + lang: { + shortWeekDays: ['一', '二', '三', '四', '五', '六', '日'], + shortMonths: [ + '1月', + '2月', + '3月', + '4月', + '5月', + '6月', + '7月', + '8月', + '9月', + '10月', + '11月', + '12月', + ], + }, +};