From 83bf3386a6d0604a53ea87c0704ce225cc9151d0 Mon Sep 17 00:00:00 2001 From: senkun Date: Fri, 7 Nov 2025 00:46:23 +0800 Subject: batterymon : fix toast text for charger unplugged (#887) --- modules/BatteryMonitor.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/BatteryMonitor.qml b/modules/BatteryMonitor.qml index 7a3be12..d24cff2 100644 --- a/modules/BatteryMonitor.qml +++ b/modules/BatteryMonitor.qml @@ -15,7 +15,7 @@ Scope { function onOnBatteryChanged(): void { if (UPower.onBattery) { if (Config.utilities.toasts.chargingChanged) - Toaster.toast(qsTr("Charger unplugged"), qsTr("Battery is now on AC"), "power_off"); + Toaster.toast(qsTr("Charger unplugged"), qsTr("Battery is discharging"), "power_off"); } else { if (Config.utilities.toasts.chargingChanged) Toaster.toast(qsTr("Charger plugged in"), qsTr("Battery is charging"), "power"); -- cgit v1.2.3-freya