Fixed wording for plurals on result counter.

This commit is contained in:
Robbie Antenesse 2016-01-18 13:04:53 -07:00
parent 1c1e9383eb
commit 9d18c038e2
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ function ShowFilterWordCount(numberOfWords) {
var wordCounter = document.getElementById("filterWordCount");
if (filter != "" || search != "") {
wordCounter.innerHTML = "Showing " + numberOfWords.toString() + " result" + ((numberOfWords > 1) ? "s" : "");
wordCounter.innerHTML = "Showing " + numberOfWords.toString() + " result" + ((numberOfWords != 1) ? "s" : "");
} else {
wordCounter.innerHTML = "";
}