The current way I create translation catalogs and manage translations is:
- generate headers from all non source code file types (glade, .desktop, ...) via
intltool
- use
xgettext
to gather all strings from all*.[ch]
files and generata a.pot
- do
msgmerge
for existing.po
files
Is there a tool that can handle all 3 tasks without having to generate intermediate files?
Note: I've been looking for that kind of tool for a long time but never really found one, so I apologize if the answer is trivial.