You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
411 B
16 lines
411 B
15 years ago
|
template=`find . -name "*.pot" | sed -e 's#^./\(.*\)$#\1#'`
|
||
|
files=`find . -name "*.po" | sed -e 's#^./\(.*\)$#\1#'`
|
||
|
test -n "$VERBOSE" && echo $files
|
||
|
|
||
|
for file in $files; do
|
||
|
echo merging $file
|
||
|
files=
|
||
|
if test ! -s $file; then
|
||
|
echo "ERROR: $file is empty!"
|
||
|
elif msgmerge --no-wrap -q -o $file $file $template; then
|
||
|
files="$files $file"
|
||
|
else
|
||
|
echo "ERROR: msgmerge failed for $file"
|
||
|
fi
|
||
|
done
|