コード例 #1
0
ファイル: test_ts2po.py プロジェクト: r-o-b-b-i-e/translate
 def ts2po(self, tssource):
     converter = ts2po.ts2po()
     tsfile = wStringIO.StringIO(tssource)
     outputpo = converter.convertfile(tsfile)
     print("The generated po:")
     print(bytes(outputpo))
     return outputpo
コード例 #2
0
ファイル: test_ts2po.py プロジェクト: slide333333/translate
 def ts2po(self, tssource):
     converter = ts2po.ts2po()
     tsfile = BytesIO(tssource.encode())
     outputpo = converter.convertfile(tsfile)
     print("The generated po:")
     print(bytes(outputpo))
     return outputpo