Fix message (#1768)

* Update deleteBoardDialog.tsx

* i18n: update en.json

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
This commit is contained in:
Yusuke Nemoto 2021-11-10 06:26:42 +09:00 committed by GitHub
parent 23d3ae3584
commit 76cba7c02b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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",

View file

@ -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,
}}