Can the Approve/Reject Buttons have a different display label ?
I am trying to use the Approval Process methodology to create and activity for a user that must be completed
Can the Approve/Reject Buttons have a different display label ?
I am trying to use the Approval Process methodology to create and activity for a user that must be completed
Hi Olivia,
During my initial search I found a language file that has Approve/Reject and to do with SugarBPM that an help you. I did not test this, but this logic should work for you.
Original File: modules/pmse_Inbox/language/en_us.lang.php
<?php $mod_strings['LBL_PMSE_LABEL_APPROVE'] = 'Approve'; $mod_strings['LBL_PMSE_LABEL_REJECT'] = 'Reject';
Reference Link to Extend the Language File
Create new language file custom/Extension/modules/pmse_Inbox/language/en_us.custom_approve_reject.php and rename the Approve and Reject below.
<?php $mod_strings['LBL_PMSE_LABEL_APPROVE'] = 'Approve'; $mod_strings['LBL_PMSE_LABEL_REJECT'] = 'Reject';
Follow the manifest.php from the link above to package.
Hi Olivia,
During my initial search I found a language file that has Approve/Reject and to do with SugarBPM that an help you. I did not test this, but this logic should work for you.
Original File: modules/pmse_Inbox/language/en_us.lang.php
<?php $mod_strings['LBL_PMSE_LABEL_APPROVE'] = 'Approve'; $mod_strings['LBL_PMSE_LABEL_REJECT'] = 'Reject';
Reference Link to Extend the Language File
Create new language file custom/Extension/modules/pmse_Inbox/language/en_us.custom_approve_reject.php and rename the Approve and Reject below.
<?php $mod_strings['LBL_PMSE_LABEL_APPROVE'] = 'Approve'; $mod_strings['LBL_PMSE_LABEL_REJECT'] = 'Reject';
Follow the manifest.php from the link above to package.