po: Update French translation from translationproject.org.
[pspp] / po / automake.mk
index 17a67331c7993d762632713bfc657868c7f26009..0e83674ca8da9c40c270ffe63e9e8da93513fcfb 100644 (file)
@@ -57,15 +57,15 @@ XGETTEXT_OPTIONS = \
 ALL_TRANSLATABLE_FILES = \
        $(TRANSLATABLE_FILES) \
        $(UI_FILES) \
-       src/ui/gui/org.fsf.pspp.metainfo.xml.in \
-       src/ui/gui/org.fsf.pspp.desktop.in
+       doc/org.fsf.pspp.metainfo.xml.in \
+       doc/org.fsf.pspp.desktop.in
 
 $(POTFILE): $(ALL_TRANSLATABLE_FILES) Makefile
        @$(MKDIR_P) po
        $(AM_V_GEN)$(XGETTEXT) $(XGETTEXT_OPTIONS) $(TRANSLATABLE_FILES) --language=C --keyword=_ --keyword=N_ -o $@,tmp
        $(AM_V_at)test -z "$(UI_FILES)" || $(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)$(XGETTEXT) $(XGETTEXT_OPTIONS) -j doc/org.fsf.pspp.metainfo.xml.in -o $@,tmp
+       $(AM_V_at)$(XGETTEXT) $(XGETTEXT_OPTIONS) -j doc/org.fsf.pspp.desktop.in -o $@,tmp
        $(AM_V_at)$(SED) -e '/^"POT-Creation-Date: .*/d' $@,tmp > $@
        rm -f $@,tmp
 
@@ -126,12 +126,14 @@ 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.
+#
+# You can update just one .po file with, e.g.:
+# make po-update POFILES=po/uk.po
 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 \
+po-update:
+       for p in $(POFILES); do \
+               wget --no-use-server-timestamps -O $$p,tmp \
                https://translationproject.org/latest/pspp/`basename $$p` ; \
-               mv ${top_srcdir}/$$p,tmp ${top_srcdir}/$$p; \
+               mv $$p,tmp ${top_srcdir}/$$p; \
        done
        $(RM) $(POTFILE)