netsurf/cocoa/extract-strings.sh
Sven Weidauer de74250a3e Building translated nib files if strings file exist.
svn path=/trunk/netsurf/; revision=11802
2011-02-25 21:50:21 +00:00

12 lines
136 B
Bash
Executable File

#!/bin/sh
for i in $1/*.xib
do
xib=`basename "$i"`
strings="$2/$xib.strings"
ibtool "$i" --generate-strings-file "$strings"
done