Lines Matching refs:tmsg
310 tmsg = msgid1
312 tmsg = msgid2
314 return tmsg.encode(self._output_charset)
315 return tmsg.encode(locale.getpreferredencoding())
411 tmsg = buf[toff:tend]
418 for b_item in tmsg.split(b'\n'):
453 tmsg = tmsg.split(b'\x00')
455 for i, x in enumerate(tmsg):
458 catalog[str(msg, charset)] = str(tmsg, charset)
469 tmsg = self._catalog.get(message, missing)
470 if tmsg is missing:
473 tmsg = message
475 return tmsg.encode(self._output_charset)
476 return tmsg.encode(locale.getpreferredencoding())
484 tmsg = self._catalog[(msgid1, self.plural(n))]
489 tmsg = msgid1
491 tmsg = msgid2
493 return tmsg.encode(self._output_charset)
494 return tmsg.encode(locale.getpreferredencoding())
498 tmsg = self._catalog.get(message, missing)
499 if tmsg is missing:
503 return tmsg
507 tmsg = self._catalog[(msgid1, self.plural(n))]
512 tmsg = msgid1
514 tmsg = msgid2
515 return tmsg
520 tmsg = self._catalog.get(ctxt_msg_id, missing)
521 if tmsg is missing:
525 return tmsg
530 tmsg = self._catalog[ctxt_msg_id, self.plural(n)]
535 tmsg = msgid1
537 tmsg = msgid2
538 return tmsg
712 tmsg = msgid1
714 tmsg = msgid2
715 return tmsg.encode(codeset or locale.getpreferredencoding())