feat(buscar): add discovery landing state, filter pills, counter, and sort
This commit is contained in:
@@ -448,6 +448,9 @@ class AppLocalizationsHi extends AppLocalizations {
|
||||
@override
|
||||
String get stationOrderByQuality => 'गुणवत्ता से';
|
||||
|
||||
@override
|
||||
String get stationOrderByPopularity => 'Por popularidad';
|
||||
|
||||
@override
|
||||
String get stationOrderScopeDescription =>
|
||||
'पसंदीदा, खोज, पास के स्टेशन और त्वरित सूचियों पर लागू होता है।';
|
||||
@@ -588,6 +591,28 @@ class AppLocalizationsHi extends AppLocalizations {
|
||||
String get searchNoResultsSubtitle =>
|
||||
'सक्रिय सिग्नल पाने के लिए फ़िल्टर हटाएँ या कोई दूसरा नाम लिखें।';
|
||||
|
||||
@override
|
||||
String searchResultsCount(num count) {
|
||||
String _temp0 = intl.Intl.pluralLogic(
|
||||
count,
|
||||
locale: localeName,
|
||||
other: '$count resultados',
|
||||
one: '1 resultado',
|
||||
);
|
||||
return '$_temp0';
|
||||
}
|
||||
|
||||
@override
|
||||
String searchClearFiltersAction(num count) {
|
||||
String _temp0 = intl.Intl.pluralLogic(
|
||||
count,
|
||||
locale: localeName,
|
||||
other: 'Quitar los $count filtros',
|
||||
one: 'Quitar el filtro',
|
||||
);
|
||||
return '$_temp0';
|
||||
}
|
||||
|
||||
@override
|
||||
String get countrySpain => 'स्पेन';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user