mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-23 14:59:47 +03:00
de74250a3e
svn path=/trunk/netsurf/; revision=11802
12 lines
136 B
Bash
Executable File
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
|
|
|
|
|