Lines Matching refs:msgid2
280 def ngettext(self, msgid1, msgid2, n): argument
282 return self._fallback.ngettext(msgid1, msgid2, n)
286 return msgid2
293 def npgettext(self, context, msgid1, msgid2, n): argument
295 return self._fallback.npgettext(context, msgid1, msgid2, n)
299 return msgid2
410 msgid1, msgid2 = msg.split(b'\x00')
430 def ngettext(self, msgid1, msgid2, n): argument
435 return self._fallback.ngettext(msgid1, msgid2, n)
439 tmsg = msgid2
452 def npgettext(self, context, msgid1, msgid2, n): argument
458 return self._fallback.npgettext(context, msgid1, msgid2, n)
462 tmsg = msgid2
574 def dngettext(domain, msgid1, msgid2, n): argument
581 return msgid2
582 return t.ngettext(msgid1, msgid2, n)
593 def dnpgettext(domain, context, msgid1, msgid2, n): argument
600 return msgid2
601 return t.npgettext(context, msgid1, msgid2, n)
608 def ngettext(msgid1, msgid2, n): argument
609 return dngettext(_current_domain, msgid1, msgid2, n)
616 def npgettext(context, msgid1, msgid2, n): argument
617 return dnpgettext(_current_domain, context, msgid1, msgid2, n)