From: Amos Jeffries Date: Sat, 23 Aug 2008 03:34:21 +0000 (+1200) Subject: Silence overly verbose translation output X-Git-Tag: SQUID_3_1_0_1~49^2~59^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1a600710fc223e9acf508917c1ad6939ecc9bc5;p=thirdparty%2Fsquid.git Silence overly verbose translation output --- diff --git a/errors/Makefile.am b/errors/Makefile.am index ea0a489057..1d4b70145a 100644 --- a/errors/Makefile.am +++ b/errors/Makefile.am @@ -132,14 +132,16 @@ dist-hook: done translate: - if test "$(PO2HTML)" != "" ; then \ + @ if test "$(PO2HTML)" != "" ; then \ for lang in $(TRANSLATIONS); do \ test -d $$lang && rm -r $$lang; \ mkdir $$lang; \ cd $$lang; \ + echo -n "Translate '$$lang' ..."; \ for f in `ls -1 ../templates`; do \ - $(PO2HTML) -i ../$$lang.po -t ../templates/$$f >$$f || exit 1; \ + $(PO2HTML) --progress=none -i ../$$lang.po -t ../templates/$$f >$$f || exit 1; \ done; \ + echo "done."; \ cd ..; \ done; \ else \