Skip to content

Commit

Permalink
fix: relabel "End Dialog Turn" to "End Turn" for clarity (microsoft#3382
Browse files Browse the repository at this point in the history
)

* Fixes microsoft#3381: relabel "End Dialog Turn" to "End Turn" for clarity

* Relabel End Dialog Turn -> End Turn

Co-authored-by: Chris Whitten <[email protected]>
  • Loading branch information
benbrown and cwhitten authored Jun 12, 2020
1 parent 8f79ba5 commit 54ef28c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const DefaultUISchema: UISchema = {
helpLink: 'https://aka.ms/bfc-understanding-dialogs',
},
[SDKKinds.EndTurn]: {
label: () => formatMessage('End dialog turn'),
label: () => formatMessage('End turn'),
subtitle: () => formatMessage('End Turn'),
helpLink: 'https://aka.ms/bfc-understanding-dialogs',
},
Expand Down
2 changes: 1 addition & 1 deletion Composer/packages/lib/shared/src/labelMap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const ConceptLabels: { [key in ConceptLabelKey]?: LabelOverride } = {
title: formatMessage('End this dialog'),
},
[SDKKinds.EndTurn]: {
title: formatMessage('End dialog turn'),
title: formatMessage('End turn'),
},
[SDKKinds.FirstSelector]: {
title: formatMessage('FirstSelector'),
Expand Down

0 comments on commit 54ef28c

Please sign in to comment.