Fix singular and plural search results text (#12639)

Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
This commit is contained in:
Hugo van Kemenade 2024-08-11 22:19:05 +03:00 committed by GitHub
parent 6d3e5c71b3
commit 9171f533cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View File

@ -43,6 +43,8 @@ Bugs fixed
* #12587: Do not warn when potential ambiguity detected during Intersphinx * #12587: Do not warn when potential ambiguity detected during Intersphinx
resolution occurs due to duplicate targets that differ case-insensitively. resolution occurs due to duplicate targets that differ case-insensitively.
Patch by James Addison. Patch by James Addison.
* #12639: Fix singular and plural search results text.
Patch by Hugo van Kemenade.
Testing Testing
------- -------

View File

@ -115,8 +115,10 @@ const _finishSearch = (resultCount) => {
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories." "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories."
); );
else else
Search.status.innerText = _( Search.status.innerText = Documentation.ngettext(
"Search finished, found ${resultCount} page(s) matching the search query." "Search finished, found one page matching the search query.",
"Search finished, found ${resultCount} pages matching the search query.",
resultCount,
).replace('${resultCount}', resultCount); ).replace('${resultCount}', resultCount);
}; };
const _displayNextItem = ( const _displayNextItem = (