@@ -8,15 +8,15 @@ ColumnLayout {
88 id: root
99 property var pluginApi: null
1010
11- // 1. Estado local (convención 'edit' y fallbacks oficiales )
11+ // 1. Local state ( 'edit' convention and official fallbacks )
1212 property string editOverlayPath: pluginApi? .pluginSettings ? .overlayPath || pluginApi? .manifest ? .metadata ? .defaultSettings ? .overlayPath || " ~/.cache/noctalia/HVE/overlay.conf"
1313 property bool editAutoApply: pluginApi? .pluginSettings ? .autoApply ?? pluginApi? .manifest ? .metadata ? .defaultSettings ? .autoApply ?? true
1414 property string editIcon: pluginApi? .pluginSettings ? .icon || pluginApi? .manifest ? .metadata ? .defaultSettings ? .icon || " adjustments-horizontal"
1515 property string editIconColor: pluginApi? .pluginSettings ? .iconColor || pluginApi? .manifest ? .metadata ? .defaultSettings ? .iconColor || " primary"
1616
1717 spacing: Style .marginM
1818
19- // ── Vista previa ──────────────────────────────────────────────────────────
19+ // ── Preview ────── ──────────────────────────────────────────────────────────
2020 RowLayout {
2121 spacing: Style .marginM
2222 Layout .alignment : Qt .AlignHCenter
@@ -38,7 +38,7 @@ ColumnLayout {
3838 }
3939 }
4040
41- // ── Configuración de Icono ────────────────────────────────────────────────
41+ // ── Icon Configuration ─── ────────────────────────────────────────────────
4242 NButton {
4343 Layout .fillWidth : true
4444 text: pluginApi? .tr (" settings.change_icon_button" )
@@ -63,7 +63,7 @@ ColumnLayout {
6363
6464 NDivider { Layout .fillWidth : true }
6565
66- // ── Configuración de Archivos y Aplicación (Sección recuperada) ───────────
66+ // ── Files and Application Configuration (Recovered Section) ───── ───────────
6767 NTextInput {
6868 Layout .fillWidth : true
6969 label: pluginApi? .tr (" settings.path_label" )
@@ -81,7 +81,7 @@ ColumnLayout {
8181 onToggled : checked => { root .editAutoApply = checked }
8282 }
8383
84- // ── Función de Guardado ───────────────────────────────────────────────────
84+ // ── Save Function ───── ───────────────────────────────────────────────────
8585 function saveSettings () {
8686 if (! pluginApi) return
8787
0 commit comments