From 593a2349c1683898239f07c073b9d43787cf8e2d 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 1d6b138fdb3..7ea8381d954 100644 --- a/core/src/views/UnifiedSearchModal.vue +++ b/core/src/views/UnifiedSearchModal.vue @@ -216,7 +216,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, } },