mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
66 lines
2.0 KiB
Bash
Executable File
66 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright © 2016 Zetok Zalbavar <zetok@openmailbox.org>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# Script to run to clean up translations from Weblate.
|
|
#
|
|
# It detects whether current HEAD commit seems to be a translation from
|
|
# Weblate, and if it is, it proceeds to update the translation commit by
|
|
# amending it.
|
|
#
|
|
# Note: the script assumes:
|
|
# * there is only 1 translation file modified
|
|
# * translation commit strictly adheres to consistent commit naming used
|
|
# * script is called from the root of repo
|
|
#
|
|
# If those assumptions aren't met, the end result won't be what you want.
|
|
|
|
set -eu -o pipefail
|
|
|
|
# get title of the last commit
|
|
get_commit_title() {
|
|
git log --format=format:%s HEAD~1..HEAD
|
|
}
|
|
|
|
# bool, whether HEAD commit is a weblate translation
|
|
is_webl_tr() {
|
|
local re='^feat\(l10n\): update .* translation from Weblate$'
|
|
local commit=$(get_commit_title)
|
|
[[ $commit =~ $re ]]
|
|
}
|
|
|
|
# get filename of file to be updated
|
|
get_filename() {
|
|
local raw=( $(git log --raw | tail -n +7 | head -n1) )
|
|
local re='^translations/.+\.ts$'
|
|
[[ ${raw[5]} =~ $re ]] # check if that's actually right, if not, fail here
|
|
echo ${raw[5]}
|
|
}
|
|
|
|
# call the other script to update && amend
|
|
update() {
|
|
local file=$(get_filename)
|
|
./tools/update-translation-files.sh "$file"
|
|
git commit -S --amend "$file"
|
|
}
|
|
|
|
|
|
main() {
|
|
is_webl_tr \
|
|
&& update
|
|
}
|
|
main
|