feat(buscar): add discovery landing state, filter pills, counter, and sort
This commit is contained in:
@@ -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';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user