feat(i18n): add Spanish (es) locale for desktop UI - #68836
Closed
valeracjva wants to merge 1 commit into
Closed
Conversation
Adds Spanish translations for the Hermes Desktop app using defineLocale() for partial locale with English fallback. - Adds apps/desktop/src/i18n/es.ts with 2055 translated strings - Registers 'es' in languages.ts with locale aliases (es, es-es, es-ar, es-mx, es-419) - Registers 'es' in catalog.ts TRANSLATIONS record - Updates Locale type in types.ts to include 'es' Closes NousResearch#68822
Collaborator
Contributor
|
Thanks for the Spanish Desktop locale contribution. The underlying need remains real: current Problems
Suggested changes
Automated hermes-sweeper review. |
Author
|
Cerrando en favor de #41230 que tiene implementación más completa con tests, fix del placeholder y mayor cobertura de secciones. Gracias por la revisión. |
Author
|
Duplicate of #41230. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds complete Spanish (es) locale support for the Hermes Desktop app, using
defineLocale()for a partial locale that falls back to English for any untranslated keys (same pattern asja.ts).Changes
apps/desktop/src/i18n/es.tsapps/desktop/src/i18n/catalog.tsesinTRANSLATIONSapps/desktop/src/i18n/languages.tsesentry + 8 locale aliasesapps/desktop/src/i18n/types.ts'es'toLocaletypeCoverage
Translated sections include: common, fileMenu, boot, notifications, remoteDisplayBanner, titlebar, keybinds, language, settings (full), skills hub, starmap, agents, commandCenter, messaging, profiles, cron, artifacts, sidebar, composer, statusStack, updates, install, onboarding, modelPicker, shell, rightSidebar.
Testing
defineLocale().es,es-es,es-ar,es-mx,es-419for broad regional support.ja.tspartial locale pattern.Closes #68822