12 lines
232 B
Bash
12 lines
232 B
Bash
|
#!/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
|