week method
Print amount
week for the corresponding locale. The unit is abbreviated
if abbreviated
is set to true.
Implementation
@override
String week(int amount, [bool abbreviated = true]) {
if (abbreviated) {
return 'أ';
} else {
if (amount == 1) {
return 'أسبوع';
} else if (amount == 2) {
return 'اسبوعين';
} else if (amount > 2 && amount < 11) {
return 'اسابيع';
} else if (amount > 10) {
return 'أسبوع';
}
return 'اسابيع';
}
}