From 77b12f12a41f50ece292f859cf868d3cc81235a0 Mon Sep 17 00:00:00 2001 From: SaeedDev94 Date: Wed, 19 Mar 2025 03:19:06 -0700 Subject: [PATCH] CalendarUtils#getDayNames(): normalize labels --- src/CalendarUtils.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CalendarUtils.php b/src/CalendarUtils.php index aa288a8..ae523e8 100644 --- a/src/CalendarUtils.php +++ b/src/CalendarUtils.php @@ -625,7 +625,7 @@ private static function getDayNames($day, $shorten = false, $len = 1, $numeric = break; case 'tue': case 'tuesday': - $ret = 'سه‌شنبه'; + $ret = 'سه شنبه'; $n = 4; break; case 'wed': @@ -635,7 +635,7 @@ private static function getDayNames($day, $shorten = false, $len = 1, $numeric = break; case 'thu': case 'thursday': - $ret = 'پنج‌شنبه'; + $ret = 'پنج شنبه'; $n = 6; break; case 'fri':