Skip to content

Instantly share code, notes, and snippets.

View 0m3r's full-sized avatar

Oleksandr Krasko 0m3r

View GitHub Profile
@0m3r
0m3r / gist:7578756
Last active March 7, 2017 09:03
Find every translating string at Magento extension code Mage::helper('your_ext')->__('Email')
grep "('your_ext')-.__\(.*\)" -Roh .| sed "s/.*__([\"']//" | sed "s/[\"'].*//g" | sort | uniq | sed "s/\(.*\)/\"\1\",\"\1\"/"