Hi
I found one of the two - the Site Colleagues dashlet (on the Site Dashboard)
The problem I had was that the customized roles (when displayed in the Site Colleagues dashlet) were preceded by the word "role."
The file which needs to be edited is
colleagues.get.html.ftl
The file is found in:
/Alfresco/tomcat/webapps/share/WEB-INF/classes/alfresco/site-webscripts/org/alfresco/components/dashlets/
The following line needs to be edited
<div>${msg("role." + m.role)}</div>
It needs to be changed to
<div>${msg(m.role)}</div>
cheers