Lines Matching refs:msgid1
276 def ngettext(self, msgid1, msgid2, n): argument
278 return self._fallback.ngettext(msgid1, msgid2, n)
280 return msgid1
284 def lngettext(self, msgid1, msgid2, n): argument
286 return self._fallback.lngettext(msgid1, msgid2, n)
288 return msgid1
297 def ungettext(self, msgid1, msgid2, n): argument
299 return self._fallback.ungettext(msgid1, msgid2, n)
301 return unicode(msgid1)
403 msgid1, msgid2 = msg.split('\x00')
406 msgid1 = unicode(msgid1, self._charset)
409 catalog[(msgid1, i)] = tmsg[i]
444 def ngettext(self, msgid1, msgid2, n): argument
446 tmsg = self._catalog[(msgid1, self.plural(n))]
454 return self._fallback.ngettext(msgid1, msgid2, n)
456 return msgid1
460 def lngettext(self, msgid1, msgid2, n): argument
462 tmsg = self._catalog[(msgid1, self.plural(n))]
468 return self._fallback.lngettext(msgid1, msgid2, n)
470 return msgid1
483 def ungettext(self, msgid1, msgid2, n): argument
485 tmsg = self._catalog[(msgid1, self.plural(n))]
488 return self._fallback.ungettext(msgid1, msgid2, n)
490 tmsg = unicode(msgid1)
619 def dngettext(domain, msgid1, msgid2, n): argument
625 return msgid1
628 return t.ngettext(msgid1, msgid2, n)
630 def ldngettext(domain, msgid1, msgid2, n): argument
636 return msgid1
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)