feat(buscar): add discovery landing state, filter pills, counter, and sort
This commit is contained in:
@@ -449,6 +449,9 @@ class AppLocalizationsId extends AppLocalizations {
|
||||
@override
|
||||
String get stationOrderByQuality => 'Berdasarkan kualitas';
|
||||
|
||||
@override
|
||||
String get stationOrderByPopularity => 'Por popularidad';
|
||||
|
||||
@override
|
||||
String get stationOrderScopeDescription =>
|
||||
'Berlaku untuk favorit, pencarian, stasiun terdekat, dan daftar cepat.';
|
||||
@@ -589,6 +592,28 @@ class AppLocalizationsId extends AppLocalizations {
|
||||
String get searchNoResultsSubtitle =>
|
||||
'Coba hapus filter atau tulis nama lain untuk menemukan sinyal aktif.';
|
||||
|
||||
@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 => 'Spanyol';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user