10
Just to make it more confusing
...
You could also assign the numerical value to a Smarty template variable, and then do the actual display within the template.
footer.php
$xoopsLogger->stopTime();
$xoopsTpl->assign('ftime', $xoopsLogger->dumpTime());
in template
Erstellungszeit der Seite = <{$ftime|string_format:"%.3f"}> sekunden.
-------------------
You could also use language strings for the text.
<{$smarty.const._XXXX}> = <{$ftime|string_format:"%.3f"}> <{$smarty.const._YYYY}>.
-------------------
You might be able to make it work even with caching by using the Smarty
insert tag.