summaryrefslogtreecommitdiffstats
path: root/gettext-tools/examples/hello-java-swing
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2009-01-19 00:27:34 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:15:59 +0200
commit42663b9043ec38c0188b0bb08dad10fcd02dc169 (patch)
tree545dab1e6870f6542de8d914ae0125403bae9e41 /gettext-tools/examples/hello-java-swing
parent7e37aaecc438e80d5c4f8a46506c47528dd3dc09 (diff)
downloadexternal_gettext-42663b9043ec38c0188b0bb08dad10fcd02dc169.zip
external_gettext-42663b9043ec38c0188b0bb08dad10fcd02dc169.tar.gz
external_gettext-42663b9043ec38c0188b0bb08dad10fcd02dc169.tar.bz2
Pass --verbose to msgfmt when producing statistics.
Diffstat (limited to 'gettext-tools/examples/hello-java-swing')
-rw-r--r--gettext-tools/examples/hello-java-swing/po/Makefile.am8
1 files changed, 4 insertions, 4 deletions
diff --git a/gettext-tools/examples/hello-java-swing/po/Makefile.am b/gettext-tools/examples/hello-java-swing/po/Makefile.am
index 33c89c5..a87aee5 100644
--- a/gettext-tools/examples/hello-java-swing/po/Makefile.am
+++ b/gettext-tools/examples/hello-java-swing/po/Makefile.am
@@ -244,8 +244,8 @@ update-properties: Makefile $(DOMAIN).pot $(POFILES)
$(MSGINIT) -i $(DOMAIN).pot --no-translator -l en --properties-output -o $(top_srcdir)/$(DOMAIN).properties || { rm -f $(top_srcdir)/$(DOMAIN).properties; exit 1; }
@for f in $(POFILES); do \
lang=`echo $$f | sed -e 's,.*/,,' -e 's,\.po$$,,'`; \
- echo "$(GMSGFMT) -c --statistics -o /dev/null $(srcdir)/$${lang}.po"; \
- $(GMSGFMT) -c --statistics -o /dev/null $(srcdir)/$${lang}.po || exit 1; \
+ echo "$(GMSGFMT) -c --statistics --verbose -o /dev/null $(srcdir)/$${lang}.po"; \
+ $(GMSGFMT) -c --statistics --verbose -o /dev/null $(srcdir)/$${lang}.po || exit 1; \
echo "$(MSGCAT) --properties-output -o $(top_srcdir)/$(DOMAIN)_$$lang.properties $(srcdir)/$${lang}.po"; \
$(MSGCAT) --properties-output -o $(top_srcdir)/$(DOMAIN)_$$lang.properties.tmp $(srcdir)/$${lang}.po || exit 1; \
mv $(top_srcdir)/$(DOMAIN)_$$lang.properties.tmp $(top_srcdir)/$(DOMAIN)_$$lang.properties || exit 1; \
@@ -257,8 +257,8 @@ update-classes: Makefile $(DOMAIN).pot $(POFILES)
$(MSGINIT) -i $(DOMAIN).pot --no-translator -l en --properties-output -o $(top_srcdir)/$(DOMAIN).properties || { rm -f $(top_srcdir)/$(DOMAIN).properties; exit 1; }
@for f in $(POFILES); do \
lang=`echo $$f | sed -e 's,.*/,,' -e 's,\.po$$,,'`; \
- echo "$(GMSGFMT) -c --statistics -j -d $(top_srcdir) -r $(DOMAIN) -l $${lang} $(srcdir)/$${lang}.po"; \
- $(GMSGFMT) -c --statistics -j -d $(top_srcdir) -r $(DOMAIN) -l $${lang} $(srcdir)/$${lang}.po || exit 1; \
+ echo "$(GMSGFMT) -c --statistics --verbose -j -d $(top_srcdir) -r $(DOMAIN) -l $${lang} $(srcdir)/$${lang}.po"; \
+ $(GMSGFMT) -c --statistics --verbose -j -d $(top_srcdir) -r $(DOMAIN) -l $${lang} $(srcdir)/$${lang}.po || exit 1; \
done
echo-catalogs: