How to translate Annotation into french language?

thirumala2
Tera Guru

Hi ,

We have a requirement to convert a Annotation into its french part :

ci ci.PNG

 

It has been added to  the form like below :

 

annotation.PNG

Kindly help me in convert it to its french word whenever system language is changed to french .

2 ACCEPTED SOLUTIONS

OlaN
Giga Sage
Giga Sage

Hi,

You can translate annotations by using message records.

Check out the Docs.

View solution in original post

SatyakiBose
Mega Sage

Hello @thirumala2 

The steps are:

Before you begin

Role required: admin

To support multiple languages, use message records to translate annotation text.

Procedure

  1. Navigate to All > System UI > Messages.
  2. Create a message record for each language you support.
  3. 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.
  4. Select the appropriate Language.
  5. In the Message field, enter the translated annotation text.
  6. 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.

View solution in original post

2 REPLIES 2

OlaN
Giga Sage
Giga Sage

Hi,

You can translate annotations by using message records.

Check out the Docs.

SatyakiBose
Mega Sage

Hello @thirumala2 

The steps are:

Before you begin

Role required: admin

To support multiple languages, use message records to translate annotation text.

Procedure

  1. Navigate to All > System UI > Messages.
  2. Create a message record for each language you support.
  3. 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.
  4. Select the appropriate Language.
  5. In the Message field, enter the translated annotation text.
  6. 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.