diff options
author | fenn-cs <fenn25.fn@gmail.com> | 2023-12-11 22:24:32 +0100 |
---|---|---|
committer | Eduardo Morales <emoral435@gmail.com> | 2023-12-26 11:19:25 -0600 |
commit | 593a2349c1683898239f07c073b9d43787cf8e2d (patch) | |
tree | cf3d85d4c961e83b9d20043d7369be9a960eec95 /core | |
parent | db3d81a06baefb51fecc755343dc724c75ccac30 (diff) | |
download | nextcloud-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.vue | 2 |
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, } }, |