Well... I have one archive.php with english content.
I want a way to auto tranlate (one time, via cron job) all the text between "[description] and [instruction] (All description, indeed).
English>Portuguese
Example:
PHP Code:
<HEAD> </HEAD/ Hello World example. Hello! [description] It will be translated [/description] [Instructions] No! [/instructions]
Will be:
PHP Code:
<HEAD> </HEAD/ Hello World example. Hello! [description] Isto foi traduzido [/description] [Instructions] No! [/instructions]
Basically, get an PHP file> translate> save this file overwriting the old one.
How can I do it, any idea?
|