From 193b533e05203e11e10801a63d6c5d982006c4dd Mon Sep 17 00:00:00 2001 From: Viduni Wickramarachchi Date: Thu, 7 Nov 2024 07:52:22 -0500 Subject: [PATCH] [Obs AI Assistant] Update the word "chat" to "conversation" across the UI Closes https://github.com/elastic/kibana/issues/196999 ## Summary ### Problem The word "chat" and "conversation" have been used in different parts of the UI to refer to the same thing, causing some inconsistency. ### Solution Update all occurrences of "chat" to "conversation" --- .../packages/kbn-ai-assistant/src/buttons/new_chat_button.tsx | 2 +- x-pack/packages/kbn-ai-assistant/src/chat/chat_flyout.tsx | 4 ++-- x-pack/packages/kbn-ai-assistant/src/chat/chat_header.tsx | 4 ++-- x-pack/packages/kbn-ai-assistant/src/chat/disclaimer.tsx | 2 +- .../public/components/buttons/start_chat_button.tsx | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/x-pack/packages/kbn-ai-assistant/src/buttons/new_chat_button.tsx b/x-pack/packages/kbn-ai-assistant/src/buttons/new_chat_button.tsx index 3e515e87c2197..60e37d85b92d9 100644 --- a/x-pack/packages/kbn-ai-assistant/src/buttons/new_chat_button.tsx +++ b/x-pack/packages/kbn-ai-assistant/src/buttons/new_chat_button.tsx @@ -19,7 +19,7 @@ export function NewChatButton( {...nextProps} > {i18n.translate('xpack.aiAssistant.newChatButton', { - defaultMessage: 'New chat', + defaultMessage: 'New conversation', })} ) : ( diff --git a/x-pack/packages/kbn-ai-assistant/src/chat/chat_flyout.tsx b/x-pack/packages/kbn-ai-assistant/src/chat/chat_flyout.tsx index 320beb1ca6b05..f7d8b3b20c433 100644 --- a/x-pack/packages/kbn-ai-assistant/src/chat/chat_flyout.tsx +++ b/x-pack/packages/kbn-ai-assistant/src/chat/chat_flyout.tsx @@ -234,14 +234,14 @@ export function ChatFlyout({ {i18n.translate('xpack.aiAssistant.disclaimer.disclaimerLabel', { defaultMessage: - "This chat is powered by an integration with your LLM provider. LLMs are known to sometimes present incorrect information as if it's correct. Elastic supports configuration and connection to the LLM provider and your knowledge base, but is not responsible for the LLM's responses.", + "This conversation is powered by an integration with your LLM provider. LLMs are known to sometimes present incorrect information as if it's correct. Elastic supports configuration and connection to the LLM provider and your knowledge base, but is not responsible for the LLM's responses.", })} ); diff --git a/x-pack/plugins/observability_solution/observability_ai_assistant/public/components/buttons/start_chat_button.tsx b/x-pack/plugins/observability_solution/observability_ai_assistant/public/components/buttons/start_chat_button.tsx index 15042a251302e..f32b11aaa7abf 100644 --- a/x-pack/plugins/observability_solution/observability_ai_assistant/public/components/buttons/start_chat_button.tsx +++ b/x-pack/plugins/observability_solution/observability_ai_assistant/public/components/buttons/start_chat_button.tsx @@ -18,7 +18,7 @@ export function StartChatButton(props: React.ComponentProps) { {...props} > {i18n.translate('xpack.observabilityAiAssistant.insight.response.startChat', { - defaultMessage: 'Start chat', + defaultMessage: 'Start conversation', })} );