─── Shared formatting helpers ───────────────────────────────── sectionHeader prints a colored box header for a config section.
(icon, titleKey, color string)
| 167 | |
| 168 | // sectionHeader prints a colored box header for a config section. |
| 169 | func sectionHeader(icon, titleKey, color string) { |
| 170 | fmt.Println() |
| 171 | fmt.Println(uiBox(icon, i18n.T(titleKey), color)) |
| 172 | } |
| 173 | |
| 174 | // sectionEnd prints the matching closing box border. |
| 175 | func sectionEnd(color string) { |
no test coverage detected