diff options
author | Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> | 2024-09-09 14:11:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-09 14:11:01 +0200 |
commit | 92ed83ae63b0a7ff231cef1b480cc0c9faa8f8fe (patch) | |
tree | e78fba8647a94d25365b51b4d65894eb22685cf4 | |
parent | c6323274b20456e9dd982feda95304be24889d09 (diff) |
Improve and reverse the wording of the microphone toggle button for participants
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
-rw-r--r-- | src/components/CallView/shared/VideoBottomBar.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/CallView/shared/VideoBottomBar.vue b/src/components/CallView/shared/VideoBottomBar.vue index 17ece3951a..b28c7da046 100644 --- a/src/components/CallView/shared/VideoBottomBar.vue +++ b/src/components/CallView/shared/VideoBottomBar.vue @@ -212,8 +212,8 @@ export default { }, audioButtonTooltip() { return this.model.attributes.audioAvailable - ? t('spreed', 'Mute') - : t('spreed', 'Muted') + ? t('spreed', 'Unmute') + : t('spreed', 'Mute') }, // Video indicator |