From: Steinar H. Gunderson Date: Sun, 17 Jul 2005 10:42:54 +0000 (+0000) Subject: Run msgmerge at the end of updating templates.pot. X-Git-Url: https://git.sesse.net/?p=ccbs;a=commitdiff_plain;h=1de7e79dcc058716e94ce15af3d7a21aa517d660 Run msgmerge at the end of updating templates.pot. --- diff --git a/intl/make-all-pot.sh b/intl/make-all-pot.sh index ba7aeb7..1d513bf 100755 --- a/intl/make-all-pot.sh +++ b/intl/make-all-pot.sh @@ -11,3 +11,6 @@ done msgcat templates/*.pot > po/templates.pot rm -f templates/*.pot +for FILE in po/*.po; do + msgmerge -U $FILE po/templates.pot +done