summaryrefslogtreecommitdiff
path: root/manage
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2021-08-01 10:17:14 +0200
committerAlexandre Flament <alex@al-f.net>2021-08-02 10:06:27 +0200
commit900baf2eaefcde51c6de740cde3f0a99eb2f0791 (patch)
treed8213a8a4ddf7d119424bf7eff3446e297128820 /manage
parent7fa7177759d46b55b9c3684df174832496877988 (diff)
downloadsearxng-900baf2eaefcde51c6de740cde3f0a99eb2f0791.tar.gz
searxng-900baf2eaefcde51c6de740cde3f0a99eb2f0791.zip
[mod] manage - implement babel commands, drop update_translations.sh
In ./manage implement babel.*: - extract : extract messages from source files and generate POT file - update : update existing message catalogs from POT file - compile : compile translation catalogs into binary MO files Replace searx_extra/update/update_translations.sh by command: - ci.babel.update Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'manage')
-rwxr-xr-xmanage47
1 files changed, 42 insertions, 5 deletions
diff --git a/manage b/manage
index df6b1c7d1..42c617f5b 100755
--- a/manage
+++ b/manage
@@ -44,8 +44,10 @@ help() {
cat <<EOF
buildenv:
rebuild ./utils/brand.env
-babel.compile:
- pybabel compile ./searx/translations
+babel.:
+ extract : extract messages from source files and generate POT file
+ update : update existing message catalogs from POT file
+ compile : compile translation catalogs into binary MO files
data.:
all : update searx/languages.py and ./data/*
languages : update searx/data/engines_languages.json & searx/languages.py
@@ -120,12 +122,47 @@ buildenv() {
return "${PIPESTATUS[0]}"
}
-babel.compile() {
- build_msg BABEL compile
- pyenv.cmd pybabel compile -d "${REPO_ROOT}/searx/translations"
+babel.sha256sum() {
+ grep "msgid" "searx/translations/messages.pot" | sort | sha256sum | cut -f1 -d ' '
+}
+
+ci.babel.update() {
+ local sha_before
+ ( set -e
+ sha_before="$(babel.sha256sum)"
+ babel.extract
+ if [ "$(babel.sha256sum)" = "${sha_before}" ]; then
+ build_msg BABEL 'no changes detected, exiting'
+ return 1
+ fi
+ babel.update
+ build_msg BABEL 'update done, edit .po files if required and run babel.compile'
+ )
dump_return $?
}
+babel.extract() {
+ build_msg BABEL 'extract messages from source files and generate POT file'
+ pyenv.cmd pybabel extract -F babel.cfg \
+ -o "searx/translations/messages.pot" \
+ "searx/"
+ dump_return $?
+}
+
+babel.update() {
+ build_msg BABEL 'update existing message catalogs from POT file'
+ pyenv.cmd pybabel update -N \
+ -i "searx/translations/messages.pot" \
+ -d "searx/translations"
+ dump_return $?
+}
+
+babel.compile() {
+ build_msg BABEL 'compile translation catalogs into binary MO files'
+ pyenv.cmd pybabel compile --statistics \
+ -d "searx/translations"
+ dump_return $?
+}
data.all() {
data.languages