Only check .po files.

This commit is contained in:
Andrius Štikonas 2017-04-08 15:03:11 +01:00
부모 d4e87aff33
커밋 9180fb7191
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@ -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.