Skip to content

Commit

Permalink
Apply text changes from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
  • Loading branch information
PVince81 and nickvergessen committed Dec 15, 2020
1 parent b62bfa2 commit 7ddc298
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/CallView/CallView.vue
Expand Up @@ -486,11 +486,11 @@ export default {
// sometimes the nick name is not available yet...
if (nickName) {
if (raisedHand) {
showMessage(t('spreed', 'Participant {nickName} raised their hand.', { nickName: nickName }))
showMessage(t('spreed', '{nickName} raised their hand.', { nickName: nickName }))
}
} else {
if (raisedHand) {
showMessage(t('spreed', 'A participant raised their hand.'))
showMessage(t('spreed', 'A guest raised their hand.'))
}
}
Expand Down

0 comments on commit 7ddc298

Please sign in to comment.