akulion, that is simple.
In AdminCP go to "search in phrases", search "awarded" in all forums, search in "Phrase Text AND Phrase Variable Name"
Then you'll see it in ws_post i believe.
Then click Edit, And then Click the "copy default Text" button
Edit the text, and click save. all done.
Also, just for users who want to be able to ban a user from their profile, add this:
In template MEMBER INFO:
find:
Code:
<if condition="$show['giveinfraction']">
<td class="vbmenu_control"><a href="infraction.php?$session[sessionurl]do=report&u=$userinfo[userid]">$vbphrase[give_infraction]</a></td>
</if>
REPLACE With:
Code:
<if condition="($bbuserinfo[usergroupid]==1">
<td class="vbmenu_control"><a href="modcp/banning.php?do=banuser&userid=$post[userid]" target="#blank"><b>Ban or Suspend $post[username]</b></a></td>
<td class="vbmenu_control"><a href="modcp/banning.php?do=liftban&userid=$post[userid]" target="#blank"><b>Lift Ban on $post[username]</b></span></td>
ALSO in line:
Code:
<if condition="($bbuserinfo[usergroupid]==1 || $bbuserinfo[usergroupid]==5">
<!-- ADD USERGROUPS ON THIS LINE -->
Add all Usergroups who should be able to see this in that line.
Hope this makes it easier for you.