bootstrap-markdown.es.js 851 B

123456789101112131415161718192021222324
  1. /**
  2. * Spanish translation for bootstrap-markdown
  3. * by Leandro Poblet <leandrodrhouse@gmail.com>
  4. */
  5. ;(function($){
  6. $.fn.markdown.messages['es'] = {
  7. 'Bold': "Negrita",
  8. 'Italic': "Itálica",
  9. 'Heading': "Título",
  10. 'URL/Link': "Inserte un link",
  11. 'Image': "Inserte una imagen",
  12. 'List': "Lista de items",
  13. 'Preview': "Previsualizar",
  14. 'strong text': "texto importante",
  15. 'emphasized text': "texto con énfasis",
  16. 'heading text': "texto titular",
  17. 'enter link description here': "descripción del link",
  18. 'Insert Hyperlink': "Inserte un hipervínculo",
  19. 'enter image description here': "descripción de la imagen",
  20. 'Insert Image Hyperlink': "Inserte una imagen con un hipervínculo",
  21. 'enter image title here': "Inserte una imagen con título",
  22. 'list text here': "lista con texto"
  23. };
  24. }(jQuery));