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