MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / dnpgettext

Function dnpgettext

tools/python-3.11.9-amd64/Lib/gettext.py:605–613  ·  view source on GitHub ↗
(domain, context, msgid1, msgid2, n)

Source from the content-addressed store, hash-verified

603
604
605def dnpgettext(domain, context, msgid1, msgid2, n):
606 try:
607 t = translation(domain, _localedirs.get(domain, None))
608 except OSError:
609 if n == 1:
610 return msgid1
611 else:
612 return msgid2
613 return t.npgettext(context, msgid1, msgid2, n)
614
615
616def gettext(message):

Callers 1

npgettextFunction · 0.85

Calls 3

translationFunction · 0.85
getMethod · 0.45
npgettextMethod · 0.45

Tested by

no test coverage detected