chore: Follow up search

pull/1096/head
krille-chan 1 year ago
parent b20b599ce4
commit 18054aaa66
No known key found for this signature in database

@ -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}",

@ -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),
),
),
);

@ -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),
),
),
);

@ -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),
),
),
);

Loading…
Cancel
Save