Fix message (#1768)
* Update deleteBoardDialog.tsx * i18n: update en.json Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
This commit is contained in:
parent
23d3ae3584
commit
76cba7c02b
2 changed files with 2 additions and 2 deletions
|
@ -83,7 +83,7 @@
|
|||
"DashboardPage.title": "Dashboard",
|
||||
"DeleteBoardDialog.confirm-cancel": "Cancel",
|
||||
"DeleteBoardDialog.confirm-delete": "Delete",
|
||||
"DeleteBoardDialog.confirm-info": "Are you sure you want to delete the board “{boardTitle}”? Deleting it will delete the property from all cards in this board.",
|
||||
"DeleteBoardDialog.confirm-info": "Are you sure you want to delete the board “{boardTitle}”? Deleting it will delete all cards in the board.",
|
||||
"DeleteBoardDialog.confirm-tite": "Confirm Delete Board",
|
||||
"Dialog.closeDialog": "Close dialog",
|
||||
"EditableDayPicker.today": "Today",
|
||||
|
|
|
@ -37,7 +37,7 @@ export default function DeleteBoardDialog(props: Props): JSX.Element {
|
|||
<p className='body'>
|
||||
<FormattedMessage
|
||||
id='DeleteBoardDialog.confirm-info'
|
||||
defaultMessage='Are you sure you want to delete the board “{boardTitle}”? Deleting it will delete the property from all cards in this board.'
|
||||
defaultMessage='Are you sure you want to delete the board “{boardTitle}”? Deleting it will delete all cards in the board.'
|
||||
values={{
|
||||
boardTitle: props.boardTitle,
|
||||
}}
|
||||
|
|
Loading…
Reference in a new issue