🇪🇸 Español
El encabezado del sidebar es lang === "es" ? "Documentación" : "Documentation" — un ternario inline que evita el diccionario central y no escala a un tercer locale.
Archivo: src/components/docs/DocsSidebar.tsx:14
Solución sugerida: Agregar una clave docsHeading a los diccionarios y leerla con getDictionary(lang).
🇬🇧 English
The sidebar heading is lang === "es" ? "Documentación" : "Documentation" — an inline ternary that bypasses the central dictionary and won't scale to a third locale.
File: src/components/docs/DocsSidebar.tsx:14
Suggested fix: Add a docsHeading key to the dictionaries and read it via getDictionary(lang).
🇪🇸 Español
El encabezado del sidebar es
lang === "es" ? "Documentación" : "Documentation"— un ternario inline que evita el diccionario central y no escala a un tercer locale.Archivo:
src/components/docs/DocsSidebar.tsx:14Solución sugerida: Agregar una clave
docsHeadinga los diccionarios y leerla congetDictionary(lang).🇬🇧 English
The sidebar heading is
lang === "es" ? "Documentación" : "Documentation"— an inline ternary that bypasses the central dictionary and won't scale to a third locale.File:
src/components/docs/DocsSidebar.tsx:14Suggested fix: Add a
docsHeadingkey to the dictionaries and read it viagetDictionary(lang).