]> git.sur5r.net Git - minitube/blob - locale/lupdate.sh
102d7073d200a9714c6026b534d09741b0488bf0
[minitube] / locale / lupdate.sh
1 #!/bin/bash
2 #
3 # This script was written to update all the .ts files in one go
4 #
5 # This script is donated to the public domain
6 #
7 # Flavio Tordini, 2009
8
9 for I in `ls -1 *.ts`;
10 do
11   echo Updating $I
12   lupdate-qt4 ../minitube.pro -ts $I
13 done
14