• Home
  • Raw
  • Download

Lines Matching refs:msgid1

291     def ngettext(self, msgid1, msgid2, n):  argument
293 return self._fallback.ngettext(msgid1, msgid2, n)
295 return msgid1
299 def lngettext(self, msgid1, msgid2, n): argument
308 return self._fallback.lngettext(msgid1, msgid2, n)
310 tmsg = msgid1
322 def npgettext(self, context, msgid1, msgid2, n): argument
324 return self._fallback.npgettext(context, msgid1, msgid2, n)
326 return msgid1
452 msgid1, msgid2 = msg.split(b'\x00')
454 msgid1 = str(msgid1, charset)
456 catalog[(msgid1, i)] = str(x, charset)
478 def lngettext(self, msgid1, msgid2, n): argument
484 tmsg = self._catalog[(msgid1, self.plural(n))]
487 return self._fallback.lngettext(msgid1, msgid2, n)
489 tmsg = msgid1
505 def ngettext(self, msgid1, msgid2, n): argument
507 tmsg = self._catalog[(msgid1, self.plural(n))]
510 return self._fallback.ngettext(msgid1, msgid2, n)
512 tmsg = msgid1
527 def npgettext(self, context, msgid1, msgid2, n): argument
528 ctxt_msg_id = self.CONTEXT % (context, msgid1)
533 return self._fallback.npgettext(context, msgid1, msgid2, n)
535 tmsg = msgid1
689 def dngettext(domain, msgid1, msgid2, n): argument
694 return msgid1
697 return t.ngettext(msgid1, msgid2, n)
699 def ldngettext(domain, msgid1, msgid2, n): argument
712 tmsg = msgid1
719 return t.lngettext(msgid1, msgid2, n)
730 def dnpgettext(domain, context, msgid1, msgid2, n): argument
735 return msgid1
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)