From 2bf9219be3da4757e94af567e8cfc7572de456ba Mon Sep 17 00:00:00 2001 From: Tom Needham Date: Mon, 1 Jun 2015 12:29:12 +0100 Subject: [PATCH] Fix grammar of search results phrase --- core/search/js/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/search/js/search.js b/core/search/js/search.js index b49a4b8c6e..cb3c3bcf7d 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(''); - $status.append('

' + t('core', 'No search result in other places') + '

'); + $status.append('

' + t('core', 'No search results in other places') + '

'); } 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}));