feat(buscar): add discovery landing state, filter pills, counter, and sort

This commit is contained in:
2026-07-29 08:45:36 +02:00
parent 3a803ce2bf
commit 9bd828139f
29 changed files with 1789 additions and 655 deletions
+25
View File
@@ -451,6 +451,9 @@ class AppLocalizationsIt extends AppLocalizations {
@override
String get stationOrderByQuality => 'Per qualità';
@override
String get stationOrderByPopularity => 'Por popularidad';
@override
String get stationOrderScopeDescription =>
'Si applica a preferiti, ricerche, emittenti vicine ed elenchi rapidi.';
@@ -591,6 +594,28 @@ class AppLocalizationsIt extends AppLocalizations {
String get searchNoResultsSubtitle =>
'Prova a rimuovere i filtri o a digitare un altro nome per trovare un\'emittente attiva.';
@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 => 'Spagna';