Format when time is in months
@override String months(int months) { if (months == 1) { return 'شهر واحد'; } else if (months > 1 && months < 11) { return 'حوالي $months أشهر'; } return '$months أشهر'; }