﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
19160	Make ungettext_lazy really usable	Claude Paroz	nobody	"In current Django code, `ungettext_lazy` is almost unusable, because you generally don't know the third argument (number) at lazy definition time. See #19158 and #19034 for use cases. It should be possible to pass the number argument at lazy resolution time.

Here's what we should be able to do:
{{{
class MyClass:
    # Note here the missing third argument
    string = ungettext_lazy(""%(num)d string"", ""%(num)d strings"")

    def resolve(self, number):
        # We hope here that the lazy 'magic' will be able to retrieve and pass number to ngettext
        return self.string % {'num': number}
}}}"	New feature	closed	Internationalization	dev	Normal	fixed		sun.void@… charette.s@…	Accepted	1	0	0	1	0	0
