diff --git a/public/locales/en-GB/app.json b/public/locales/en-GB/app.json index e51f936..5e78013 100644 --- a/public/locales/en-GB/app.json +++ b/public/locales/en-GB/app.json @@ -134,6 +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.", "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 143d6a6..3b90fd8 100644 --- a/src/settings/SettingsModal.tsx +++ b/src/settings/SettingsModal.tsx @@ -174,6 +174,9 @@ export const SettingsModal = (props: Props) => { label={t("Enable keyboard shortcuts")} type="checkbox" checked={keyboardShortcuts} + description={t( + "Whether to enable the keyboard shortcuts to e.g. mute/unmute the local microphone." + )} onChange={(event: React.ChangeEvent) => setKeyboardShortcuts(event.target.checked) }