Skip to content
Snippets Groups Projects
Commit ef0e3ffb authored by Steven Wittens's avatar Steven Wittens
Browse files

- #33128: Format plural for %n new

parent 1b66966a
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ function tracker_page($uid = 0) {
if ($new = comment_num_new($node->nid)) {
$comments .= '<br />';
$comments .= l(t('%num new', array('%num' => $new)), "node/$node->nid", NULL, NULL, 'new');
$comments .= l(format_plural($new, '1 new', '%num new'), "node/$node->nid", NULL, NULL, 'new');
}
}
......
......@@ -101,7 +101,7 @@ function tracker_page($uid = 0) {
if ($new = comment_num_new($node->nid)) {
$comments .= '<br />';
$comments .= l(t('%num new', array('%num' => $new)), "node/$node->nid", NULL, NULL, 'new');
$comments .= l(format_plural($new, '1 new', '%num new'), "node/$node->nid", NULL, NULL, 'new');
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment