From 4cd49dee4b1ac42c79d57c0a847903f7cd790129 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Mon, 14 Nov 2022 16:11:32 +0000 Subject: [PATCH] Update description --- public/locales/en-GB/app.json | 2 +- src/settings/SettingsModal.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/locales/en-GB/app.json b/public/locales/en-GB/app.json index 5e78013..55abd4e 100644 --- a/public/locales/en-GB/app.json +++ b/public/locales/en-GB/app.json @@ -134,7 +134,7 @@ "Walkie-talkie call": "Walkie-talkie call", "Walkie-talkie call name": "Walkie-talkie call name", "WebRTC is not supported or is being blocked in this browser.": "WebRTC is not supported or is being blocked in this browser.", - "Whether to enable the keyboard shortcuts to e.g. mute/unmute the local microphone.": "Whether to enable the keyboard shortcuts to e.g. mute/unmute the local microphone.", + "Whether to enable the keyboard shortcuts, e.g. 'm' to mute/unmute the mic.": "Whether to enable the keyboard shortcuts, e.g. 'm' to mute/unmute the mic.", "Yes, join call": "Yes, join call", "You can't talk at the same time": "You can't talk at the same time", "Your recent calls": "Your recent calls" diff --git a/src/settings/SettingsModal.tsx b/src/settings/SettingsModal.tsx index 3b90fd8..c896497 100644 --- a/src/settings/SettingsModal.tsx +++ b/src/settings/SettingsModal.tsx @@ -175,7 +175,7 @@ export const SettingsModal = (props: Props) => { type="checkbox" checked={keyboardShortcuts} description={t( - "Whether to enable the keyboard shortcuts to e.g. mute/unmute the local microphone." + "Whether to enable the keyboard shortcuts, e.g. 'm' to mute/unmute the mic." )} onChange={(event: React.ChangeEvent) => setKeyboardShortcuts(event.target.checked)