this is now obsolete, use the makefile

This commit is contained in:
Antoine Beaupré 2006-05-13 22:17:35 +00:00
parent 8741e5a51d
commit 740fbb661a
2 changed files with 0 additions and 23 deletions

1
.gitattributes vendored
View File

@ -252,7 +252,6 @@ bureau/locales/fr_FR/LC_MESSAGES/manual.po -text
bureau/locales/fr_FR/LC_MESSAGES/messages.po -text
bureau/locales/manual.po -text
bureau/locales/messages.pot -text
bureau/locales/updatelang.sh -text
bureau/style.css -text
debian/.cvsignore -text
debian/README.Debian -text

View File

@ -1,22 +0,0 @@
#!/bin/sh
# Update po files in locales/$1/LC_MESSAGES
#
if [ "$1" = "all" ]
then
find -type d -maxdepth 1 -mindepth 1 -exec ./updatelang.sh {} \;
exit 0
fi
if [ -d $1/LC_MESSAGES ]
then
for i in *.po
do
echo -n "Updating $i : "
msgmerge -v -U $1/LC_MESSAGES/$i $i
echo " Done."
done
else
echo "Usage : updatelang.sh <lang code>"
echo " Update the .po files in <lang code>/LC_MESSAGES directory"
echo " Use 'all' as lang code to update all the po files"
fi