mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-05-30 22:01:41 +00:00
12 lines
232 B
Bash
Executable File
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
|