feat: Support dpkg-buildpackage

Support dpkg-buildpackage

Log: Support dpkg-buildpackage
This commit is contained in:
zty199
2022-01-16 21:58:36 +08:00
parent 00cb5d2442
commit e48438b5a6
41 changed files with 491 additions and 1012 deletions

10
translate_generation.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# this file is used to auto-generate .qm file from .ts file.
ts_list=(`ls ./translations/*.ts`)
for ts in "${ts_list[@]}"
do
printf "\nprocess ${ts}\n"
lrelease "${ts}"
done