0

I have code in C++ which needs to work with the Qt translation tools. In Qt Creator I would add

TARGET = translation TRANSLATIONS = tran_ar.ts tran_en.ts tran_la.ts

into the .pro file. The development is being done in VS 2010 (the Gui is working fine so Qt is integrated). So where do I put this information in Visual Studio 2010?

4

1 回答 1

2

尝试 VS 的 Qt 插件的菜单项:

Qt > 添加新的翻译文件

选择项目和语言,然后VS应该在“本地化文件”或类似的地方添加一个空白的xxx.ts文件到你的项目中。该文件的上下文菜单条目包含指向“lupdate”和“lrelease”的链接,所以我认为你甚至不需要打扰你不会在 VS 中真正使用的 pro 和 pri 文件(我检查了 .qm lrelease 生成的文件似乎包含 .ts 文件的所有翻译条目)。

于 2013-05-27T10:45:22.040 回答