Let's say I have a list of items like so:
default
cube
page
concave
zoom
linear
fade
none
and I want to change it to the following:
'default' => t('default'),
'cube' => t('cube'),
'page' => t('page'),
'concave' => t('concave'),
'zoom' => t('zoom'),
'linear' => t('linear'),
'fade' => t('fade'),
'none' => t('none'),
Are there any GUI based projects that could let me do this. I know the Mac has Grep Built in and there is also Text Wrangler that allows for GREP, but I find that these are too complicated (especially for short simple lists). Are there any GUI solutions?
