File: translations-validation.sh

package info (click to toggle)
synfig 1.5.1%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 59,132 kB
  • sloc: cpp: 109,639; sh: 6,121; makefile: 1,458; csh: 243; perl: 238; python: 124; ruby: 73
file content (12 lines) | stat: -rwxr-xr-x 334 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -e

SCRIPTPATH="${BASH_SOURCE[0]}";
pushd `dirname "${SCRIPTPATH}"` > /dev/null
SCRIPTPATH=`pwd`;
popd  > /dev/null

cd "$SCRIPTPATH/.."
for POTFILE in `ls synfig-core/po/*.po`; do echo $POTFILE; msgfmt --check $POTFILE; done
for POTFILE in `ls synfig-studio/po/*.po`; do echo $POTFILE; msgfmt --check $POTFILE; done