Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ const DefineConversation: React.FC<DefineConversationProps> = (props) => {
<Fragment>
<DialogWrapper
isOpen
{...DialogCreationCopy.DEFINE_CONVERSATION_OBJECTIVE}
{...DialogCreationCopy.DEFINE_BOT_PROJECT}
dialogType={DialogTypes.CreateFlow}
onDismiss={onDismiss}
>
Expand Down
8 changes: 8 additions & 0 deletions Composer/packages/client/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,14 @@ export const DialogCreationCopy = {
`What can the user accomplish through this conversation? For example, BookATable, OrderACoffee etc.`
),
},
DEFINE_BOT_PROJECT: {
title: formatMessage('Create a bot project'),
subText: formatMessage(`Specify a name, description, and location for your new bot project.`),
},
DEFINE_DIALOG: {
title: formatMessage('Create a dialog'),
subText: formatMessage(`Specify a name and description for your new dialog.`),
},
SELECT_LOCATION: {
title: formatMessage('Select a Bot'),
subText: formatMessage('Which bot do you want to open?'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const CreateDialogModal: React.FC<CreateDialogModalProps> = (props) => {
<DialogWrapper
isOpen={isOpen}
onDismiss={onDismiss}
{...DialogCreationCopy.DEFINE_CONVERSATION_OBJECTIVE}
{...DialogCreationCopy.DEFINE_DIALOG}
dialogType={DialogTypes.DesignFlow}
>
<form onSubmit={handleSubmit}>
Expand Down