Problem
In src/components/ConfigPanel.vue, the non-deployed VM section's "refresh templates from Proxmox" button uses a hardcoded English title="Refresh templates from Proxmox" instead of an i18n key.
A matching key configPanel.a11y.refreshTemplates already exists in all three locales (en/fr/jp) — added during the 2026-06-09 polish pass but currently unused because the button lives in a node-type field body that was out of scope for that pass.
Fix
Wire the button's title/aria-label to t('configPanel.a11y.refreshTemplates'). Quick consistency win; pairs with the ConfigPanel decomposition / field-body cleanup.
Problem
In
src/components/ConfigPanel.vue, the non-deployed VM section's "refresh templates from Proxmox" button uses a hardcoded Englishtitle="Refresh templates from Proxmox"instead of an i18n key.A matching key
configPanel.a11y.refreshTemplatesalready exists in all three locales (en/fr/jp) — added during the 2026-06-09 polish pass but currently unused because the button lives in a node-type field body that was out of scope for that pass.Fix
Wire the button's
title/aria-labeltot('configPanel.a11y.refreshTemplates'). Quick consistency win; pairs with the ConfigPanel decomposition / field-body cleanup.