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
@@ -436,6 +436,9 @@ class AppLocalizationsZh extends AppLocalizations {
@override
String get stationOrderByQuality => '按质量';
@override
String get stationOrderByPopularity => 'Por popularidad';
@override
String get stationOrderScopeDescription => '适用于收藏、搜索、附近电台和快捷列表。';
@@ -566,6 +569,28 @@ class AppLocalizationsZh extends AppLocalizations {
@override
String get searchNoResultsSubtitle => '尝试减少筛选条件,或换个名称搜索,找到正在播出的电台。';
@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 => '西班牙';