feat: add clear search box fix: close text size

This commit is contained in:
2026-08-04 12:05:46 +02:00
parent 812fcc892b
commit dd5cc1e517
8 changed files with 42 additions and 6 deletions
+1
View File
@@ -19,6 +19,7 @@
"couldNotCreateTab": "Could not create tab: {error}",
"@couldNotCreateTab": {"placeholders": {"error": {"type": "String"}}},
"searchByName": "Search by name…",
"clearSearch": "Clear search",
"allCustomers": "All customers",
"customer": "Customer",
"noClosedTabs": "No closed tabs yet",
+6
View File
@@ -206,6 +206,12 @@ abstract class AppLocalizations {
/// **'Search by name…'**
String get searchByName;
/// No description provided for @clearSearch.
///
/// In en, this message translates to:
/// **'Clear search'**
String get clearSearch;
/// No description provided for @allCustomers.
///
/// In en, this message translates to:
+3
View File
@@ -64,6 +64,9 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get searchByName => 'Search by name…';
@override
String get clearSearch => 'Clear search';
@override
String get allCustomers => 'All customers';
+3
View File
@@ -64,6 +64,9 @@ class AppLocalizationsNl extends AppLocalizations {
@override
String get searchByName => 'Zoeken op naam…';
@override
String get clearSearch => 'Zoekopdracht wissen';
@override
String get allCustomers => 'Alle klanten';
+1
View File
@@ -19,6 +19,7 @@
"couldNotCreateTab": "Poef kon niet worden aangemaakt: {error}",
"@couldNotCreateTab": {"placeholders": {"error": {"type": "String"}}},
"searchByName": "Zoeken op naam…",
"clearSearch": "Zoekopdracht wissen",
"allCustomers": "Alle klanten",
"customer": "Klant",
"noClosedTabs": "Nog geen gesloten poefs",