Hi Devs,
I am working on a project
Most annoying things about it , is changing text in smarty templates
<div id="dashboard">
<span>${myvariable}</span>
<span>Great Taste</span>
<span>Great Reviews</span>
</div>
<div class="clear" id="content">
</div>
So you see there are 2 things in about smaty template code
1.HTML Code 2.PHP Variable ${myvariable}
3. Simple Text’s Like “Great Taste” “Great Reviews” I have 100’s of similar smarty files.
What i want is a tool or way where i open smarty file and see Simple Text files to be translated.
Or Automatically assign Them as Variable and there creates a language file.
So it looks like
<div id="dashboard">
<span>${myvariable}</span>
<span>${lang['great_taste']}</span>
<span>${lang['great_reviews']}</span>
</div>
<div class="clear" id="content">
</div>
I want a tool which can scan through all files and replace them to language variables.
Later i can change them in language file.
Please suggest!
I promise to buy that authors Item as my appreciate for helpful suggestion.
Thanks in advance

