feat(buscar): add discovery landing state, filter pills, counter, and sort
This commit is contained in:
@@ -451,6 +451,9 @@ class AppLocalizationsEs extends AppLocalizations {
|
||||
@override
|
||||
String get stationOrderByQuality => 'Por calidad';
|
||||
|
||||
@override
|
||||
String get stationOrderByPopularity => 'Por popularidad';
|
||||
|
||||
@override
|
||||
String get stationOrderScopeDescription =>
|
||||
'Se aplica a favoritos, búsquedas, emisoras cercanas y listados rápidos.';
|
||||
@@ -591,6 +594,28 @@ class AppLocalizationsEs extends AppLocalizations {
|
||||
String get searchNoResultsSubtitle =>
|
||||
'Probá quitar filtros o escribir otro nombre para encontrar una señal activa.';
|
||||
|
||||
@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 => 'España';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user