X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=po%2Fautomake.mk;h=df215288b732f76331204098c86c4d3c335e54d4;hb=53f132c7a4afb6bdf7335b5ce4df3c8b7aab8dbe;hp=99bbb655fe35c9d3c70f4fc0a30533e2ce661a34;hpb=012d9927ee99874f8eeda863f1ec150f4317832d;p=pspp diff --git a/po/automake.mk b/po/automake.mk index 99bbb655fe..df215288b7 100644 --- a/po/automake.mk +++ b/po/automake.mk @@ -1,3 +1,19 @@ +# PSPP - a program for statistical analysis. +# Copyright (C) 2017 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,19 +22,24 @@ 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 \ + po/hu.po \ po/ja.po \ po/lt.po \ po/nl.po \ + po/pl.po \ po/pt_BR.po \ + po/ru.po \ po/sl.po \ po/tr.po \ - po/uk.po + po/uk.po \ + po/zh_CN.po + +LOCALPOFILES = po/cs.po po/en_GB.po POTFILE=po/$(DOMAIN).pot @@ -34,19 +55,20 @@ XGETTEXT_OPTIONS = \ $(POTFILE): $(TRANSLATABLE_FILES) $(UI_FILES) src/ui/gui/gen-dot-desktop.sh @$(MKDIR_P) po - $(AM_V_GEN)$(XGETTEXT) --directory=$(top_srcdir) $(XGETTEXT_OPTIONS) $(TRANSLATABLE_FILES) --language=C --keyword=_ --keyword=N_ -o $@ - $(AM_V_at)$(XGETTEXT) --directory=$(top_srcdir) $(XGETTEXT_OPTIONS) -j $(UI_FILES) --language=glade -o $@ - $(AM_V_at)$(XGETTEXT) --directory=$(top_srcdir) $(XGETTEXT_OPTIONS) -j src/ui/gui/gen-dot-desktop.sh --language=shell --keyword=TRANSLATE -o $@ - + $(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_at)$(SED) -e '/^"POT-Creation-Date: .*/d' $@,tmp > $@ -$(POFILES): $(POTFILE) - $(AM_V_GEN)$(MSGMERGE) --quiet $(top_srcdir)/$@ $? -o $@ +$(LOCALPOFILED) $(POFILES): $(POTFILE) + $(AM_V_GEN)$(MSGMERGE) --quiet $(top_srcdir)/$@ $? -o $@,tmp $(AM_V_at)if test -e $(top_srcdir)/$@,aux ; then \ - touch $@ ; \ - msgcat --use-first $(top_srcdir)/$@,aux $@ -o $@; \ + 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 + mv $@,tmp2 $@ SUFFIXES += .po .gmo .po.gmo: @@ -54,25 +76,26 @@ SUFFIXES += .po .gmo $(AM_V_GEN)$(MSGFMT) $< -o $@ -GMOFILES = $(POFILES:.po=.gmo) +GMOFILES = $(LOCALPOFILES:.po=.gmo) $(POFILES:.po=.gmo) ALL_LOCAL += $(GMOFILES) install-data-hook: $(GMOFILES) for f in $(GMOFILES); do \ - lang=`echo $$f | sed -e 's%po/\(.*\)\.gmo%\1%' ` ; \ + lang=`echo $$f | $(SED) -e 's%po/\(.*\)\.gmo%\1%' ` ; \ $(MKDIR_P) $(DESTDIR)$(prefix)/share/locale/$$lang/LC_MESSAGES; \ $(INSTALL_DATA) $$f $(DESTDIR)$(prefix)/share/locale/$$lang/LC_MESSAGES/$(DOMAIN).mo ; \ done uninstall-hook: for f in $(GMOFILES); do \ - lang=`echo $$f | sed -e 's%po/\(.*\)\.gmo%\1%' ` ; \ + lang=`echo $$f | $(SED) -e 's%po/\(.*\)\.gmo%\1%' ` ; \ rm -f $(DESTDIR)$(prefix)/share/locale/$$lang/LC_MESSAGES/$(DOMAIN).mo ; \ done EXTRA_DIST += \ + $(LOCALPOFILES) \ $(POFILES) \ $(POTFILE) \ po/ChangeLog \ @@ -84,7 +107,15 @@ 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 + +WGET = wget +po-update: + cd $(srcdir) && rm -f $(POFILES) + cd $(srcdir)/po && \ + for po in `echo '$(POFILES)' | sed 's,po/,,g'`; do \ + $(WGET) https://translationproject.org/latest/pspp/$$po; \ + done