11

Is there a tool to convert the translations in GNU Gettext .po format into Qt's native .ts format?

tanius
  • 14,003
  • 3
  • 51
  • 63
v_2e
  • 2,603
  • 2
  • 22
  • 29

2 Answers2

13

Today I found that it could be done using the lconvert tool that comes with the Qt distribution and had already been present on my system.

So I simply did

lconvert -locations relative <file>.po -o <file>.ts

It also supports the backward conversion:

lconvert <file>.ts -o <file>.po
v_2e
  • 2,603
  • 2
  • 22
  • 29
7

You could use po2ts which is meant for exactly this task. It is part of the Translate Toolkit which you can download for your appropriate platform.

Bart
  • 19,692
  • 7
  • 68
  • 77