[Phpmyadmin-devel] script for adding messages

Marc Delisle DelislMa at CollegeSherbrooke.qc.ca
Mon May 7 18:07:36 CEST 2001


Hello,

this shell script adds a message to all message files.  Maybe
someone could put it in the /lang directory?

================================================================
#!/bin/bash
#
# Example:  add_message '$strNewMessage' 'new message contents'
#
for file in *.inc.php3
do
        echo $file " "
        grep -v '?>' ${file} > ${file}.new
        echo "$1=\""  $2  '";  //to translate' >> ${file}.new
        echo "?>" >> ${file}.new
        rm $file
        mv ${file}.new $file
done
echo " "
echo "This script also added the new message to english.inc.php3"
==================================================================




More information about the Developers mailing list