aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorfenn-cs <fenn25.fn@gmail.com>2023-12-11 22:24:32 +0100
committerEduardo Morales <emoral435@gmail.com>2023-12-26 11:19:25 -0600
commit593a2349c1683898239f07c073b9d43787cf8e2d (patch)
treecf3d85d4c961e83b9d20043d7369be9a960eec95 /core
parentdb3d81a06baefb51fecc755343dc724c75ccac30 (diff)
downloadnextcloud-server-593a2349c1683898239f07c073b9d43787cf8e2d.tar.gz
nextcloud-server-593a2349c1683898239f07c073b9d43787cf8e2d.zip
Rephrase unified search helper text
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Diffstat (limited to 'core')
-rw-r--r--core/src/views/UnifiedSearchModal.vue2
1 files changed, 1 insertions, 1 deletions
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,
}
},