SF Patch #2901666 - Add localisation for hint elements in templates

This commit is contained in:
Cristian Rigamonti
2010-01-30 14:41:57 +11:00
committed by Deon George
parent d90fe5a6fa
commit 2416230c61
2 changed files with 2 additions and 2 deletions

View File

@@ -474,7 +474,7 @@ class PageRender extends Visitor {
# Is there a hint for this attribute
if ($attribute->getHint())
return sprintf('<acronym title="%s">%s</acronym>',$attribute->getHint(),_('hint'));
return sprintf('<acronym title="%s">%s</acronym>',_($attribute->getHint()),_('hint'));
else
return '';
}