修复任务栏上应用右键菜单存在英文的问题 Log: Task: https://pms.uniontech.com/task-view-146103.html Influence: 任务栏应用右键菜单语言显示正常 Change-Id: I4ea46b1ee756be66f9a2dc5cf00b692d6e335634
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
|