Translate of language in customize service portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-14-2017 05:12 AM
Hello we are using language internationalization through language picker in the service portal.
But most of the fields and labels in the portal are customize,So when we are changing the instance language the fields and labels are still in the same lang.(English)
Can someone suggest from where I can change the language or enter the recordfor those fields so that it reflect when we select any other language
- Labels:
-
Service Portal Development

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-14-2017 05:15 AM
The same rules apply for portals as they do for the standard UI. You need to create the appropriate translated records in sys_ui_message, sys_translated_text, sys_documentation, and sys_choice.
Additionally, your portal needs to be language aware, using function calls instead of hard coded text.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2018 05:06 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2018 05:27 AM
The way I do translated text in Service Portal is to get the text during the server script (which runs first) and use it in the HTML. Something like this:
var data.msg_more = gs.getMessage('my_app_more_message');
then in the HTML...
{{data.msg_more}}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-12-2018 04:29 AM
If I have answered your question, please mark my response as correct so that others with the same question in the future can find it quickly and that it gets removed from the Unanswered list.
If you are viewing this from the community inbox you will not see the correct answer button. If so, please review How to Mark Answers Correct From Inbox View.
Thank you