mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
136 lines
3.8 KiB
JavaScript
136 lines
3.8 KiB
JavaScript
export const es = {
|
|
|
|
messages: {
|
|
/**
|
|
* Other below: translation of different UI components of the editor.js core
|
|
*/
|
|
ui: {
|
|
"blockTunes": {
|
|
"toggler": {
|
|
"Click to tune": "Click para editar",
|
|
"or drag to move": "o arrastra para editar",
|
|
"Filter" : "Filtrar"
|
|
},
|
|
"filter" : {
|
|
"Filter" : "Filtrar"
|
|
}
|
|
},
|
|
"inlineToolbar": {
|
|
"converter": {
|
|
"Convert to": "Convertir a",
|
|
"Filter" : "Filtrar"
|
|
|
|
},
|
|
|
|
},
|
|
"toolbar": {
|
|
"toolbox": {
|
|
"Add": "Añadir",
|
|
"Filter" : "Filtrar"
|
|
},
|
|
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Section for translation Tool Names: both block and inline tools
|
|
*/
|
|
toolNames: {
|
|
"Text": "Texto",
|
|
"Heading": "Encabezado",
|
|
"List": "Lista",
|
|
"Unordered List": "Lista",
|
|
"Ordered List" : "Enumeración",
|
|
"Warning": "Advertencia",
|
|
"Checklist": "Checklist",
|
|
"Quote": "Cita",
|
|
"Code": "Codigo",
|
|
"Delimiter": "Delimitador",
|
|
"Raw HTML": "Raw HTML",
|
|
"Table": "Tabla",
|
|
"Link": "Enlace",
|
|
"Marker": "Subrayar",
|
|
"Bold": "Negrita",
|
|
"Italic": "Cursiva",
|
|
"InlineCode": "Código",
|
|
"Image" : "Imagen",
|
|
"Alert" : "Alerta",
|
|
"Convert to" : "Convertir a"
|
|
|
|
},
|
|
|
|
/**
|
|
* Section for passing translations to the external tools classes
|
|
*/
|
|
tools: {
|
|
/**
|
|
* Each subsection is the i18n dictionary that will be passed to the corresponded plugin
|
|
* The name of a plugin should be equal the name you specify in the 'tool' section for that plugin
|
|
*/
|
|
"warning": { // <-- 'Warning' tool will accept this dictionary section
|
|
"Title": "Titulo",
|
|
"Message": "Mensaje",
|
|
},
|
|
"list" : {
|
|
"Start with" : "Empezar con",
|
|
"Unordered": "Sin orden",
|
|
"Ordered" : "Ordenada",
|
|
"Counter type" : "Contador",
|
|
"Convert to" : "Convertir a"
|
|
},
|
|
/**
|
|
* Link is the internal Inline Tool
|
|
*/
|
|
"link": {
|
|
"Add a link": "Añadir un enlace"
|
|
},
|
|
/**
|
|
* The "stub" is an internal block tool, used to fit blocks that does not have the corresponded plugin
|
|
*/
|
|
"stub": {
|
|
'The block can not be displayed correctly.': 'El bloque no puede ser mostrado correctamente'
|
|
},
|
|
"alert" : {
|
|
"Primary" : "Color primario",
|
|
"Secondary" : "Color secundario",
|
|
"Info" : "Info",
|
|
"Success" : "Éxito",
|
|
"Warning" : "Advertencia",
|
|
"Danger" : "Peligro",
|
|
"Light" : "Ligero",
|
|
"Left" : "Izquierda",
|
|
"Right" :"Derecha",
|
|
"Dark" : "Oscuro",
|
|
"Center" : "Centrar"
|
|
},
|
|
"image": {
|
|
"With border" : "Con borde",
|
|
"Stretch image" : "Estirar imagen",
|
|
"With background" : "Añadir fondo",
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Section allows to translate Block Tunes
|
|
*/
|
|
blockTunes: {
|
|
/**
|
|
* Each subsection is the i18n dictionary that will be passed to the corresponded Block Tune plugin
|
|
* The name of a plugin should be equal the name you specify in the 'tunes' section for that plugin
|
|
*
|
|
* Also, there are few internal block tunes: "delete", "moveUp" and "moveDown"
|
|
*/
|
|
|
|
"delete": {
|
|
"Delete": "Eliminar",
|
|
"Click to delete" : "Click para eliminar"
|
|
},
|
|
"moveUp": {
|
|
"Move up": "Mover hacia arriba"
|
|
},
|
|
"moveDown": {
|
|
"Move down": "Mover hacia abajo"
|
|
}
|
|
},
|
|
}
|
|
} |