0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-20 03:36:20 +02:00
postfixadmin/languages/dropspan
Christian Boltz e7d230da28 dropspan:
This is a quick&dirty script to remove HTML from the language files.

It will be deleted from SVN again once this job is done.

    grep '<' en.lang
will print a TODO list ;-)


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@1072 a1433add-5e2c-0410-b055-b7f2511e0802
2011-06-16 17:42:17 +00:00

24 lines
622 B
Bash
Executable File

#!/bin/bash
# This is a quick&dirty script to remove HTML from the language files.
# It will be deleted from SVN again once this job is done.
# grep '<' en.lang
# will print a TODO list ;-)
test -z "$1" && {
echo 'Call this script with the $PALANG variable name as parameter!'
echo 'Example for $PALANG['pAdminEdit_domain_result_error']: '
echo " $0 pAdminEdit_domain_result_error"
exit 1
}
echo before:
grep "'$1'" en.lang
for file in *.lang ; do sed -i "/'$1'/"' s,<span class="error_msg">,,' $file; done
for file in *.lang ; do sed -i "/'$1'/"' s,</span>,,' $file; done
echo after:
grep "'$1'" en.lang