0

我想运行Qt-Linguist的lupdate工具来获取 TS 文件列表。我想从文件中给出该列表,而不是从显式命令参数中给出。

这是命令的帮助:

用法:

lupdate [options] [project-file]...
lupdate [options] [source-file|path|@lst-file]... -ts ts-files|@lst-file
@lst-file
     Read additional file names (one per line) or includepaths (one per
     line, and prefixed with -I) from lst-file.

我猜这个论点@list-file正是我需要的,但我不知道如何使用它。我试图提供一个包含我的 TS 文件名称的文件,但出现此错误:

 $ lupdate.exe source -ts translations/language-list.txt
 Scanning directory 'source'...
 lupdate error: File 'translations/language-list.txt' has no recognized extension.

我尝试使用 .txt、.lst,没有扩展名。

4

1 回答 1

1

如帮助文件中所示,您缺少“@”。假设您有一个名为 main.qml 的源 QML 文件和一个名为 file.txt 的 lst 文件,其中包含以下行:

lang_de.ts
lang_en.ts
lang_fr.ts

然后你像这样使用 lupdate:

lupdate main.qml -ts @file.txt

它将创建您现在可以在 Linguist 中使用的三个文件。

于 2017-06-22T07:37:05.850 回答