Lines Matching refs:msgid2
276 def ngettext(self, msgid1, msgid2, n): argument
278 return self._fallback.ngettext(msgid1, msgid2, n)
282 return msgid2
284 def lngettext(self, msgid1, msgid2, n): argument
286 return self._fallback.lngettext(msgid1, msgid2, n)
290 return msgid2
297 def ungettext(self, msgid1, msgid2, n): argument
299 return self._fallback.ungettext(msgid1, msgid2, n)
303 return unicode(msgid2)
403 msgid1, msgid2 = msg.split('\x00')
444 def ngettext(self, msgid1, msgid2, n): argument
454 return self._fallback.ngettext(msgid1, msgid2, n)
458 return msgid2
460 def lngettext(self, msgid1, msgid2, n): argument
468 return self._fallback.lngettext(msgid1, msgid2, n)
472 return msgid2
483 def ungettext(self, msgid1, msgid2, n): argument
488 return self._fallback.ungettext(msgid1, msgid2, n)
492 tmsg = unicode(msgid2)
619 def dngettext(domain, msgid1, msgid2, n): argument
627 return msgid2
628 return t.ngettext(msgid1, msgid2, n)
630 def ldngettext(domain, msgid1, msgid2, n): argument
638 return msgid2
639 return t.lngettext(msgid1, msgid2, n)
647 def ngettext(msgid1, msgid2, n): argument
648 return dngettext(_current_domain, msgid1, msgid2, n)
650 def lngettext(msgid1, msgid2, n): argument
651 return ldngettext(_current_domain, msgid1, msgid2, n)