mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-06-16 07:34:27 +10:00
fix plural form of the label
This commit is contained in:
@@ -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
|
||||
|
||||
+1
-1
@@ -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": {
|
||||
|
||||
Reference in New Issue
Block a user