"Results for" not getting translated in Faceted Search widget in Service PortalIssue In the Faceted Search widget on the Service Portal, the text string "Results for" does not appear translated when using localized languages. The widget displays "Results for" in English regardless of the selected language.ReleaseAll Releases CauseThe widget uses hardcoded text in the HTML body: <h2 class="h4 panel-title results-heading" tabindex="-1">${{{t_label}} results for "{{data.q}}"}</h2> This format improperly combines translated and non-translated content, preventing the Service Portal’s i18n engine from recognizing "Results for" as a translatable key.ResolutionTo allow the "Results for" text to be translated: Clone the Faceted Search widget to make it editable.In the cloned widget’s HTML Template (Body), locate the following line: <h2 class="h4 panel-title results-heading" tabindex="-1">${{{t_label}} results for "{{data.q}}"}</h2> Replace it with: <h2 class="h4 panel-title results-heading" tabindex="-1">{{"Results for" | i18n}} "{{data.q}}"</h2> Navigate to System UI → Messages and ensure a translation entry exists: Key: Results forLanguage: (e.g., French, Spanish, etc.)Message: Appropriate translated string (e.g., Résultats pour) Clear the Service Portal cache or do a hard reload to see the updated translation. Best Practices: Use {{"Your text" | i18n}} for hardcoded UI strings.Ensure all keys used in templates exist in sys_ui_message.For dynamic queries or results, keep translations and variables separated in markup.Related LinksTranslate a field label Debug translations