[PATCH v2] Add target to incorporate translations from translations.org
Dmitry V. Levin
ldv@altlinux.org
Wed Jan 18 19:29:00 GMT 2017
On Thu, Jan 12, 2017 at 07:42:34PM +0530, Siddhesh Poyarekar wrote:
> Add a convenience target for maintainers to download and incorporate
> translation updates from translations.org. Invoke as follows:
>
> make -r PARALLELMFLAGS="" -C ../po objdir=`pwd` update-translations
>
> similar to generating libc.pot.
>
> * po/Makefile (update-translations): New target.
> ---
> po/Makefile | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/po/Makefile b/po/Makefile
> index 302c3b6..122db23 100644
> --- a/po/Makefile
> +++ b/po/Makefile
> @@ -109,3 +109,14 @@ linguas: $(pofiles:$(podir)/%=%)
> linguas.mo: $(pofiles:$(podir)/%.po=%.mo)
>
> endif
> +
> +# Update translations from the translation project.
> +TRANSLATIONS_URL = https://translationproject.org/latest/libc
> +WGET = wget
> +
> +update-translations:
> + $(WGET) -qO- $(TRANSLATIONS_URL) | sed -n 's|.*href="\([^"]\+po\)".*|\1|p' | \
> + while read f; do \
> + $(WGET) -O $(objdir)/$$f-tmp $(TRANSLATIONS_URL)/$$f && \
> + mv -f $(objdir)/$$f-tmp $$f; \
> + done
Please do not consider my reply as an objection,
but isn't a simple rsync command like
rsync -vLt translationproject.org::tp/latest/libc/'*.po' .
better than multiple wget invocations?
--
ldv
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 801 bytes
Desc: not available
URL: <http://sourceware.org/pipermail/libc-alpha/attachments/20170118/62413cd0/attachment.sig>
More information about the Libc-alpha
mailing list