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

View File

@ -7,3 +7,14 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_subdirectory(src)
add_subdirectory(misc)
if (NOT (${CMAKE_BUILD_TYPE} MATCHES "Debug"))
# generate qm
execute_process(COMMAND bash "translate_generation.sh"
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
endif ()
# qm files
file(GLOB QM_FILES "translations/*.qm")
install(FILES ${QM_FILES}
DESTINATION share/dde-application-manager/translations)