Remove the muted/unmuted notifications

This commit is contained in:
notiant
2025-10-26 11:20:16 +01:00
committed by GitHub
parent f403976988
commit d6aee43659
7 changed files with 0 additions and 26 deletions
-4
View File
@@ -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."
-4
View File
@@ -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."
-4
View File
@@ -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."
-4
View File
@@ -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."
-4
View File
@@ -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."
-4
View File
@@ -1657,10 +1657,6 @@
"changed": "电源模式已更改",
"profile-name": "\"{profile}\""
},
"audio": {
"muted": "已静音",
"unmuted": "已取消静音"
},
"battery": {
"low": "电量低",
"low-desc": "电量为 {percent}%。请连接充电器。"
-2
View File
@@ -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"))
}
}