repo.or.cz
/
mygpo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
import i18n scripts from gPodder
[mygpo.git]
/
tools
/
i18n
/
validate.sh
blob
62c6684320aa63bb56fb6b9270446ec72f8e0b56
1
#!/bin/sh
2
3
set -e
4
5
for
translation
in
`dirname
$0
`
/
..
/
..
/
mygpo
/
local
e
/*/
LC_MESSAGES
/
django.po
;
do
6
echo
"Checking:
$translation
"
7
msgfmt
--check
"
$translation
"
8
done
9