substitute string in php from another file
- by Gjergj Sheldija
i have some old php files which i'd like to convert to use gettext.
those files have a content like this :
$LD = 'Some String';
$Another = 'some other ~n~ string';
i have to substitute all the $LD, $Another in the files where they are declared with something like :
_('Some string');
hacking a bit a created some sort of regexp to find the declarations,
my aim was to use sed and awk to do the replaces..but i don't have any clue on how to do those substitutions ...
any help ...