Found a missing translation call

I think that the Elements/PageLayout line 159 (RT 3.8.7):

  <a href="<%RT->Config->Get('WebPath')%>/<%$type->{$action}->{'path'}%>"<%

$type->{$action}->{class} && ’ class="’.$type->{$action}->{class}.’"’
|n %><% $type->{$action}->{id} && ’ id="’.$type->{$action}->{id}.’"’
|n %>><%$type->{$action}->{‘title’}%>

should be:

  <a href="<%RT->Config->Get('WebPath')%>/<%$type->{$action}->{'path'}%>"<%

$type->{$action}->{class} && ’ class="’.$type->{$action}->{class}.’"’
|n %><% $type->{$action}->{id} && ’ id="’.$type->{$action}->{id}.’"’
|n %>><&|/l&><%$type->{$action}->{‘title’}%></&>

to get the tags translated.

Thierry