Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
How can i change the "New"?
Hi, how can i change the "new" that appears in unread messages? This one - http://bit.ly/9s9aBR
Thanks!
Thanks!
0
Comments
In any case, I suggest you look at how to create your own language translation of Vanilla and then take a look at applications/vanilla/views/discussions/helper_functions.php ... relevant code is:
if ($CountUnreadComments == $Discussion->CountComments) echo '<strong>'.T('New').'</strong>'; else if ($CountUnreadComments > 0) echo '<strong>'.Plural($CountUnreadComments, '%s New', '%s New Plural').'</strong>';
This means that in your language, you would have to override the 'New' implementation (and the other one I think).
Good luck,
/cd