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
@@ -447,6 +447,9 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get stationOrderByQuality => 'By quality';
@override
String get stationOrderByPopularity => 'By popularity';
@override
String get stationOrderScopeDescription =>
'Applies to favorites, searches, nearby stations and quick lists.';
@@ -587,6 +590,28 @@ class AppLocalizationsEn extends AppLocalizations {
String get searchNoResultsSubtitle =>
'Try removing filters or typing another name to find an active station.';
@override
String searchResultsCount(num count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count results',
one: '1 result',
);
return '$_temp0';
}
@override
String searchClearFiltersAction(num count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: 'Clear $count filters',
one: 'Clear filter',
);
return '$_temp0';
}
@override
String get countrySpain => 'Spain';