mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-04 19:56:45 +02:00
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:
parent
6a7cbce2de
commit
7eff3f6c68
2
.github/workflows/static_analysis.yaml
vendored
2
.github/workflows/static_analysis.yaml
vendored
@ -57,6 +57,8 @@ jobs:
|
||||
welcome_to_element
|
||||
devtools|settings|elementCallUrl
|
||||
labs|sliding_sync_description
|
||||
settings|voip|noise_suppression_description
|
||||
settings|voip|echo_cancellation_description
|
||||
|
||||
i18n_lint_shared_components:
|
||||
name: "i18n Check (Shared Components)"
|
||||
|
||||
@ -216,12 +216,14 @@ export default class VoiceUserSettingsTab extends React.Component<EmptyObject, I
|
||||
<SettingsToggleInput
|
||||
name="voice-noise-suppression"
|
||||
label={_t("settings|voip|noise_suppression")}
|
||||
helpMessage={_t("settings|voip|noise_suppression_description")}
|
||||
checked={this.state.audioNoiseSuppression}
|
||||
onChange={this.onNoiseSuppressionChanged}
|
||||
/>
|
||||
<SettingsToggleInput
|
||||
name="voice-echo-cancellation"
|
||||
label={_t("settings|voip|echo_cancellation")}
|
||||
helpMessage={_t("settings|voip|echo_cancellation_description")}
|
||||
checked={this.state.audioEchoCancellation}
|
||||
onChange={this.onEchoCancellationChanged}
|
||||
/>
|
||||
|
||||
@ -3037,11 +3037,13 @@
|
||||
"connection_section": "Connection",
|
||||
"dialog_title": "<strong>Settings:</strong> Voice & Video",
|
||||
"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_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",
|
||||
"missing_permissions_prompt": "Missing media permissions, click the button below to request.",
|
||||
"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",
|
||||
"title": "Voice & Video",
|
||||
"video_input_empty": "No Webcams detected",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user