25 lines
851 B
JavaScript
Executable File
25 lines
851 B
JavaScript
Executable File
/**
|
|
* Spanish translation for bootstrap-markdown
|
|
* by Leandro Poblet <leandrodrhouse@gmail.com>
|
|
*/
|
|
;(function($){
|
|
$.fn.markdown.messages['es'] = {
|
|
'Bold': "Negrita",
|
|
'Italic': "Itálica",
|
|
'Heading': "Título",
|
|
'URL/Link': "Inserte un link",
|
|
'Image': "Inserte una imagen",
|
|
'List': "Lista de items",
|
|
'Preview': "Previsualizar",
|
|
'strong text': "texto importante",
|
|
'emphasized text': "texto con énfasis",
|
|
'heading text': "texto titular",
|
|
'enter link description here': "descripción del link",
|
|
'Insert Hyperlink': "Inserte un hipervínculo",
|
|
'enter image description here': "descripción de la imagen",
|
|
'Insert Image Hyperlink': "Inserte una imagen con un hipervínculo",
|
|
'enter image title here': "Inserte una imagen con título",
|
|
'list text here': "lista con texto"
|
|
};
|
|
}(jQuery));
|