fix plural form of the label

chore/offband-rebrand
thesebas 4 months ago
parent dc57f9b9c0
commit 5140ff383d

@ -876,7 +876,15 @@ class AppLocalizationsPl extends AppLocalizations {
@override
String contacts_searchContacts(int number, String str) {
return 'Wyszukaj $number$str kontakty...';
String _temp0 = intl.Intl.pluralLogic(
number,
locale: localeName,
other: 'kontaktu',
many: 'kontaktów',
few: 'kontakty',
one: 'kontakt',
);
return 'Wyszukaj $number$str $_temp0...';
}
@override

@ -257,7 +257,7 @@
"contacts_title": "Kontakty",
"contacts_noContacts": "Brak jeszcze kontaktów.",
"contacts_contactsWillAppear": "Kontakty będą wyświetlane, gdy urządzenia nadają rozgłoszenia.",
"contacts_searchContacts": "Wyszukaj {number}{str} kontakty...",
"contacts_searchContacts": "Wyszukaj {number}{str} {number, plural, one{kontakt} few{kontakty} many{kontaktów} other{kontaktu}}...",
"@contacts_searchContacts": {
"placeholders": {
"number": {

Loading…
Cancel
Save

Powered by TurnKey Linux.