fix: 修复任务栏上应用右键菜单存在英文的问题

修复任务栏上应用右键菜单存在英文的问题

Log:
Task: https://pms.uniontech.com/task-view-146103.html
Influence: 任务栏应用右键菜单语言显示正常
Change-Id: I4ea46b1ee756be66f9a2dc5cf00b692d6e335634
This commit is contained in:
weizhixiang
2022-06-09 10:38:21 +08:00
parent 78a345855a
commit 58e15c84bf
6 changed files with 38 additions and 7 deletions

11
translate_generation.sh Executable file
View File

@ -0,0 +1,11 @@
#!/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