fix plural form of the label

This commit is contained in:
thesebas
2026-03-19 10:03:16 +01:00
parent dc57f9b9c0
commit 5140ff383d
2 changed files with 10 additions and 2 deletions
+9 -1
View File
@@ -876,7 +876,15 @@ class AppLocalizationsPl extends AppLocalizations {
@override @override
String contacts_searchContacts(int number, String str) { 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 @override
+1 -1
View File
@@ -257,7 +257,7 @@
"contacts_title": "Kontakty", "contacts_title": "Kontakty",
"contacts_noContacts": "Brak jeszcze kontaktów.", "contacts_noContacts": "Brak jeszcze kontaktów.",
"contacts_contactsWillAppear": "Kontakty będą wyświetlane, gdy urządzenia nadają rozgłoszenia.", "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": { "@contacts_searchContacts": {
"placeholders": { "placeholders": {
"number": { "number": {