alxpv-i18n
Quick start
- •Read
/Users/alexaandrepaiva/alxpv-portfolio/AGENTS.mdi18n section. - •Identify the UI strings and the translation namespace they belong to.
- •Add/update keys in all of:
- •
src/translations/en.ts - •
src/translations/es.ts - •
src/translations/pt.ts
- •
- •Verify TypeScript still infers parity via
type Translations = typeof en.
Guardrails
- •Never ship missing keys in any language.
- •Avoid embedding user-facing strings directly in components; pull from
translations. - •Keep key naming consistent with current structure.
Done criteria
- •
npm run checkpasses. - •UI renders in all three languages without runtime errors.