MCPcopy
hub / github.com/django/django / npgettext_lazy

Function npgettext_lazy

django/utils/translation/__init__.py:175–178  ·  view source on GitHub ↗
(context, singular, plural, number=None)

Source from the content-addressed store, hash-verified

173
174
175def npgettext_lazy(context, singular, plural, number=None):
176 return lazy_number(
177 npgettext, str, context=context, singular=singular, plural=plural, number=number
178 )
179
180
181def activate(language):

Calls 1

lazy_numberFunction · 0.85