Skip to content

Instantly share code, notes, and snippets.

@davidalexander
Created April 27, 2014 18:00
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 davidalexander/11351615 to your computer and use it in GitHub Desktop.
Save davidalexander/11351615 to your computer and use it in GitHub Desktop.
magento - get all quoted translation strings
# https://twitter.com/mrsopacua/status/447892121283223552 (@mrsopacua)
find app/design/frontend -type f -exec perl -ne 'while($_ =~ /(?<=\W)__\(\s*([\x27\x22])(.+?)\1\s*\)/g) { print "$2\n"; }' {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment