spark-store/translate_generation.sh
zty199 e48438b5a6 feat: Support dpkg-buildpackage
Support dpkg-buildpackage

Log: Support dpkg-buildpackage
2022-01-16 21:58:36 +08:00

11 lines
196 B
Bash
Executable File

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