up vote 2 down vote favorite
share [g+] share [fb]

I'm writing an application that is currently a pure QT4 app. It is designed to run cleanly on both Linux and Windows.

However I plan to integrate it a bit into KDE in future and here come the problems with localization/translations.

QT4 uses its own tr()/tr().arg().arg() mechanism and .ts/.qm files. KDE4 uses gettext and i18n/i18np mechanism and .po files.

How, easily, can I use KDE4's mechanism in my QT4 application without having to closely integrate it with KDE now (apparently making it non-runnable on Windows)?

Is it at all possible?

Thanks!

link|improve this question

Although it's far from perfect, KDE4 does have some Windows support. You might want to check out the KDE on Windows (windows.kde.org) project for more info. If you could switch to full KDE, that would make at least this issue go away/ – Parker Jan 8 '09 at 16:11
It's very far from perfect ;) However Henrik Hartz below brings excellent news! – Marcin Gil Jan 8 '09 at 20:02
feedback

2 Answers

up vote 2 down vote accepted

Starting version 4.5, Qt will support both .po and .xliff;

http://doc.trolltech.com/4.5/qt4-5-intro.html#qt-linguist-improvements

link|improve this answer
So I'm going pure QT4 way. Thanks! – Marcin Gil Jan 8 '09 at 20:01
feedback

I think you will need to just pick one and go with it, if it is a cross platform app, I'd go with QT's method. The reason why is that KDE wraps it's internationalized string with i18*() macros and QT uses tr() macros, since a macro can't produce another macro, there is no way unless you have #ifdef's all over your code, or a massive string table...both of which suck.

link|improve this answer
Hence my question: is it at all possible and easy to use KDE4 methods (gettext, po files) to avoid future need of converting all translation stuff. – Marcin Gil Jan 8 '09 at 14:21
Well my answer is "there is no good solution for both right now." from Henrik Hartz's answer, it looks like QT 4.5 will improve that though. – Evan Teran Jan 8 '09 at 16:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.