Fixed notification text
This commit is contained in:
parent
e80234d20a
commit
4a25286816
|
@ -216,23 +216,26 @@ function notification($params)
|
||||||
$item_post_type
|
$item_post_type
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
// "a post"
|
// "George Bull's post"
|
||||||
} elseif ($params['activity']['explicit_tagged']) {
|
} elseif ($params['activity']['explicit_tagged']) {
|
||||||
$dest_str = $l10n->t('%1$s tagged you on [url=%2$s]a %3$s[/url]',
|
$dest_str = $l10n->t('%1$s tagged you on [url=%2$s]%3$s\'s %4$s[/url]',
|
||||||
'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
|
'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
|
||||||
$itemlink,
|
$itemlink,
|
||||||
|
$item['author-name'],
|
||||||
$item_post_type
|
$item_post_type
|
||||||
);
|
);
|
||||||
} elseif ($params['activity']['origin_comment']) {
|
} elseif ($params['activity']['origin_comment']) {
|
||||||
$dest_str = $l10n->t('%1$s answered you on [url=%2$s]a %3$s[/url]',
|
$dest_str = $l10n->t('%1$s answered on [url=%2$s]%3$s\'s %4$s[/url]',
|
||||||
'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
|
'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
|
||||||
$itemlink,
|
$itemlink,
|
||||||
|
$item['author-name'],
|
||||||
$item_post_type
|
$item_post_type
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
$dest_str = $l10n->t('%1$s commented on [url=%2$s]a %3$s[/url]',
|
$dest_str = $l10n->t('%1$s commented on [url=%2$s]%3$s\'s %4$s[/url]',
|
||||||
'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
|
'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
|
||||||
$itemlink,
|
$itemlink,
|
||||||
|
$item['author-name'],
|
||||||
$item_post_type
|
$item_post_type
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue