1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-24 20:15:21 -04:00

i18n: add esperonoto and sync

This commit is contained in:
bbedward
2026-06-23 09:45:19 -04:00
parent 84f87dd7f3
commit 63feabf517
24 changed files with 16732 additions and 2024 deletions
+21 -6
View File
@@ -363,15 +363,30 @@ Item {
visible: root.currentWallpaper !== "" && !root.currentWallpaper.startsWith("#")
dropdownWidth: 220
options: [
{ "value": "black", "label": I18n.tr("Black") },
{ "value": "white", "label": I18n.tr("White") },
{ "value": "primary", "label": I18n.tr("Primary Theme Color") },
{ "value": "surface", "label": I18n.tr("Surface Container") },
{ "value": "custom", "label": I18n.tr("Custom") }
{
"value": "black",
"label": I18n.tr("Black")
},
{
"value": "white",
"label": I18n.tr("White")
},
{
"value": "primary",
"label": I18n.tr("Primary Theme Color")
},
{
"value": "surface",
"label": I18n.tr("Surface Container")
},
{
"value": "custom",
"label": I18n.tr("Custom")
}
]
currentMode: SettingsData.wallpaperBackgroundColorMode
customColor: SettingsData.wallpaperBackgroundCustomColor || "#000000"
pickerTitle: I18n.tr("Wallpaper Background Color")
pickerTitle: I18n.tr("Background Color")
onModeSelected: mode => SettingsData.set("wallpaperBackgroundColorMode", mode)
onCustomColorSelected: selectedColor => SettingsData.set("wallpaperBackgroundCustomColor", selectedColor.toString())
}