Makefile.am: Download po files from weblate.

* Makefile.am (download-po): Download from weblate.
This commit is contained in:
Julien Lepiller 2021-01-12 15:35:29 +01:00
parent b50a14422f
commit ddfcc2141e
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82
1 changed files with 5 additions and 4 deletions

View File

@ -988,7 +988,7 @@ download-po.$(1):
fi ; \
for lang in $$$$LINGUAS; do \
if wget -nv -O "$(top_srcdir)/$(2)/$(3)$$$$lang.po.tmp" \
"https://translationproject.org/latest/$(1)/$$$$lang.po" ; \
"https://translate.fedoraproject.org/api/translations/guix/$(1)/$$$$lang/file/" ; \
then \
mv "$(top_srcdir)/$(2)/$(3)$$$$lang.po"{.tmp,} ; \
else \
@ -1000,11 +1000,12 @@ download-po.$(1):
endef
$(eval $(call make-download-po-rule,documentation-cookbook,po/doc,guix-cookbook.))
$(eval $(call make-download-po-rule,documentation-manual,po/doc,guix-manual.))
$(eval $(call make-download-po-rule,guix,po/guix))
$(eval $(call make-download-po-rule,guix-packages,po/packages))
$(eval $(call make-download-po-rule,guix-manual,po/doc,guix-manual.))
$(eval $(call make-download-po-rule,packages,po/packages))
download-po: $(foreach domain,guix guix-packages guix-manual,download-po.$(domain))
download-po: $(foreach domain,guix packages documentation-manual documentation-cookbook,download-po.$(domain))
.PHONY: download-po
## -------------- ##