1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Fixed #35278 - Fixed passing four arguments (instead of three) to test function.

This commit is contained in:
Piotr Kawula 2024-03-11 08:51:26 +01:00
parent a9830a403b
commit d3b92d0bbd

View File

@ -46,14 +46,14 @@
<p id="ngettext_empty_array">
<!-- The po file contains empty array on "%s element" id. -->
<script>
document.write(interpolate(ngettext("%s element", "%s element", "%s elements", 1), [1]));
document.write(interpolate(ngettext("%s element", "%s elements", 1), [1]));
</script>
</p>
<p id="ngettext_plural_empty_array">
<!-- The po file contains empty array on "%s element" id. -->
<script>
document.write(interpolate(ngettext("%s element", "%s element", "%s elements", 455), [455]));
document.write(interpolate(ngettext("%s element", "%s elements", 455), [455]));
</script>
</p>