Add scripts for merging suggestions from pootle

This commit is contained in:
Michal Čihař
2011-02-24 15:51:13 +01:00
parent 09b885e265
commit ea9189cdc2
2 changed files with 38 additions and 0 deletions

7
scripts/pending-po Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
# vim: expandtab sw=4 ts=4 sts=4:
LOCS=`ls po/*.po.pending | sed 's@.*/\(.*\)\.po\.pending@\1@'`
for loc in $LOCS ; do
./scripts/pendingpo.py po/$loc.po po/$loc.po.pending
done