From 758627f438ff2c6cc10d6e92f9432ea8f45c2e28 Mon Sep 17 00:00:00 2001 From: Usama Date: Thu, 5 Feb 2026 16:59:44 +0000 Subject: [PATCH] - Naming related changes "Conversation Artefacts" -> "Conversation Outcomes", "Refine" -> "ECHO", "Go deeper" -> "Explore", "Make it concrete" -> "Verify" --- .../conversation/VerifiedArtefactsSection.tsx | 4 ++-- .../components/participant/EchoErrorAlert.tsx | 4 ++-- .../ParticipantConversationAudio.tsx | 20 ++++++++-------- .../participant/refine/RefineSelection.tsx | 10 ++++---- .../participant/verify/VerifyArtefact.tsx | 18 +++++++------- .../verify/VerifyArtefactError.tsx | 11 ++++----- .../project/ProjectPortalEditor.tsx | 24 +++++++++---------- 7 files changed, 44 insertions(+), 47 deletions(-) diff --git a/echo/frontend/src/components/conversation/VerifiedArtefactsSection.tsx b/echo/frontend/src/components/conversation/VerifiedArtefactsSection.tsx index 65787087..be509b4d 100644 --- a/echo/frontend/src/components/conversation/VerifiedArtefactsSection.tsx +++ b/echo/frontend/src/components/conversation/VerifiedArtefactsSection.tsx @@ -86,12 +86,12 @@ export const VerifiedArtefactsSection = ({ - <Trans>Artefacts</Trans> + <Trans>Outcomes</Trans> diff --git a/echo/frontend/src/components/participant/EchoErrorAlert.tsx b/echo/frontend/src/components/participant/EchoErrorAlert.tsx index 5d08461b..cac18134 100644 --- a/echo/frontend/src/components/participant/EchoErrorAlert.tsx +++ b/echo/frontend/src/components/participant/EchoErrorAlert.tsx @@ -18,9 +18,9 @@ export const EchoErrorAlert = ({ error }: { error: Error }) => { content policy. ) : ( - + Something went wrong. Please try again by pressing the{" "} - Go deeper button, or contact + Explore button, or contact support if the issue continues. )} diff --git a/echo/frontend/src/components/participant/ParticipantConversationAudio.tsx b/echo/frontend/src/components/participant/ParticipantConversationAudio.tsx index cf92be31..d9122c10 100644 --- a/echo/frontend/src/components/participant/ParticipantConversationAudio.tsx +++ b/echo/frontend/src/components/participant/ParticipantConversationAudio.tsx @@ -419,27 +419,27 @@ export const ParticipantConversationAudio = () => { const getRefineModalTitle = () => { if (showVerify && showEcho) { return ( - - "Refine" available soon + + "ECHO" available soon ); } if (showVerify) { return ( - - "Make it concrete" available soon + + "Verify" available soon ); } if (showEcho) { return ( - - "Go deeper" available soon + + "Explore" available soon ); } return ( - + Feature available soon ); @@ -447,8 +447,8 @@ export const ParticipantConversationAudio = () => { const getRefineInfoReason = () => { return ( - - We need a bit more context to help you refine effectively. Please + + We need a bit more context to help you use ECHO effectively. Please continue recording so we can provide better suggestions. ); @@ -727,7 +727,7 @@ export const ParticipantConversationAudio = () => { /> )} - Refine + ECHO )} diff --git a/echo/frontend/src/components/participant/refine/RefineSelection.tsx b/echo/frontend/src/components/participant/refine/RefineSelection.tsx index c76bfa5d..0273886c 100644 --- a/echo/frontend/src/components/participant/refine/RefineSelection.tsx +++ b/echo/frontend/src/components/participant/refine/RefineSelection.tsx @@ -47,7 +47,7 @@ export const RefineSelection = () => { return ( - {/* Make it concrete option */} + {/* Verify option */} {showVerify && ( { - <Trans id="participant.refine.make.concrete"> - Make it concrete - </Trans> + <Trans id="participant.echo.verify">Verify</Trans> @@ -101,7 +99,7 @@ export const RefineSelection = () => { )} - {/* Go deeper option */} + {/* Explore option */} {showEcho && ( { - <Trans id="participant.refine.go.deeper">Go deeper</Trans> + <Trans id="participant.echo.explore">Explore</Trans> diff --git a/echo/frontend/src/components/participant/verify/VerifyArtefact.tsx b/echo/frontend/src/components/participant/verify/VerifyArtefact.tsx index 61fdc09b..6a49603a 100644 --- a/echo/frontend/src/components/participant/verify/VerifyArtefact.tsx +++ b/echo/frontend/src/components/participant/verify/VerifyArtefact.tsx @@ -87,7 +87,7 @@ export const VerifyArtefact = () => { // Redirect if artifact failed to load if (!artefactQuery.data) { - toast.error(t`Unable to load the generated artefact. Please try again.`); + toast.error(t`Unable to load the generated outcome. Please try again.`); navigate(`/${projectId}/conversation/${conversationId}`, { replace: true, }); @@ -130,11 +130,11 @@ export const VerifyArtefact = () => { // Show toast after navigation so it appears in the destination route's Toaster setTimeout(() => { - toast.success(t`Artefact approved successfully!`); + toast.success(t`Outcome approved successfully!`); setIsApproving(false); }, 100); } catch (error) { - toast.error(t`Failed to approve artefact. Please try again.`); + toast.error(t`Failed to approve outcome. Please try again.`); console.error("error approving artefact: ", error); } finally { setIsApproving(false); @@ -172,7 +172,7 @@ export const VerifyArtefact = () => { updatedArtefact, ); - toast.success(t`Artefact revised successfully!`); + toast.success(t`Outcome revised successfully!`); } catch (error) { if ( error instanceof AxiosError && @@ -183,7 +183,7 @@ export const VerifyArtefact = () => { t`No new feedback detected yet. Please continue your discussion and try again soon.`, ); } else { - toast.error(t`Failed to revise artefact. Please try again.`); + toast.error(t`Failed to revise outcome. Please try again.`); } console.error("error revising artefact: ", error); } finally { @@ -210,7 +210,7 @@ export const VerifyArtefact = () => { setLocalArtefactContent(editedContent); setIsEditing(false); setEditedContent(""); - toast.success(t`Artefact updated successfully!`); + toast.success(t`Outcome updated!`); }; const handleReadAloud = () => { @@ -240,7 +240,7 @@ export const VerifyArtefact = () => { topicsQuery.refetch(), artefactQuery.refetch(), ]); - toast.success(t`Artefact reloaded successfully!`); + toast.success(t`Outcome reloaded successfully!`); } catch (error) { toast.error(t`Failed to reload. Please try again.`); console.error("error reloading artefact: ", error); @@ -312,8 +312,8 @@ export const VerifyArtefact = () => { - - Regenerating the artefact + + Regenerating the outcome diff --git a/echo/frontend/src/components/participant/verify/VerifyArtefactError.tsx b/echo/frontend/src/components/participant/verify/VerifyArtefactError.tsx index 20afc373..efecdf30 100644 --- a/echo/frontend/src/components/participant/verify/VerifyArtefactError.tsx +++ b/echo/frontend/src/components/participant/verify/VerifyArtefactError.tsx @@ -16,15 +16,14 @@ export const VerifyArtefactError = ({ return ( - - Unable to Load Artefact + + Unable to Load Outcome - - It looks like we couldn't load this artefact. This might be a - temporary issue. You can try reloading or go back to select a - different topic. + + It looks like we couldn't load this outcome. This might be a temporary + issue. You can try reloading or go back to select a different topic. diff --git a/echo/frontend/src/components/project/ProjectPortalEditor.tsx b/echo/frontend/src/components/project/ProjectPortalEditor.tsx index 3d487e4a..3924b59a 100644 --- a/echo/frontend/src/components/project/ProjectPortalEditor.tsx +++ b/echo/frontend/src/components/project/ProjectPortalEditor.tsx @@ -569,7 +569,7 @@ const ProjectPortalEditorComponent: React.FC = ({ - <Trans>Go deeper</Trans> + <Trans>Explore</Trans> @@ -583,10 +583,10 @@ const ProjectPortalEditorComponent: React.FC = ({ Enable this feature to allow participants to request AI-powered responses during their conversation. - Participants can click "Go deeper" after recording - their thoughts to receive contextual feedback, - encouraging deeper reflection and engagement. A - cooldown period applies between requests. + Participants can click "Explore" after recording their + thoughts to receive contextual feedback, encouraging + deeper reflection and engagement. A cooldown period + applies between requests. @@ -597,7 +597,7 @@ const ProjectPortalEditorComponent: React.FC = ({ = ({ - <Trans id="dashboard.dembrane.concrete.title"> - Make it concrete + <Trans id="dashboard.dembrane.verify.title"> + Verify </Trans> @@ -804,7 +804,7 @@ const ProjectPortalEditorComponent: React.FC = ({ = ({ } /> - + Select which topics participants can use for - "Make it concrete". + "Verify". {isVerificationTopicsLoading ? ( @@ -890,7 +890,7 @@ const ProjectPortalEditorComponent: React.FC = ({ normalizedCurrent.length === 1 ) { toast.error( - t`At least one topic must be selected to enable Make it concrete`, + t`At least one topic must be selected to enable Verify`, ); return; }