|
From: <dwa...@us...> - 2012-04-05 13:31:55
|
Revision: 10679
http://zaf.svn.sourceforge.net/zaf/?rev=10679&view=rev
Author: dwaynebailey
Date: 2012-04-05 13:31:48 +0000 (Thu, 05 Apr 2012)
Log Message:
-----------
Ignore the \r message that clogs our output
Modified Paths:
--------------
trunk/po/fftb/cleanup-msgcat.sh
Modified: trunk/po/fftb/cleanup-msgcat.sh
===================================================================
--- trunk/po/fftb/cleanup-msgcat.sh 2012-04-05 07:59:07 UTC (rev 10678)
+++ trunk/po/fftb/cleanup-msgcat.sh 2012-04-05 13:31:48 UTC (rev 10679)
@@ -4,6 +4,6 @@
do
for po in $(find $lang -name "*.po")
do
- msgcat $po > $po.2 && mv $po.2 $po
+ msgcat -o $po.2 $po 2> >(egrep -v "warning: internationalised messages should not contain the .* escape sequence" >&2) && mv $po.2 $po
done
done
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|