From 78066773f49940d39ed2ffe15ae09a61daef8db2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=E2=80=99Aquino?= Date: Wed, 11 Dec 2024 10:37:12 +0900 Subject: [PATCH] Improve clarity of word search label MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changelog-Changed: Improved UX around the label for searching words Closes: https://github.com/damus-io/damus/issues/2733 Signed-off-by: Daniel D’Aquino --- damus/Views/SearchResultsView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/SearchResultsView.swift b/damus/Views/SearchResultsView.swift index b496ae13..ce9a38b3 100644 --- a/damus/Views/SearchResultsView.swift +++ b/damus/Views/SearchResultsView.swift @@ -70,7 +70,7 @@ struct InnerSearchResults: View { func TextSearch(_ txt: String) -> some View { return NavigationLink(value: Route.NDBSearch(results: $results)) { HStack { - Text(txt) + Text("Search word: \(txt)", comment: "Navigation link to search for a word.") } .padding(.horizontal, 15) .padding(.vertical, 5)