Only check .po files.

This commit is contained in:
Andrius Štikonas 2017-04-08 15:03:11 +01:00
parent d4e87aff33
commit 9180fb7191
1 changed files with 3 additions and 2 deletions

View File

@ -82,8 +82,9 @@ for BRANCH in $BRANCHES; do
<td class=\"title\">graph</td>
</tr>" >> $STATSFILE
for file in `ls "$BRANCH"`; do
filename=`echo $file | sed s/.po//`
for files in $BRANCH/*.po; do
file=`basename $files`
filename=`basename $file .po`
npo=$(($npo + 1)); has_errors="no"; has_warnings="no";
# Extract the declared charset, may be we use this in future.