countArticles method

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

No description provided for @countArticles.

In en, this message translates to: '{count} {count, plural, one{article} other{articles}}'

Implementation

@override
String countArticles(int count) {
  String _temp0 = intl.Intl.pluralLogic(
    count,
    locale: localeName,
    other: 'člankov',
    few: 'članki',
    one: 'članek',
  );
  return '<strong>$count</strong> $_temp0';
}