diff options
author | Tom Needham <tom@owncloud.com> | 2015-06-01 12:29:12 +0100 |
---|---|---|
committer | Tom Needham <tom@owncloud.com> | 2015-06-01 12:29:12 +0100 |
commit | 2bf9219be3da4757e94af567e8cfc7572de456ba (patch) | |
tree | 206fa40e18ffc800522ec0f14c8512efe813a3f2 | |
parent | 2c86cc821c783ce6221ad4e9b6afa704cc6f8b3f (diff) | |
download | nextcloud-server-2bf9219be3da4757e94af567e8cfc7572de456ba.tar.gz nextcloud-server-2bf9219be3da4757e94af567e8cfc7572de456ba.zip |
Fix grammar of search results phrase
-rw-r--r-- | core/search/js/search.js | 2 |
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})); |