chore: Follow up search

This commit is contained in:
krille-chan 2024-05-05 14:40:24 +02:00
parent b20b599ce4
commit 18054aaa66
No known key found for this signature in database
4 changed files with 4 additions and 3 deletions

View file

@ -2540,6 +2540,7 @@
"chat": {}
}
},
"searchMore": "Search more...",
"gallery": "Gallery",
"files": "Files",
"databaseBuildErrorBody": "Unable to build the SQlite database. The app tries to use the legacy database for now. Please report this error to the developers at {url}. The error message is: {error}",

View file

@ -94,7 +94,7 @@ class ChatSearchFilesTab extends StatelessWidget {
icon: const Icon(
Icons.arrow_downward_outlined,
),
label: const Text('Search more...'),
label: Text(L10n.of(context)!.searchMore),
),
),
);

View file

@ -103,7 +103,7 @@ class ChatSearchImagesTab extends StatelessWidget {
icon: const Icon(
Icons.arrow_downward_outlined,
),
label: const Text('Search more...'),
label: Text(L10n.of(context)!.searchMore),
),
),
);

View file

@ -91,7 +91,7 @@ class ChatSearchMessageTab extends StatelessWidget {
icon: const Icon(
Icons.arrow_downward_outlined,
),
label: const Text('Search more...'),
label: Text(L10n.of(context)!.searchMore),
),
),
);