From bf234f6acc6f57a8018b77117790737b4c8b1a14 Mon Sep 17 00:00:00 2001 From: fenn-cs Date: Mon, 11 Dec 2023 22:24:32 +0100 Subject: [PATCH] Rephrase unified search helper text Signed-off-by: fenn-cs --- core/src/views/UnifiedSearchModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/views/UnifiedSearchModal.vue b/core/src/views/UnifiedSearchModal.vue index ca314fa2673..500ed8ebf26 100644 --- a/core/src/views/UnifiedSearchModal.vue +++ b/core/src/views/UnifiedSearchModal.vue @@ -217,7 +217,7 @@ export default { return { show: isEmptySearch || hasNoResults, - text: this.searching && hasNoResults ? t('core', 'Searching …') : (isEmptySearch ? t('core', 'Start typing in search') : t('core', 'No matching results')), + text: this.searching && hasNoResults ? t('core', 'Searching …') : (isEmptySearch ? t('core', 'Start typing to search') : t('core', 'No matching results')), icon: MagnifyIcon, } }, -- 2.39.5