Pleas fix that:

old
$name .= ' <em>(default)</em>';

new
$name .= ' <em>('.t('default').')</em>';

line 366 in accounttypes.module

Comments

quiptime’s picture

Next things. Please fix that.

old

$header[] = array('data' => $name. '<br />Allow');
$header[] = array('data' => $name. '<br />Init');

new

$header[] = array('data' => $name. '<br />' .t('Allow'));
$header[] = array('data' => $name. '<br />' .t('Init'));

lines 553, 554 in accounttypes.module

rconstantine’s picture

Status: Active » Reviewed & tested by the community

Sorry about that. I thought I got them all. Thanks. Will be in the next release.