1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-02-01 19:14:35 +02:00

fixed typo in modal (#3952)

* fixed typo in modal

* updated snapshots
This commit is contained in:
Shikhar 2022-10-07 19:36:21 +05:30 committed by GitHub
parent 3af20268bc
commit a40f978bc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -381,7 +381,7 @@
"person.add-user-to-board-confirm-button": "Add to board",
"person.add-user-to-board-permissions": "Permissions",
"person.add-user-to-board-question": "Do you want to add {username} to the board?",
"person.add-user-to-board-warning": "{username} is not a member of the board, and will not received any notifications about it.",
"person.add-user-to-board-warning": "{username} is not a member of the board, and will not receive any notifications about it.",
"register.login-button": "or log in if you already have an account",
"register.signup-title": "Sign up for your account",
"rhs-board-non-admin-msg": "You are not an admin of the board",
@ -420,4 +420,4 @@
"tutorial_tip.ok": "Next",
"tutorial_tip.out": "Opt out of these tips.",
"tutorial_tip.seen": "Seen this before?"
}
}

View File

@ -54,7 +54,7 @@ exports[`/components/confirmAddUserForNotifications should match snapshot 1`] =
class="ConfirmAddUserForNotifications"
>
<p>
fake-username is not a member of the board, and will not received any notifications about it.
fake-username is not a member of the board, and will not receive any notifications about it.
</p>
<p>
Do you want to add fake-username to the board?

View File

@ -76,7 +76,7 @@ const ConfirmAddUserForNotifications = (props: Props): JSX.Element => {
<p>
<FormattedMessage
id='person.add-user-to-board-warning'
defaultMessage='{username} is not a member of the board, and will not received any notifications about it.'
defaultMessage='{username} is not a member of the board, and will not receive any notifications about it.'
values={{username: props.user.username}}
/>
</p>