17 lines
352 B
Bash
Executable File
17 lines
352 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
|
#
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
# 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
|