X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=po%2Fautomake.mk;h=1d25f1694800b78971b3ee7f92b32a337ca900f3;hb=33cdbdf7e095370cf04240eed21344205a487191;hp=6c400624dd9fee083791f484278afa9693ae1004;hpb=7293c1a383d325c371bd708401e5a1d7586a4d90;p=pspp diff --git a/po/automake.mk b/po/automake.mk index 6c400624dd..1d25f16948 100644 --- a/po/automake.mk +++ b/po/automake.mk @@ -1,3 +1,19 @@ +# PSPP - a program for statistical analysis. +# Copyright (C) 2017, 2020 Free Software Foundation, Inc. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# include $(top_srcdir)/po/Makevars XGETTEXT=xgettext @@ -6,9 +22,8 @@ MSGFMT=msgfmt POFILES = \ po/ca.po \ - po/cs.po \ po/de.po \ - po/en_GB.po \ + po/el.po \ po/es.po \ po/fr.po \ po/gl.po \ @@ -24,6 +39,8 @@ POFILES = \ po/uk.po \ po/zh_CN.po +LOCALPOFILES = po/cs.po + POTFILE=po/$(DOMAIN).pot TRANSLATABLE_FILES = $(DIST_SOURCES) $(all_q_sources) @@ -34,23 +51,32 @@ XGETTEXT_OPTIONS = \ --package-version=$(VERSION) \ --msgid-bugs-address=$(MSGID_BUGS_ADDRESS) \ --from-code=UTF-8 \ - --add-comments='TRANSLATORS:' + --add-comments='TRANSLATORS:' \ + --directory=$(top_srcdir) + +ALL_TRANSLATABLE_FILES = \ + $(TRANSLATABLE_FILES) \ + $(UI_FILES) \ + src/ui/gui/org.fsf.pspp.metainfo.xml.in \ + src/ui/gui/org.fsf.pspp.desktop.in -$(POTFILE): $(TRANSLATABLE_FILES) $(UI_FILES) src/ui/gui/gen-dot-desktop.sh +$(POTFILE): $(ALL_TRANSLATABLE_FILES) Makefile @$(MKDIR_P) po - $(AM_V_GEN)$(XGETTEXT) --directory=$(top_srcdir) $(XGETTEXT_OPTIONS) $(TRANSLATABLE_FILES) --language=C --keyword=_ --keyword=N_ -o $@,tmp - $(AM_V_at)$(XGETTEXT) --directory=$(top_srcdir) $(XGETTEXT_OPTIONS) -j $(UI_FILES) --language=glade -o $@,tmp - $(AM_V_at)$(XGETTEXT) --directory=$(top_srcdir) $(XGETTEXT_OPTIONS) -j src/ui/gui/gen-dot-desktop.sh --language=shell --keyword=TRANSLATE -o $@,tmp + $(AM_V_GEN)$(XGETTEXT) $(XGETTEXT_OPTIONS) $(TRANSLATABLE_FILES) --language=C --keyword=_ --keyword=N_ -o $@,tmp + $(AM_V_at)$(XGETTEXT) $(XGETTEXT_OPTIONS) -j $(UI_FILES) --language=Glade -o $@,tmp + $(AM_V_at)$(XGETTEXT) $(XGETTEXT_OPTIONS) -j src/ui/gui/org.fsf.pspp.metainfo.xml.in -o $@,tmp + $(AM_V_at)$(XGETTEXT) $(XGETTEXT_OPTIONS) -j src/ui/gui/org.fsf.pspp.desktop.in -o $@,tmp $(AM_V_at)$(SED) -e '/^"POT-Creation-Date: .*/d' $@,tmp > $@ -$(POFILES): $(POTFILE) - $(AM_V_GEN)$(MSGMERGE) --quiet $(top_srcdir)/$@ $? -o $@,tmp +$(LOCALPOFILES) $(POFILES): $(POTFILE) + $(AM_V_GEN)$(MSGMERGE) --previous --quiet $(top_srcdir)/$@ $? -o $@,tmp $(AM_V_at)if test -e $(top_srcdir)/$@,aux ; then \ - touch $@,tmp ; \ - msgcat --use-first $(top_srcdir)/$@,aux $@,tmp -o $@,tmp; \ + touch $@,tmp ; \ + msgcat --use-first $(top_srcdir)/$@,aux $@,tmp -o $@,tmp; \ fi ; $(AM_V_at)$(SED) -e '/^"POT-Creation-Date: /d' $@,tmp > $@,tmp2 $(RM) $@,tmp + $(MSGFMT) -c $@,tmp2 mv $@,tmp2 $@ SUFFIXES += .po .gmo @@ -59,7 +85,7 @@ SUFFIXES += .po .gmo $(AM_V_GEN)$(MSGFMT) $< -o $@ -GMOFILES = $(POFILES:.po=.gmo) +GMOFILES = $(LOCALPOFILES:.po=.gmo) $(POFILES:.po=.gmo) ALL_LOCAL += $(GMOFILES) @@ -78,8 +104,10 @@ uninstall-hook: EXTRA_DIST += \ + $(LOCALPOFILES) \ $(POFILES) \ $(POTFILE) \ + po/LINGUAS \ po/ChangeLog \ po/cs.po,aux @@ -89,7 +117,20 @@ CLEANFILES += $(GMOFILES) $(POTFILE) # the source directory. po_CLEAN: @if test "$(srcdir)" != .; then \ - echo rm -f $(POFILES); \ - rm -f $(POFILES); \ + echo rm -f $(LOCALPOFILES) $(POFILES); \ + rm -f $(LOCALPOFILES) $(POFILES); \ fi CLEAN_LOCAL += po_CLEAN + +# Download the po files from http://translationproject.org +# The final action to this rule is to remove the .pot file. This +# is because the po files must be re-merged against an updated version of it. +PHONY += po-update +po-update: $(POFILES) + for p in $^; do \ + wget --recursive --level=1 --accept=po --no-directories --no-use-server-timestamps \ + --directory-prefix=po -O ${top_srcdir}/$$p,tmp \ + https://translationproject.org/latest/pspp/`basename $$p` ; \ + mv ${top_srcdir}/$$p,tmp ${top_srcdir}/$$p; \ + done + $(RM) $(POTFILE)