Workforce Optimization - Shift Planning - Event names needed to be translated to display in workspaceIssue "sn_shift_planning_even" table has a column "translated_name" which needs to be populated with "name" field values.To support upgrading customers we need to run the below script:var gr = new GlideRecord('sn_shift_planning_event'); gr.query(); while (gr.next()) { gr.setValue('translated_name', gr.getValue('name')); gr.update(); }ReleaseOnly customers with store app Shift planning version (< 5.3.x)