mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00

dcc-dock-setting-plugin改名为dcc-dock-plugin,符合命名规范 Log: Task: https://pms.uniontech.com/zentao/task-view-91199.html Influence: 安装了旧的插件的话,需要先卸载再安装新的插件 Change-Id: I3af9d1d0c51c044076d2f71d6a359eaf188f3ea8
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
|