Lines Matching refs:tmsg
295 tmsg = msgid1
297 tmsg = msgid2
299 return tmsg.encode(self._output_charset)
300 return tmsg.encode(locale.getpreferredencoding())
377 tmsg = buf[toff:tend]
384 for b_item in tmsg.split(b'\n'):
416 tmsg = tmsg.split(b'\x00')
418 for i, x in enumerate(tmsg):
421 catalog[str(msg, charset)] = str(tmsg, charset)
428 tmsg = self._catalog.get(message, missing)
429 if tmsg is missing:
432 tmsg = message
434 return tmsg.encode(self._output_charset)
435 return tmsg.encode(locale.getpreferredencoding())
439 tmsg = self._catalog[(msgid1, self.plural(n))]
444 tmsg = msgid1
446 tmsg = msgid2
448 return tmsg.encode(self._output_charset)
449 return tmsg.encode(locale.getpreferredencoding())
453 tmsg = self._catalog.get(message, missing)
454 if tmsg is missing:
458 return tmsg
462 tmsg = self._catalog[(msgid1, self.plural(n))]
467 tmsg = msgid1
469 tmsg = msgid2
470 return tmsg
618 tmsg = msgid1
620 tmsg = msgid2
621 return tmsg.encode(codeset or locale.getpreferredencoding())