How to change texts in identityIQ front-end?

Version 8.2

I need to change text that appears on an approving user’s screen, but I’m not finding where I can change it in the code. I would like to know if there is a folder when IdentityIQ is installed where the codes for the front-end part of the system are stored

You can use iiqCustom.properties file to overwrite the default text.

The messages are stored per language in the following location: ‘sailpoint/web/messages/iiqMessages_cc.properties’

Could you please share the screenshot of approving user’s screen for which you want to change the texts

Sure! Here’s a print
I would like to change the “Approval Complete” text or the “Cancel” and “Complete” buttons

Seems weird today I can see your latest message which you had replied 4 days back.

Could you add below entry in “iiqCustom.properties” file? This file will be located under

Path: (Tomcat Path installation)\Tomcat 9.0\webapps\identityiq\WEB-INF\classes\sailpoint\web\messages

Entry: ui_my_approvals_completion_title=<Custom Message>

ui_my_approvals_completion_title is a key for the approval pop up title. This key can be find in the OOTB messages file.

Note: After adding you need to restart the server to see the changes

That was it! Thank you very much! :slight_smile:
One last question, do you have a file with all the keys that can be changed in the system? If possible, can you send a print? I don’t know if it’s possible to send files here on the forum

@gabriel_cantano you can get all the key name from below class
sailpoint.web.messages.MessageKeys
You can open identityiq.jar from decompiler tool like jdgui and then go to this class, here you can get all the key name which you can use in custommesssage file and change the value.
Also check the below file to see what is message is showing
sailpoint.web.messages.iiqMessages_en.properties

So whatever message you are seeing on ui u can search in this file.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.