- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2023 12:56 AM
Hi ,
We have a requirement to convert a Annotation into its french part :
It has been added to the form like below :
Kindly help me in convert it to its french word whenever system language is changed to french .
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2023 01:03 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2023 01:19 AM
Hello @thirumala2
The steps are:
Before you begin
Role required: admin
To support multiple languages, use message records to translate annotation text.
Procedure
- Navigate to All > System UI > Messages.
- Create a message record for each language you support.
- On the Message form, set the Key field to a unique identifier for the annotation text.The annotation text is a good key. The key must be the same for each translation message for the annotation.
- Select the appropriate Language.
- In the Message field, enter the translated annotation text.
- Edit the form annotation and reference the message key with a gs.getMessage call.For example, if the message key is Message key text, enter ${gs.getMessage("Message key text")} in the form annotation.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2023 01:03 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2023 01:19 AM
Hello @thirumala2
The steps are:
Before you begin
Role required: admin
To support multiple languages, use message records to translate annotation text.
Procedure
- Navigate to All > System UI > Messages.
- Create a message record for each language you support.
- On the Message form, set the Key field to a unique identifier for the annotation text.The annotation text is a good key. The key must be the same for each translation message for the annotation.
- Select the appropriate Language.
- In the Message field, enter the translated annotation text.
- Edit the form annotation and reference the message key with a gs.getMessage call.For example, if the message key is Message key text, enter ${gs.getMessage("Message key text")} in the form annotation.