Lines Matching refs:msgid2
291 def ngettext(self, msgid1, msgid2, n): argument
293 return self._fallback.ngettext(msgid1, msgid2, n)
297 return msgid2
299 def lngettext(self, msgid1, msgid2, n): argument
308 return self._fallback.lngettext(msgid1, msgid2, n)
312 tmsg = msgid2
322 def npgettext(self, context, msgid1, msgid2, n): argument
324 return self._fallback.npgettext(context, msgid1, msgid2, n)
328 return msgid2
452 msgid1, msgid2 = msg.split(b'\x00')
478 def lngettext(self, msgid1, msgid2, n): argument
487 return self._fallback.lngettext(msgid1, msgid2, n)
491 tmsg = msgid2
505 def ngettext(self, msgid1, msgid2, n): argument
510 return self._fallback.ngettext(msgid1, msgid2, n)
514 tmsg = msgid2
527 def npgettext(self, context, msgid1, msgid2, n): argument
533 return self._fallback.npgettext(context, msgid1, msgid2, n)
537 tmsg = msgid2
689 def dngettext(domain, msgid1, msgid2, n): argument
696 return msgid2
697 return t.ngettext(msgid1, msgid2, n)
699 def ldngettext(domain, msgid1, msgid2, n): argument
714 tmsg = msgid2
719 return t.lngettext(msgid1, msgid2, n)
730 def dnpgettext(domain, context, msgid1, msgid2, n): argument
737 return msgid2
738 return t.npgettext(context, msgid1, msgid2, n)
753 def ngettext(msgid1, msgid2, n): argument
754 return dngettext(_current_domain, msgid1, msgid2, n)
756 def lngettext(msgid1, msgid2, n): argument
763 return ldngettext(_current_domain, msgid1, msgid2, n)
770 def npgettext(context, msgid1, msgid2, n): argument
771 return dnpgettext(_current_domain, context, msgid1, msgid2, n)