feat(l10n): Add localization placeholders for various messages

This commit is contained in:
cogwheel0
2025-12-07 20:20:01 +05:30
parent 391bbc2b77
commit 790ed222c3
9 changed files with 432 additions and 9 deletions

View File

@@ -776,6 +776,13 @@
"failedToLoadNotes": "Error al cargar las notas",
"deleteNoteTitle": "Eliminar nota",
"deleteNoteMessage": "¿Eliminar \"{title}\"? Esta acción no se puede deshacer.",
"@deleteNoteMessage": {
"placeholders": {
"title": {
"type": "String"
}
}
},
"noteTitle": "Título de la nota",
"writeNote": "Escribe algo...",
"noteSaved": "Nota guardada",
@@ -806,10 +813,50 @@
"older": "Más antiguo",
"tapToExpand": "Toca para expandir",
"byAuthor": "Por {name}",
"@byAuthor": {
"placeholders": {
"name": {
"type": "String"
}
}
},
"wordCount": "{count} palabras",
"@wordCount": {
"placeholders": {
"count": {
"type": "int"
}
}
},
"charCount": "{count} caracteres",
"@charCount": {
"placeholders": {
"count": {
"type": "int"
}
}
},
"promptVariablesTitle": "Completar detalles",
"promptVariablesDescription": "Complete los campos a continuación para personalizar este prompt.",
"promptVariableNumberMin": "El valor mínimo es {min}",
"promptVariableNumberMax": "El valor máximo es {max}"
"@promptVariableNumberMin": {
"placeholders": {
"min": {
"type": "double"
}
}
},
"promptVariableNumberMax": "El valor máximo es {max}",
"@promptVariableNumberMax": {
"placeholders": {
"max": {
"type": "double"
}
}
},
"widgetAskConduit": "Preguntar a Conduit",
"widgetCamera": "Cámara",
"widgetPhotos": "Fotos",
"widgetClipboard": "Portapapeles",
"widgetDescription": "Acceso rápido al chat de Conduit con cámara, fotos y atajos del portapapeles"
}