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 1 commit
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
4 changes: 2 additions & 2 deletions Composer/packages/client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ const topLinks = (botLoaded: boolean) => {
{
to: 'language-generation/',
iconName: 'Robot',
labelName: 'Bot Says',
labelName: 'Bot Responses',

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
labelName: 'Bot Responses',
labelName: formatMessage('Bot Responses'),

activeIfUrlContains: 'language-generation',
exact: false,
underTest: !botLoaded,
},
{
to: 'language-understanding/',
iconName: 'People',
labelName: 'User Says',
labelName: 'User Input',

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
labelName: 'User Input',
labelName: formatMessage('User Input'),

activeIfUrlContains: 'language-understanding',
exact: false,
underTest: !botLoaded,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export const LGPage = props => {
<Fragment>
<ToolBar toolbarItems={toolbarItems} />
<div css={ContentHeaderStyle}>
<div>{formatMessage('Bot says')}..</div>
<div>{formatMessage('Bot Responses')}</div>
<div css={flexContent}>
<Toggle
className={'toggleEditMode'}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export const LUPage = props => {
<Fragment>
<ToolBar toolbarItems={toolbarItems} />
<div css={ContentHeaderStyle}>
<div>{formatMessage('User says')}..</div>
<div>{formatMessage('User Input')}</div>
<div css={flexContent}>
<Toggle
className={'toggleEditMode'}
Expand Down