From 9565e32280d84581e3cc1219b10f495b6e89baf8 Mon Sep 17 00:00:00 2001 From: Sridou Date: Thu, 23 Oct 2025 23:19:10 +0530 Subject: [PATCH] added descriptions for matugen scheme types --- Assets/Translations/en.json | 11 ++++++++++- Modules/Settings/Tabs/ColorSchemeTab.qml | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Assets/Translations/en.json b/Assets/Translations/en.json index 9b590938..06c39bf6 100644 --- a/Assets/Translations/en.json +++ b/Assets/Translations/en.json @@ -497,7 +497,16 @@ }, "matugen-scheme-type": { "label": "Matugen scheme type", - "description": "Choose the color scheme generation algorithm for Matugen." + "description": { + "scheme-content": "Derives colors that closely match the underlying image`", + "scheme-expressive": "Vibrant palette with playful saturation", + "scheme-fidelity": "High-fidelity palette that preserves source hues", + "scheme-fruit-salad": "Colorful mix of bright contrasting accents", + "scheme-monochrome": "Minimal palette built around a single hue", + "scheme-neutral": "Muted palette with subdued, calming tones", + "scheme-rainbow": "Diverse palette spanning the full spectrum", + "scheme-tonal-spot": "Balanced palette with focused accents" + } } }, "dark-mode": { diff --git a/Modules/Settings/Tabs/ColorSchemeTab.qml b/Modules/Settings/Tabs/ColorSchemeTab.qml index 1b0ff7dc..88388529 100644 --- a/Modules/Settings/Tabs/ColorSchemeTab.qml +++ b/Modules/Settings/Tabs/ColorSchemeTab.qml @@ -256,10 +256,10 @@ ColumnLayout { } } - // Matugen Scheme Type Selection + // Matugen Scheme Type Selection [Descriptions sourced from DankMaterialShell] NComboBox { label: I18n.tr("settings.color-scheme.color-source.matugen-scheme-type.label") - description: I18n.tr("settings.color-scheme.color-source.matugen-scheme-type.description") + description: I18n.tr("settings.color-scheme.color-source.matugen-scheme-type.description." + Settings.data.colorSchemes.matugenSchemeType) enabled: Settings.data.colorSchemes.useWallpaperColors opacity: Settings.data.colorSchemes.useWallpaperColors ? 1.0 : 0.6 visible: Settings.data.colorSchemes.useWallpaperColors