Add Spanish (ES) language support to i18n system (#795)
* Add Spanish (ES) language support to i18n system - Added Es variant to UiLanguage enum in Rust backend - Regenerated TypeScript types to include Spanish support - Created complete Spanish translation files for all UI components - Updated i18n configuration to include Spanish resources - Added Spanish option to language selector in settings - Updated existing language files to include Spanish in options All major UI areas now support Spanish including navigation, settings, project management, and status messages. * Fix formatting for Spanish translation files Run Prettier to ensure consistent JSON formatting
This commit is contained in:
committed by
GitHub
parent
603e70215f
commit
d69efffd54
26
frontend/src/i18n/locales/es/common.json
Normal file
26
frontend/src/i18n/locales/es/common.json
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"buttons": {
|
||||
"save": "Guardar",
|
||||
"cancel": "Cancelar",
|
||||
"delete": "Eliminar",
|
||||
"edit": "Editar",
|
||||
"create": "Crear",
|
||||
"continue": "Continuar",
|
||||
"reset": "Restablecer",
|
||||
"manage": "Gestionar",
|
||||
"connect": "Conectar",
|
||||
"disconnect": "Desconectar"
|
||||
},
|
||||
"states": {
|
||||
"loading": "Cargando...",
|
||||
"saving": "Guardando...",
|
||||
"error": "Error",
|
||||
"success": "Éxito"
|
||||
},
|
||||
"language": {
|
||||
"en": "English",
|
||||
"ja": "日本語",
|
||||
"es": "Español",
|
||||
"browserDefault": "Predeterminado del navegador"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user