From: Dessalines Date: Tue, 29 Mar 2022 16:54:16 +0000 (+0000) Subject: Add update translations script. (#2173) X-Git-Url: http://these/git/?a=commitdiff_plain;ds=sidebyside;h=11b7525c419a3e451e58e29fb1b997621184c8a1;p=lemmy.git Add update translations script. (#2173) --- diff --git a/scripts/update_translations.sh b/scripts/update_translations.sh new file mode 100755 index 00000000..71c62e99 --- /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