mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-06-05 14:45:58 +08:00
11 lines
196 B
Bash
Executable File
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
|