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-b7f2511e0802pull/2/head
parent
43bde95b57
commit
e7d230da28
@ -0,0 +1,23 @@
|
||||
#!/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
|
||||
|
Loading…
Reference in New Issue