Skip to content

Instantly share code, notes, and snippets.

@Naouak
Created March 29, 2012 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Naouak/2243486 to your computer and use it in GitHub Desktop.
Save Naouak/2243486 to your computer and use it in GitHub Desktop.
Auto translation script for joomla
function JTranslate {
COMPONENT=$1;
COMPONENTUPPER=`echo $COMPONENT | sed y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/`;
touch ../../language/en-GB/en-GB.$COMPONENT.ini;
{ find . -exec grep -o `echo $COMPONENTUPPER"[A-Z0-9_]*"` {} \; | sort -u && find ../../language/en-GB/en-GB.$COMPONENT.ini -exec grep -o `echo $COMPONENTUPPER"[A-Z0-9_]*"` {} \; | sort -u;} | sort | uniq -u | sed s/$/=\"\"/ >> ../../language/en-GB/en-GB.$COMPONENT.ini;
vim ../../language/en-GB/en-GB.$COMPONENT.ini;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment