File tree Expand file tree Collapse file tree 5 files changed +44
-2
lines changed
Expand file tree Collapse file tree 5 files changed +44
-2
lines changed Original file line number Diff line number Diff line change @@ -2701,6 +2701,18 @@ abstract class AppLocalizations {
27012701 /// In en, this message translates to:
27022702 /// **'Select Headquarters'**
27032703 String get selectHeadquarters;
2704+
2705+ /// Text for the button to reset filters to their default state.
2706+ ///
2707+ /// In en, this message translates to:
2708+ /// **'Reset Filters'**
2709+ String get resetFiltersButtonText;
2710+
2711+ /// Message displayed when no results are found due to active filters, prompting the user to reset them.
2712+ ///
2713+ /// In en, this message translates to:
2714+ /// **'No results found with current filters. Try resetting them.'**
2715+ String get noResultsWithCurrentFilters;
27042716}
27052717
27062718class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -1441,4 +1441,11 @@ class AppLocalizationsAr extends AppLocalizations {
14411441
14421442 @override
14431443 String get selectHeadquarters => 'اختر المقر الرئيسي' ;
1444+
1445+ @override
1446+ String get resetFiltersButtonText => 'إعادة تعيين الفلاتر' ;
1447+
1448+ @override
1449+ String get noResultsWithCurrentFilters =>
1450+ 'لم يتم العثور على نتائج باستخدام الفلاتر الحالية. حاول إعادة تعيينها.' ;
14441451}
Original file line number Diff line number Diff line change @@ -1446,4 +1446,11 @@ class AppLocalizationsEn extends AppLocalizations {
14461446
14471447 @override
14481448 String get selectHeadquarters => 'Select Headquarters' ;
1449+
1450+ @override
1451+ String get resetFiltersButtonText => 'Reset Filters' ;
1452+
1453+ @override
1454+ String get noResultsWithCurrentFilters =>
1455+ 'No results found with current filters. Try resetting them.' ;
14491456}
Original file line number Diff line number Diff line change 18271827 "edit": "تعديل",
18281828 "@edit": {
18291829 "description": "Tooltip for the edit button"
1830+ },
1831+ "resetFiltersButtonText": "إعادة تعيين الفلاتر",
1832+ "@resetFiltersButtonText": {
1833+ "description": "Text for the button to reset filters to their default state."
1834+ },
1835+ "noResultsWithCurrentFilters": "لم يتم العثور على نتائج باستخدام الفلاتر الحالية. حاول إعادة تعيينها.",
1836+ "@noResultsWithCurrentFilters": {
1837+ "description": "Message displayed when no results are found due to active filters, prompting the user to reset them."
18301838 }
1831- }
1839+ }
Original file line number Diff line number Diff line change 18231823 "selectHeadquarters": "Select Headquarters",
18241824 "@selectHeadquarters": {
18251825 "description": "Hint text for selecting headquarters in a filter dialog."
1826+ },
1827+ "resetFiltersButtonText": "Reset Filters",
1828+ "@resetFiltersButtonText": {
1829+ "description": "Text for the button to reset filters to their default state."
1830+ },
1831+ "noResultsWithCurrentFilters": "No results found with current filters. Try resetting them.",
1832+ "@noResultsWithCurrentFilters": {
1833+ "description": "Message displayed when no results are found due to active filters, prompting the user to reset them."
18261834 }
1827- }
1835+ }
You can’t perform that action at this time.
0 commit comments