feat(buscar): add discovery landing state, filter pills, counter, and sort
This commit is contained in:
@@ -453,6 +453,9 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
@override
|
||||
String get stationOrderByQuality => 'Nach Qualität';
|
||||
|
||||
@override
|
||||
String get stationOrderByPopularity => 'Por popularidad';
|
||||
|
||||
@override
|
||||
String get stationOrderScopeDescription =>
|
||||
'Gilt für Favoriten, Suchen, nahegelegene Sender und Schnelllisten.';
|
||||
@@ -593,6 +596,28 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
String get searchNoResultsSubtitle =>
|
||||
'Versuche, Filter zu entfernen oder einen anderen Namen einzugeben, um einen aktiven Sender zu finden.';
|
||||
|
||||
@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 => 'Spanien';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user