mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-28 17:23:09 +03:00
12 lines
136 B
Bash
12 lines
136 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for i in $1/*.xib
|
||
|
do
|
||
|
xib=`basename "$i"`
|
||
|
strings="$2/$xib.strings"
|
||
|
|
||
|
ibtool "$i" --generate-strings-file "$strings"
|
||
|
done
|
||
|
|
||
|
|