Hi,
For translating text in php I use this:
<?php
$currentlang = get_bloginfo('language');
if($currentlang=="en-US"):
?>
<h2>ENGLISH TXT</h2>
<?php else: ?>
<h2>OTHER LANGUAGE</h2>
<?php endif; ?>
Maybe it will help you solve the problem!