(no subject)
- From: Bjoern Ganslandt <bganslan gmx net>
- To: gnome-i18n gnome org
- Subject: (no subject)
- Date: Thu, 24 Aug 2000 19:45:26 +0200 (CEST)
Heya all,
it seems that the attachments were corrupted the first time I send the
email (I should have read that evolutin start message ;). So here are the
scripts again. I improved them a little too.
Bjoern Ganslandt
#!/bin/sh
# (c) 2000 by Bjoern Ganslandt
lang=de
export CVSROOT=':pserver:anonymous@anoncvs.gnome.org:/cvs/gnome'
lynx --dump -nolist http://cvs.gnome.org/lxr/find?string=$lang%5C.po | grep / |\
sed s@" /"@@ | xargs -n1 cvs -z3 co
exit 0
#!/bin/sh
# (c) 2000 by Bjoern Ganslandt
lang=de
test -e full.po || touch full.po
for po in $(find ./ -name $lang.po); do
msghack --append full.po $po > full2.po
mv full2.po full.po
done
exit 0
#!/bin/sh
# (c) 2000 by Bjoern Ganslandt
lang=de
test -d ".namedp" || mkdir .namedp
for po in $(find ./ -name $lang.po); do
cat $po | grep Project-Id-Version: | \
sed s/'"Project-Id-Version: '// | sed s@'\\n"'@@ | sed s@" VERSION"@@ |\
sed s@" "@_@g | xargs -i cp $po ./.namedp/{}.po
done
msghack --master $(find ./.namedp/ -name "*.po") > $lang.master
rm -rf .namedp/*
exit 0
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]