diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-12-18 23:11:42 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2015-01-02 10:28:41 +0100 |
commit | b93f2ddcb577a262d170163f4bc7117b70ffa3f7 (patch) | |
tree | 9feb298d06fe763b3f5eb080446dedcdc9711ed5 /search | |
parent | 7e6c660b008d158de92a664b56359ed0750b82a8 (diff) | |
download | nextcloud-server-b93f2ddcb577a262d170163f4bc7117b70ffa3f7.tar.gz nextcloud-server-b93f2ddcb577a262d170163f4bc7117b70ffa3f7.zip |
hide header when no files in list match
Diffstat (limited to 'search')
-rw-r--r-- | search/js/search.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/search/js/search.js b/search/js/search.js index 28e6fa999a0..afd3fca7b1b 100644 --- a/search/js/search.js +++ b/search/js/search.js @@ -227,7 +227,7 @@ // not showing result, decrease counter var count = $status.data('count') - 1; $status.data('count', count) - .text(t('search', '{count} search results in other folders', {count:count}, count)); + .text(t('search', '{count} search results in other places', {count:count}, count)); } }); } |