diseaseVectorsCount method

  1. @override
String diseaseVectorsCount(
  1. int count
)
override

No description provided for @diseaseVectorsCount.

In en, this message translates to: '{count,plural, =0{No known disease} =1{1 disease} other{{count} diseases}}'

Implementation

@override
String diseaseVectorsCount(int count) {
  String _temp0 = intl.Intl.pluralLogic(
    count,
    locale: localeName,
    other: '$count заболеваний',
    many: '$count заболеваний',
    few: '$count заболевания',
    one: '1 заболевание',
    zero: 'Неизвестно',
  );
  return '$_temp0';
}