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