feat(buscar): add discovery landing state, filter pills, counter, and sort
This commit is contained in:
@@ -447,6 +447,9 @@ class AppLocalizationsAr extends AppLocalizations {
|
||||
@override
|
||||
String get stationOrderByQuality => 'حسب الجودة';
|
||||
|
||||
@override
|
||||
String get stationOrderByPopularity => 'Por popularidad';
|
||||
|
||||
@override
|
||||
String get stationOrderScopeDescription =>
|
||||
'ينطبق على المفضلات وعمليات البحث والمحطات القريبة والقوائم السريعة.';
|
||||
@@ -586,6 +589,28 @@ class AppLocalizationsAr extends AppLocalizations {
|
||||
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