Format when time is in months
@override String months(int months) { if (months == 1) { return '1 měsícem'; } else if (months > 1 && months < 5) { return '$months měsíci'; } return '$months měsíci'; }