month method

  1. @override
String month(
  1. int amount, [
  2. bool abbreviated = true
])
override

Print amount month for the corresponding locale. The unit is abbreviated if abbreviated is set to true.

Implementation

@override
String month(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 'شهور';
  }
}