cancel
Showing results for 
Search instead for 
Did you mean: 

Issue with new Roles

harshad
Champ in-the-making
Champ in-the-making
I was trying a new Role and made the following definitions in permissionDefinitions.xml.

Under permissionSet type="cm:cmobject"

      <permissionGroup name="SubmittoPending" allowFullControl="false" expose="true" >
          <!–includePermissionGroup permissionGroup="Write" type="sys:base"/–>
          <includePermissionGroup permissionGroup="AddChildren" type="sys:base"/>
      </permissionGroup>

Under permissionSet type="cm:folder"

      <permissionGroup name="SubmittoPending" extends="true" expose="true"/>


I see the Role when I go to a folder and click on "Invite Content Users".

Everything works fine. But it shows up as $$SubmitPending$$

From where is $$ coming up?
3 REPLIES 3

andy
Champ on-the-rise
Champ on-the-rise
Hi

That is because the key is not found for internationalising the displayed token.

Regards

Andy

kevinr
Star Contributor
Star Contributor
That is because the key is not found for internationalising the displayed token.

…which is to say that you need to add your role I18N string to the webclient.properties file. Look for this section:

# Repo permission display labels

Thanks,

Kevin

harshad
Champ in-the-making
Champ in-the-making
Thanks, it works.