diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-06-01 14:57:50 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-06-01 14:57:50 +0200 |
commit | 50b420446f55d9d247fb05bbb9e78506407fa4df (patch) | |
tree | 206fa40e18ffc800522ec0f14c8512efe813a3f2 | |
parent | 2c86cc821c783ce6221ad4e9b6afa704cc6f8b3f (diff) | |
parent | 2bf9219be3da4757e94af567e8cfc7572de456ba (diff) | |
download | nextcloud-server-50b420446f55d9d247fb05bbb9e78506407fa4df.tar.gz nextcloud-server-50b420446f55d9d247fb05bbb9e78506407fa4df.zip |
Merge pull request #16655 from owncloud/fix-search-results-phrase
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})); |