dde-dock/translate_generation.sh
石博文 63c1c28897 add translations file
Change-Id: I3225a2f9f2cf137cff8ac70c622000d3557a8e3f
2016-08-05 10:00:14 +08:00

12 lines
232 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"
lrelease "${ts}"
done