From d6aee43659b374481e060b869d82013fc56e46b0 Mon Sep 17 00:00:00 2001 From: notiant <238434866+notiant@users.noreply.github.com> Date: Sun, 26 Oct 2025 11:20:16 +0100 Subject: [PATCH] Remove the muted/unmuted notifications --- Assets/Translations/de.json | 4 ---- Assets/Translations/en.json | 4 ---- Assets/Translations/es.json | 4 ---- Assets/Translations/fr.json | 4 ---- Assets/Translations/pt.json | 4 ---- Assets/Translations/zh-CN.json | 4 ---- Services/AudioService.qml | 2 -- 7 files changed, 26 deletions(-) diff --git a/Assets/Translations/de.json b/Assets/Translations/de.json index 0731099f..eaa13197 100644 --- a/Assets/Translations/de.json +++ b/Assets/Translations/de.json @@ -1697,10 +1697,6 @@ "changed": "Energieprofil geändert", "profile-name": "\"{profile}\"" }, - "audio": { - "muted": "Stummgeschaltet", - "unmuted": "Lautgeschaltet" - }, "battery": { "low": "Niedriger Batteriestand", "low-desc": "Batterie ist bei {percent}%. Bitte schließen Sie das Ladegerät an." diff --git a/Assets/Translations/en.json b/Assets/Translations/en.json index 8409738d..eb11ba3b 100644 --- a/Assets/Translations/en.json +++ b/Assets/Translations/en.json @@ -1657,10 +1657,6 @@ "changed": "Power profile changed", "profile-name": "\"{profile}\"" }, - "audio": { - "muted": "Muted", - "unmuted": "Unmuted" - }, "battery": { "low": "Low battery", "low-desc": "Battery is at {percent}%. Please connect the charger." diff --git a/Assets/Translations/es.json b/Assets/Translations/es.json index 59fd5722..c05f5171 100644 --- a/Assets/Translations/es.json +++ b/Assets/Translations/es.json @@ -1657,10 +1657,6 @@ "changed": "Perfil de energía cambiado", "profile-name": "\"{profile}\"" }, - "audio": { - "muted": "Silenciado", - "unmuted": "Sonido activado" - }, "battery": { "low": "Batería baja", "low-desc": "La batería está al {percent}%. Por favor, conecta el cargador." diff --git a/Assets/Translations/fr.json b/Assets/Translations/fr.json index 0914fdf8..45f51e82 100644 --- a/Assets/Translations/fr.json +++ b/Assets/Translations/fr.json @@ -1657,10 +1657,6 @@ "changed": "Profil d'alimentation changé", "profile-name": "\"{profile}\"" }, - "audio": { - "muted": "Son coupé", - "unmuted": "Son rétabli" - }, "battery": { "low": "Batterie faible", "low-desc": "La batterie est à {percent}%. Veuillez brancher le chargeur." diff --git a/Assets/Translations/pt.json b/Assets/Translations/pt.json index acfc7479..64c1a565 100644 --- a/Assets/Translations/pt.json +++ b/Assets/Translations/pt.json @@ -1657,10 +1657,6 @@ "changed": "Perfil de energia alterado", "profile-name": "\"{profile}\"" }, - "audio": { - "muted": "Silenciado", - "unmuted": "Som ativado" - }, "battery": { "low": "Bateria Fraca", "low-desc": "A bateria está em {percent}%. Por favor, conecte o carregador." diff --git a/Assets/Translations/zh-CN.json b/Assets/Translations/zh-CN.json index 4a137b61..8ca2be9d 100644 --- a/Assets/Translations/zh-CN.json +++ b/Assets/Translations/zh-CN.json @@ -1657,10 +1657,6 @@ "changed": "电源模式已更改", "profile-name": "\"{profile}\"" }, - "audio": { - "muted": "已静音", - "unmuted": "已取消静音" - }, "battery": { "low": "电量低", "low-desc": "电量为 {percent}%。请连接充电器。" diff --git a/Services/AudioService.qml b/Services/AudioService.qml index 38182d8a..2fbb8630 100644 --- a/Services/AudioService.qml +++ b/Services/AudioService.qml @@ -62,7 +62,6 @@ Singleton { function onMutedChanged() { root._muted = (sink?.audio.muted ?? true) Logger.i("AudioService", "OnMuteChanged:", root._muted) - ToastService.showNotice(I18n.tr("settings.audio.devices.output-device.label"), root._muted ? I18n.tr("toast.audio.muted") : I18n.tr("toast.audio.unmuted")) } } @@ -80,7 +79,6 @@ Singleton { function onMutedChanged() { root._inputMuted = (source?.audio.muted ?? true) Logger.i("AudioService", "OnInputMuteChanged:", root._inputMuted) - ToastService.showNotice(I18n.tr("settings.audio.devices.input-device.label"), root._inputMuted ? I18n.tr("toast.audio.muted") : I18n.tr("toast.audio.unmuted")) } }