From 7e995c502307d0096b33f000bc41da6521cdc5e9 Mon Sep 17 00:00:00 2001 From: Amir Maghami Date: Wed, 10 Dec 2025 17:52:25 +0330 Subject: [PATCH] feat: add shortMonths and shortWeekDays to fa_IR locale for vc-picker --- components/vc-picker/locale/fa_IR.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/vc-picker/locale/fa_IR.ts b/components/vc-picker/locale/fa_IR.ts index f7e1af3b5f..fdad62566e 100644 --- a/components/vc-picker/locale/fa_IR.ts +++ b/components/vc-picker/locale/fa_IR.ts @@ -27,6 +27,12 @@ const locale: Locale = { nextDecade: 'دهه بعد', previousCentury: 'قرن قبل', nextCentury: 'قرن بعد', + shortMonths: [ + 'فروردین', 'اردیبهشت', 'خرداد', 'تیر', + 'مرداد', 'شهریور', 'مهر', 'آبان', + 'آذر', 'دی', 'بهمن', 'اسفند' + ], + shortWeekDays: ['ش', 'ی', 'د', 'س', 'چ', 'پ', 'ج'], }; export default locale;