summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Needham <tom@owncloud.com>2015-06-01 12:29:12 +0100
committerTom Needham <tom@owncloud.com>2015-06-01 12:29:12 +0100
commit2bf9219be3da4757e94af567e8cfc7572de456ba (patch)
tree206fa40e18ffc800522ec0f14c8512efe813a3f2
parent2c86cc821c783ce6221ad4e9b6afa704cc6f8b3f (diff)
downloadnextcloud-server-2bf9219be3da4757e94af567e8cfc7572de456ba.tar.gz
nextcloud-server-2bf9219be3da4757e94af567e8cfc7572de456ba.zip
Fix grammar of search results phrase
-rw-r--r--core/search/js/search.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/search/js/search.js b/core/search/js/search.js
index b49a4b8c6eb..cb3c3bcf7d7 100644
--- a/core/search/js/search.js
+++ b/core/search/js/search.js
@@ -213,7 +213,7 @@
$status.addClass('emptycontent').removeClass('status');
$status.html('');
$status.append('<div class="icon-search"></div>');
- $status.append('<h2>' + t('core', 'No search result in other places') + '</h2>');
+ $status.append('<h2>' + t('core', 'No search results in other places') + '</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}));