summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-09-18 12:19:07 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2015-09-23 21:31:00 +0200
commit9162cc153e35ae2d4f2adfa97bf701a40ca1f5e9 (patch)
treebdec6357111a2cd667d4a5a6a8a7f668340cd0a9 /core
parentfb46e36d7ba4fb7706782bcdcecb6d8bac7a93bf (diff)
downloadnextcloud-server-9162cc153e35ae2d4f2adfa97bf701a40ca1f5e9.tar.gz
nextcloud-server-9162cc153e35ae2d4f2adfa97bf701a40ca1f5e9.zip
fix wording of other search results to 'in other folders'
Diffstat (limited to 'core')
-rw-r--r--core/search/js/search.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/search/js/search.js b/core/search/js/search.js
index bc67eb0e154..4e83a070170 100644
--- a/core/search/js/search.js
+++ b/core/search/js/search.js
@@ -217,10 +217,10 @@
$status.addClass('emptycontent').removeClass('status');
$status.html('');
$status.append('<div class="icon-search"></div>');
- $status.append('<h2>' + t('core', 'No search results in other places') + '</h2>');
+ $status.append('<h2>' + t('core', 'No search results in other folders') + '</h2>');
} else {
$status.removeClass('emptycontent').addClass('status');
- $status.text(n('core', '{count} search result in other places', '{count} search results in other places', count, {count:count}));
+ $status.text(n('core', '{count} search result in another folder', '{count} search results in other folders', count, {count:count}));
}
}
function renderCurrent() {