1
0
mirror of https://github.com/django/django.git synced 2025-06-07 12:39:12 +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"> <p id="ngettext_empty_array">
<!-- The po file contains empty array on "%s element" id. --> <!-- The po file contains empty array on "%s element" id. -->
<script> <script>
document.write(interpolate(ngettext("%s element", "%s element", "%s elements", 1), [1])); document.write(interpolate(ngettext("%s element", "%s elements", 1), [1]));
</script> </script>
</p> </p>
<p id="ngettext_plural_empty_array"> <p id="ngettext_plural_empty_array">
<!-- The po file contains empty array on "%s element" id. --> <!-- The po file contains empty array on "%s element" id. -->
<script> <script>
document.write(interpolate(ngettext("%s element", "%s element", "%s elements", 455), [455])); document.write(interpolate(ngettext("%s element", "%s elements", 455), [455]));
</script> </script>
</p> </p>