我想运行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,没有扩展名。