Index: mod1/index.php =================================================================== --- mod1/index.php (revision 27997) +++ mod1/index.php (working copy) @@ -2265,6 +2265,9 @@ if ($LANG->origCharSet != $TYPO3_CONF_VARS['BE']['forceCharset']) { $LANG->origCharSet = $TYPO3_CONF_VARS['BE']['forceCharset']; } + if (substr($label, 0, 4) === 'LLL:') { + $label = $LANG->sL($label); + } $result = $LANG->hscAndCharConv($label, $hsc); $LANG->origCharSet = $charset; return $result;