- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-21-2020 06:47 AM
Hi Experts,
We have a requirement to translate a confirm message from client script.
confirm("You confirm that all information being submitted is accurate. If you are unsure select Cancel to return to editing, otherwise select OK.")
I tried below way and its not working
getMessage(("update personal information message", function(msg){
confirm(msg);}
Any one come across this translation? Please suggest.
Thanks,
Antony
Solved! Go to Solution.
- Labels:
-
Service Catalog

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-22-2020 11:30 PM
Below setup for example, results correctly in Dutch in "Hallo", instead of English "Hello".
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
2020 ServiceNow Community MVP
2020 ServiceNow Developer MVP
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-22-2020 11:30 PM
Below setup for example, results correctly in Dutch in "Hallo", instead of English "Hello".
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
2020 ServiceNow Community MVP
2020 ServiceNow Developer MVP
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-23-2020 01:25 AM
Hi Antony,
Just add <Your message> in "Message" field in client script also, then it will work fine with
confirm(getMessage("<Your message>"));
Please mark helpful if it solves the purpose