i don't figure out a way to extract automaticaly string to be translated in files.
For instance, you've got in your layout and views some echo $this->translate('my_string');
and I want to created the files 'en_US.php', 'fr_FR.php', 'es_ES.php' with the comparative array :
<?php return array('my_string' => 'translation of my string'); ?>
Is it possible ?
Thanks.