- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2024 12:29 AM
I have created a UI Action button Cancelled by requestor. I need to add Norwegian translation for this button. I did the following:
However, I am unable to see the translation happening in the agent workspace (SOW). Any suggestion on how this can be done?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2024 11:31 PM
Finally managed to do translation by following this blog: https://www.servicenow.com/community/developer-articles/debugging-language-translations-in-serviceno...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2024 12:44 AM
Workspaces are the worst with caching...
Could you perform a 'cache.do' and check if it's there?
Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2024 12:56 AM
Tried that but unfortunately did not work 😔
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2024 11:31 PM
Finally managed to do translation by following this blog: https://www.servicenow.com/community/developer-articles/debugging-language-translations-in-serviceno...

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2024 04:00 AM
I also stumbled across this problem. Since activating the I18N Debugging (as referenced in your solution ) is not a viable option, I searched the missing translation manually.
The UI Actions for the SOW are linked in the table sys_ux_form_action_layout_item. Look for your UI Action (in your case "Cancelled by requestor") in the list there and open it. You might need some information from here to create the missing translation.
Records in the sys_ux_form_action_layout_item table are translated using Translated Name / Field (sys_translated) translations. Therefore, create a new record in sys_translated with the following information:
Label (translate): <your translation in the target language>
Language: <your target language code>
Table: sys_ux_form_action_layout_item
Value: <the label of the UI Action to translate, in this case "Cancelled by requestor">
Element: label
After the creation of this translated name / field record, head to cache.do to clear the cache. Afterwards, the UI Action must display the proper translated label.