From 1f0c0f1384a28bab7169ebd261fd6a1825a5e96f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ng=C3=B4=20Qu=E1=BB=91c=20=C4=90=E1=BA=A1t?= Date: Sun, 31 Mar 2024 03:19:34 +0700 Subject: [PATCH] Update --- locale/config.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/locale/config.js b/locale/config.js index badc12b..b6ae128 100644 --- a/locale/config.js +++ b/locale/config.js @@ -1,6 +1,4 @@ -// https://github.com/iamkun/dayjs/blob/v1.9.3/src/locale/vi.js - -dayjs.locale({ +const locale = { name: 'vi', weekdays: 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split('_'), months: 'tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12'.split('_'), @@ -35,6 +33,7 @@ dayjs.locale({ MM: '%d tháng', y: 'một năm', yy: '%d năm' - }, - ordinal: n => `${n}.` -}, null, false); \ No newline at end of file + } +} + +dayjs.locale(locale, null, true)