Lines Matching refs:msgid1
201 def ngettext(self, msgid1, msgid2, n):
203 return self._fallback.ngettext(msgid1, msgid2, n)
205 return msgid1
209 def lngettext(self, msgid1, msgid2, n):
211 return self._fallback.lngettext(msgid1, msgid2, n)
213 return msgid1
222 def ungettext(self, msgid1, msgid2, n):
224 return self._fallback.ungettext(msgid1, msgid2, n)
226 return unicode(msgid1)
327 msgid1, msgid2 = msg.split('\x00')
330 msgid1 = unicode(msgid1, self._charset)
333 catalog[(msgid1, i)] = tmsg[i]
368 def ngettext(self, msgid1, msgid2, n):
370 tmsg = self._catalog[(msgid1, self.plural(n))]
378 return self._fallback.ngettext(msgid1, msgid2, n)
380 return msgid1
384 def lngettext(self, msgid1, msgid2, n):
386 tmsg = self._catalog[(msgid1, self.plural(n))]
392 return self._fallback.lngettext(msgid1, msgid2, n)
394 return msgid1
407 def ungettext(self, msgid1, msgid2, n):
409 tmsg = self._catalog[(msgid1, self.plural(n))]
412 return self._fallback.ungettext(msgid1, msgid2, n)
414 tmsg = unicode(msgid1)
543 def dngettext(domain, msgid1, msgid2, n):
549 return msgid1
552 return t.ngettext(msgid1, msgid2, n)
554 def ldngettext(domain, msgid1, msgid2, n):
560 return msgid1
563 return t.lngettext(msgid1, msgid2, n)
571 def ngettext(msgid1, msgid2, n):
572 return dngettext(_current_domain, msgid1, msgid2, n)
574 def lngettext(msgid1, msgid2, n):
575 return ldngettext(_current_domain, msgid1, msgid2, n)