Update help text
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user