foreach ($groups as $group) {
if (!$first) {
- $this->out->text(', ');
+ $this->out->text( _m('SEPARATOR',', '));
} else {
$this->out->text(' ▶ ');
$first = false;
foreach ($replies as $reply) {
if (!$first) {
- $this->out->text(', ');
+ // TRANS: Separator in profile addressees list.
+ $this->out->text(_m('SEPARATOR',', '));
} else {
- $this->out->text(' ▶ ');
+ // TRANS: Start of profile addressees list.
+ $this->out->text(_(' ▶ '));
$first = false;
}
$this->out->element('a', array('href' => $reply->profileurl,
$source_name = (empty($ns->name)) ? ($ns->code ? _($ns->code) : _m('SOURCE','web')) : _($ns->name);
$this->out->text(' ');
$this->out->elementStart('span', 'source');
- // FIXME: probably i18n issue. If "from" is followed by text, that should be a parameter to "from" (from %s).
+ // @todo FIXME: probably i18n issue. If "from" is followed by text, that should be a parameter to "from" (from %s).
// TRANS: Followed by notice source.
$this->out->text(_('from'));
$this->out->text(' ');