week method

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

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 't';
  }

  switch (CzechDurationLocale.getPluralization(amount)) {
    case CzechDurationLocalePluralization.one:
      return 'týden';
    case CzechDurationLocalePluralization.few:
      return 'týdny';
    case CzechDurationLocalePluralization.many:
    default:
      return 'týdnů';
  }
}