mirror of https://github.com/LemmyNet/lemmy.git
Add update translations script. (#2173)
parent
f7fa1f10f9
commit
11b7525c41
|
@ -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
|
Loading…
Reference in New Issue