From ba1e783c8f5067a81a4f55eabf79cf89e9359b16 Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Wed, 26 Nov 2025 20:18:38 -0500 Subject: [PATCH] ColorSchemeService: fixed 2 syntax errors coming from PR #880 --- Services/Theming/ColorSchemeService.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Services/Theming/ColorSchemeService.qml b/Services/Theming/ColorSchemeService.qml index 8c004536..068d7fb3 100644 --- a/Services/Theming/ColorSchemeService.qml +++ b/Services/Theming/ColorSchemeService.qml @@ -26,8 +26,8 @@ Singleton { } // Toast: dark/light mode switched const enabled = !!Settings.data.colorSchemes.darkMode; - const label = enabled ? I18n.tr("toast.dark-mode.dark-mode") : 18n.tr("toast.dark-mode.light-mode"); - const description = 18n.tr("toast.dark-mode.enabled"); + const label = enabled ? I18n.tr("toast.dark-mode.dark-mode") : I18n.tr("toast.dark-mode.light-mode"); + const description = I18n.tr("toast.dark-mode.enabled"); ToastService.showNotice(label, description, "dark-mode"); } }