File: make_mo_all

package info (click to toggle)
phpldapadmin 1.1.0.5-6%2Blenny2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 5,008 kB
  • ctags: 3,949
  • sloc: php: 17,735; xml: 1,532; sh: 388; makefile: 46
file content (15 lines) | stat: -rwxr-xr-x 197 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

HOME=$PWD/$(dirname $0)
cd ../../locale

for i in $(ls -1); do
	if [ $i == 'CVS' ];  then
		continue;
	else
		echo Processing: $i
		cd $i/LC_MESSAGES
		$HOME/make_mo
		cd ../..
	fi
done