Add descriptions to voice processing settings (#32464)
* chore(settings): add descriptions to voice processing settings * chore: remove non-English translation updates * chore(ci): add voice processing description keys to yml allowlist
This commit is contained in:
@@ -57,6 +57,8 @@ jobs:
|
|||||||
welcome_to_element
|
welcome_to_element
|
||||||
devtools|settings|elementCallUrl
|
devtools|settings|elementCallUrl
|
||||||
labs|sliding_sync_description
|
labs|sliding_sync_description
|
||||||
|
settings|voip|noise_suppression_description
|
||||||
|
settings|voip|echo_cancellation_description
|
||||||
|
|
||||||
i18n_lint_shared_components:
|
i18n_lint_shared_components:
|
||||||
name: "i18n Check (Shared Components)"
|
name: "i18n Check (Shared Components)"
|
||||||
|
|||||||
@@ -216,12 +216,14 @@ export default class VoiceUserSettingsTab extends React.Component<EmptyObject, I
|
|||||||
<SettingsToggleInput
|
<SettingsToggleInput
|
||||||
name="voice-noise-suppression"
|
name="voice-noise-suppression"
|
||||||
label={_t("settings|voip|noise_suppression")}
|
label={_t("settings|voip|noise_suppression")}
|
||||||
|
helpMessage={_t("settings|voip|noise_suppression_description")}
|
||||||
checked={this.state.audioNoiseSuppression}
|
checked={this.state.audioNoiseSuppression}
|
||||||
onChange={this.onNoiseSuppressionChanged}
|
onChange={this.onNoiseSuppressionChanged}
|
||||||
/>
|
/>
|
||||||
<SettingsToggleInput
|
<SettingsToggleInput
|
||||||
name="voice-echo-cancellation"
|
name="voice-echo-cancellation"
|
||||||
label={_t("settings|voip|echo_cancellation")}
|
label={_t("settings|voip|echo_cancellation")}
|
||||||
|
helpMessage={_t("settings|voip|echo_cancellation_description")}
|
||||||
checked={this.state.audioEchoCancellation}
|
checked={this.state.audioEchoCancellation}
|
||||||
onChange={this.onEchoCancellationChanged}
|
onChange={this.onEchoCancellationChanged}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -3037,11 +3037,13 @@
|
|||||||
"connection_section": "Connection",
|
"connection_section": "Connection",
|
||||||
"dialog_title": "<strong>Settings:</strong> Voice & Video",
|
"dialog_title": "<strong>Settings:</strong> Voice & Video",
|
||||||
"echo_cancellation": "Echo cancellation",
|
"echo_cancellation": "Echo cancellation",
|
||||||
|
"echo_cancellation_description": "Removes echo from your microphone input during calls. This setting also applies to Element Call.",
|
||||||
"enable_fallback_ice_server": "Allow fallback call assist server (%(server)s)",
|
"enable_fallback_ice_server": "Allow fallback call assist server (%(server)s)",
|
||||||
"enable_fallback_ice_server_description": "Only applies if your homeserver does not offer one. Your IP address would be shared during a call.",
|
"enable_fallback_ice_server_description": "Only applies if your homeserver does not offer one. Your IP address would be shared during a call.",
|
||||||
"mirror_local_feed": "Mirror local video feed",
|
"mirror_local_feed": "Mirror local video feed",
|
||||||
"missing_permissions_prompt": "Missing media permissions, click the button below to request.",
|
"missing_permissions_prompt": "Missing media permissions, click the button below to request.",
|
||||||
"noise_suppression": "Noise suppression",
|
"noise_suppression": "Noise suppression",
|
||||||
|
"noise_suppression_description": "Reduces background noise in your microphone input during calls. This setting also applies to Element Call.",
|
||||||
"request_permissions": "Request media permissions",
|
"request_permissions": "Request media permissions",
|
||||||
"title": "Voice & Video",
|
"title": "Voice & Video",
|
||||||
"video_input_empty": "No Webcams detected",
|
"video_input_empty": "No Webcams detected",
|
||||||
|
|||||||
Reference in New Issue
Block a user