bootstrap-markdown.es.js 1.1 KB

12345678910111213141516171819202122232425262728293031
  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. 'Unordered List': "Lista desordenada",
  14. 'Ordered List': "Lista ordenada",
  15. 'Code': "Código",
  16. 'Quote': "Cita",
  17. 'Preview': "Previsualizar",
  18. 'strong text': "Texto importante",
  19. 'emphasized text': "Texto con énfasis",
  20. 'heading text': "Texto de título",
  21. 'enter link description here': "Descripción del link",
  22. 'Insert Hyperlink': "Inserte un hipervínculo",
  23. 'enter image description here': "Descripción de la imagen",
  24. 'Insert Image Hyperlink': "Inserte una imagen con un hipervínculo",
  25. 'enter image title here': "Inserte una imagen con título",
  26. 'list text here': "Texto de lista aquí",
  27. 'code text here': "Código aquí",
  28. 'quote here': "Cita aquí",
  29. 'Save': "Guardar"
  30. };
  31. }(jQuery));