diff --git a/scripts/update_translations.sh b/scripts/update_translations.sh new file mode 100755 index 000000000..71c62e99a --- /dev/null +++ b/scripts/update_translations.sh @@ -0,0 +1,13 @@ +#!/bin/bash +set -e + +pushd ../../lemmy-translations +git fetch weblate +git merge weblate/main +git push +popd + +git submodule update --remote +git add ../crates/utils/translations +git commit -m"Updating translations." +git push