*/
function formLegend()
{
- $this->out->element('legend', null, _('Delete this notice'));
+ $this->out->element('legend', null, _('Favor this notice'));
}
function formActions()
{
$this->out->submit('favor-submit-' . $this->notice->id,
- _('Favorite'));
+ _('Favor this notice'));
}
/**
$this->out->element('dt', null, _('Reply to this notice'));
$this->out->elementStart('dd');
$this->out->element('a', array('href' => $reply_url,
- 'title' => _('reply')), _('Reply'));
+ 'title' => _('Reply to this notice')), _('Reply'));
$this->out->elementEnd('dd');
$this->out->elementEnd('dl');
}
$this->out->element('dt', null, _('Delete this notice'));
$this->out->elementStart('dd');
$this->out->element('a', array('href' => $deleteurl,
- 'title' => _('delete')), _('Delete'));
+ 'title' => _('Delete this notice')), _('Delete'));
$this->out->elementEnd('dd');
$this->out->elementEnd('dl');
}