summaryrefslogtreecommitdiff
path: root/frontends/cocoa/extract-strings.sh
blob: c3f58261970202a45a72f430416788896d057884 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

for i in $1/*.xib
do
	xib=`basename "$i"`
	strings="$2/$xib.strings"

	ibtool "$i" --generate-strings-file "$strings"
done