Add target to incorporate translations from translations.org

Message ID 1484214417-15443-1-git-send-email-siddhesh@sourceware.org
State New, archived
Headers

Commit Message

Siddhesh Poyarekar Jan. 12, 2017, 9:46 a.m. UTC
  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.

This would be nice to have for the duration of the freeze but I don't mind
waiting till 2.25 to commit if needed.

Siddhesh

	* po/Makefile (update-translations): New target.
---
 po/Makefile | 11 +++++++++++
 1 file changed, 11 insertions(+)
  

Comments

Joseph Myers Jan. 12, 2017, 1:59 p.m. UTC | #1
On Thu, 12 Jan 2017, Siddhesh Poyarekar wrote:

> +# Update translations from the translation project.
> +TRANSLATIONS_URL = http://translationproject.org/latest/libc

Should preferably use https.

> +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 && \

Does this actually work?  I'd expect you to need to use $(WGET) not plain 
WGET.
  
Siddhesh Poyarekar Jan. 12, 2017, 2:11 p.m. UTC | #2
On Thursday 12 January 2017 07:29 PM, Joseph Myers wrote:
> On Thu, 12 Jan 2017, Siddhesh Poyarekar wrote:
> 
>> +# Update translations from the translation project.
>> +TRANSLATIONS_URL = http://translationproject.org/latest/libc
> 
> Should preferably use https.

OK.

>> +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 && \
> 
> Does this actually work?  I'd expect you to need to use $(WGET) not plain 
> WGET.

Ugh, I think I did that after the merge and did not test it, sorry :/

Siddhesh
  

Patch

diff --git a/po/Makefile b/po/Makefile
index 302c3b6..fdf8fa0 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 = http://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