What problem does it solve? Keeping UI translation keys, the base language JSON seed, and the database seed script in sync is error-prone manual work. This Skill scans WinForms UI, BLL, and SERVICIOS code for translatable keys and regenerates the seed artifacts automatically. ## Core Features & Use Cases - Automatic Key Discovery: Scans Form*.cs files, Designer files, and BLL/SERVICIOS code for Form, Dialog, and Error translation keys, including Tag assignments and ObtenerTexto calls. - Seed JSON Regeneration: Updates translation-seeds/base.es.json as the single source of truth, preserving existing translations and inserting placeholders for new keys. - SQL Block Generation: Rewrites the auto-generated block in script_bd.sql so the database seed loads translations from the JSON file via OPENROWSET instead of hardcoded values. - Use Case: After adding a new button with a Form... Tag to a WinForms screen, run the sync script, fill in the new placeholder values in base.es.json, and compile the solution. ## Quick Start Ask the assistant to run the translation base seed sync script and review any new placeholder keys added to base.es.json.