month method
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 'měs.';
}
switch (CzechDurationLocale.getPluralization(amount)) {
case CzechDurationLocalePluralization.one:
return 'měsíc';
case CzechDurationLocalePluralization.few:
return 'měsíce';
case CzechDurationLocalePluralization.many:
default:
return 'měsíců';
}
}