fix(sms): prefix course time with ساعت
SMS courseTime now reads «از ساعت 19 تا 21» instead of «از 19 تا 21».
This commit is contained in:
@@ -24,7 +24,7 @@ const formatCourseTime = (startTime, endTime) => {
|
||||
const end = formatClockPart(endTime);
|
||||
if (!start) return '';
|
||||
if (!end) return start;
|
||||
return `از ${start} تا ${end}`;
|
||||
return `از ساعت ${start} تا ${end}`;
|
||||
};
|
||||
|
||||
const weekdayIndex = (value) => {
|
||||
|
||||
Reference in New Issue
Block a user