BobStore/tools/update-from-weblate.sh
Hans-Christoph Steiner a24a98aaf2 script to run the steps for pulling translations from Weblate
Hopefully the need for this will go away soon, once we work with Weblate to
smooth out the workflow.

[skip ci]
2018-12-20 22:44:22 +01:00

17 lines
350 B
Bash
Executable File

#!/bin/sh -ex
toolsdir=`cd $(dirname $0); pwd`
cd $toolsdir/..
git remote update -p weblate
git checkout -b weblate weblate/master
firefox https://hosted.weblate.org/projects/f-droid/f-droid/#repository
$toolsdir/fix-ellipsis.sh
$toolsdir/check-format-strings.py
$toolsdir/remove-unused-and-blank-translations.py
git gui
git push origin weblate