gxde-kernel-manager/translate_generation.sh
gfdgd_xi 86a34ba98d 修复翻译文件缺失的问题
Signed-off-by: gfdgd_xi <3025613752@qq.com>
2025-08-29 13:06:58 +08:00

12 lines
249 B
Bash
Executable File

#!/bin/bash
# this file is used to auto-generate .qm file from .ts file.
# author: shibowen at linuxdeepin.com
ts_list=(`ls translations/*.ts`)
for ts in "${ts_list[@]}"
do
printf "\nprocess ${ts}\n"
/usr/lib/qt6/bin/lrelease "${ts}"
done