LuckyCoinkydink/lang/addlang.sh
Garvin Hicking 463733b30b New language constants
references #274

(my first cherry-pick)

Conflicts:
	docs/NEWS
2015-01-24 14:58:19 +01:00

15 lines
331 B
Bash
Executable File

#!/bin/bash
if [ "x$1" = "x" ]
then
echo "USAGE: addlang.sh INPUT-FILE"
echo "----------------------------"
echo "This script will append the contents of INPUT-FILE to every "
echo "available language file."
exit 1
else
find . -maxdepth 1 -name \*.php -exec ./append.sh $1 {} \;
cd UTF-8
./recode.sh
fi