bootstrap-markdown.cs.js 865 B

123456789101112131415161718192021222324252627
  1. /**
  2. * Czech translation for bootstrap-markdown
  3. * Vít Kabele <vit@kabele.me>
  4. */
  5. (function ($) {
  6. $.fn.markdown.messages.cs = {
  7. 'Bold': "Tučně",
  8. 'Italic': "Kurzíva",
  9. 'Heading': "Nadpis",
  10. 'URL/Link': "URL/Odkaz",
  11. 'Image': "Obrázek",
  12. 'Unordered List': "Seznam",
  13. 'Ordered List': "Seřazený seznam",
  14. 'Code': "Úsek kódu",
  15. 'Quote': "Citace",
  16. 'Preview': "Náhled",
  17. 'strong text': "tučný text",
  18. 'emphasized text': "zdůrazněný text",
  19. 'heading text': "text nadpisu",
  20. 'enter link description here': "sem vlož popis odkazu",
  21. 'Insert Hyperlink': "Vložit Hyperlink",
  22. 'enter image description here': "sem vlož popis obrázku",
  23. 'Insert Image Hyperlink': "Vlož adresu obrázku",
  24. 'enter image title here': "sem vlož popis obrázku",
  25. 'list text here': "položka seznamu"
  26. };
  27. }(jQuery));