123456789101112131415161718192021222324252627 |
- /**
- * Czech translation for bootstrap-markdown
- * Vít Kabele <vit@kabele.me>
- */
- (function ($) {
- $.fn.markdown.messages.cs = {
- 'Bold': "Tučně",
- 'Italic': "Kurzíva",
- 'Heading': "Nadpis",
- 'URL/Link': "URL/Odkaz",
- 'Image': "Obrázek",
- 'Unordered List': "Seznam",
- 'Ordered List': "Seřazený seznam",
- 'Code': "Úsek kódu",
- 'Quote': "Citace",
- 'Preview': "Náhled",
- 'strong text': "tučný text",
- 'emphasized text': "zdůrazněný text",
- 'heading text': "text nadpisu",
- 'enter link description here': "sem vlož popis odkazu",
- 'Insert Hyperlink': "Vložit Hyperlink",
- 'enter image description here': "sem vlož popis obrázku",
- 'Insert Image Hyperlink': "Vlož adresu obrázku",
- 'enter image title here': "sem vlož popis obrázku",
- 'list text here': "položka seznamu"
- };
- }(jQuery));
|