- Add missing i18n() to the top bar

This commit is contained in:
dave 2007-11-23 20:56:59 +00:00
parent 071ded90b0
commit 3479ab4e7f

View File

@ -571,11 +571,11 @@ if(count($config['languages'])>1)
<?
if(is_array($nav)) {
echo "<div id=\"mainwhere\">You are here: ";
echo "<div id=\"mainwhere\">".i18n('You are here:').' ';
foreach($nav as $t=>$l) {
echo "<a href=\"{$config['SFIABDIRECTORY']}/$l\">".i18n($t).'</a> >> ';
}
echo $title;
echo i18n($title);
echo '</div>';
}
?>