Update help text

This commit is contained in:
Erik Johnston 2022-11-14 20:57:36 +00:00
parent 6855e61c47
commit a2bbe61292
2 changed files with 4 additions and 4 deletions

View file

@ -42,7 +42,7 @@
"Display name": "Display name", "Display name": "Display name",
"Download debug logs": "Download debug logs", "Download debug logs": "Download debug logs",
"Element Call Home": "Element Call Home", "Element Call Home": "Element Call Home",
"Enable keyboard shortcuts": "Enable keyboard shortcuts", "Single-key keyboard shortcuts": "Single-key keyboard shortcuts",
"Entering room…": "Entering room…", "Entering room…": "Entering room…",
"Exit full screen": "Exit full screen", "Exit full screen": "Exit full screen",
"Fetching group call timed out.": "Fetching group call timed out.", "Fetching group call timed out.": "Fetching group call timed out.",
@ -134,7 +134,7 @@
"Walkie-talkie call": "Walkie-talkie call", "Walkie-talkie call": "Walkie-talkie call",
"Walkie-talkie call name": "Walkie-talkie call name", "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.", "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, e.g. 'm' to mute/unmute the mic.": "Whether to enable the keyboard shortcuts, e.g. 'm' to mute/unmute the mic.", "Whether to enable single-key keyboard shortcuts, e.g. 'm' to mute/unmute the mic.": "Whether to enable single-key keyboard shortcuts, e.g. 'm' to mute/unmute the mic.",
"Yes, join call": "Yes, join call", "Yes, join call": "Yes, join call",
"You can't talk at the same time": "You can't talk at the same time", "You can't talk at the same time": "You can't talk at the same time",
"Your recent calls": "Your recent calls" "Your recent calls": "Your recent calls"

View file

@ -171,11 +171,11 @@ export const SettingsModal = (props: Props) => {
<FieldRow> <FieldRow>
<InputField <InputField
id="keyboardShortcuts" id="keyboardShortcuts"
label={t("Enable keyboard shortcuts")} label={t("Single-key keyboard shortcuts")}
type="checkbox" type="checkbox"
checked={keyboardShortcuts} checked={keyboardShortcuts}
description={t( description={t(
"Whether to enable the keyboard shortcuts, e.g. 'm' to mute/unmute the mic." "Whether to enable single-key keyboard shortcuts, e.g. 'm' to mute/unmute the mic."
)} )}
onChange={(event: React.ChangeEvent<HTMLInputElement>) => onChange={(event: React.ChangeEvent<HTMLInputElement>) =>
setKeyboardShortcuts(event.target.checked) setKeyboardShortcuts(event.target.checked)