feat(settings): 为主题样式设置添加解释

This commit is contained in:
Super12138 2025-02-05 11:21:25 +08:00
parent 70da0be4f1
commit 72b75e2353
3 changed files with 3 additions and 0 deletions

View file

@ -31,6 +31,7 @@ fun PalettePicker(
RowSettingsItem(
title = stringResource(R.string.pref_palette_style),
description = stringResource(R.string.pref_palette_style_desc),
horizontalArrangement = Arrangement.spacedBy(5.dp)
) {
items(items = paletteOptions, key = { it.id }) { paletteStyle ->

View file

@ -51,6 +51,7 @@
<string name="pref_appearance_dynamic_color">动态配色</string>
<string name="pref_appearance_dynamic_color_desc">使用系统壁纸的主题颜色,仅在 Android 12+ 上生效</string>
<string name="pref_palette_style">主题样式</string>
<string name="pref_palette_style_desc">选择应用主题色的配色方式</string>
<string name="palette_tonal_spot">色调点</string>
<string name="palette_neutral">中性</string>
<string name="palette_vibrant">鲜艳</string>

View file

@ -52,6 +52,7 @@
<string name="pref_appearance_dynamic_color">Dynamic Color</string>
<string name="pref_appearance_dynamic_color_desc">Use the system wallpaper\'s theme color, available on Android 12+</string>
<string name="pref_palette_style">Palette Style</string>
<string name="pref_palette_style_desc">Choose the color scheme method for applying the theme color</string>
<string name="palette_tonal_spot">Tonal Spot</string>
<string name="palette_neutral">Neutral</string>
<string name="palette_vibrant">Vibrant</string>