bootstrap-markdown.pl.js 815 B

123456789101112131415161718192021222324252627
  1. /**
  2. * Polish translation for bootstrap-markdown
  3. * Marek Kaput
  4. */
  5. (function ($) {
  6. $.fn.markdown.messages.pl = {
  7. 'Bold': "Pogrubienie",
  8. 'Italic': "Kursywa",
  9. 'Heading': "Nagłówek",
  10. 'URL/Link': "Wstaw link",
  11. 'Image': "Wstaw obrazek",
  12. 'Unordered List': "Lista punktowana",
  13. 'Ordered List': "Lista numerowana",
  14. 'Code': "Kod źródłowy",
  15. 'Quote': "Cytat",
  16. 'Preview': "Podgląd",
  17. 'strong text': "pogrubiony tekst",
  18. 'emphasized text': "pochylony tekst",
  19. 'heading text': "nagłówek",
  20. 'enter link description here': "opis linka",
  21. 'Insert Hyperlink': "Wstaw link",
  22. 'enter image description here': "opis obrazka",
  23. 'Insert Image Hyperlink': "Wstaw obrazek",
  24. 'enter image title here': "tytuł obrazka",
  25. 'list text here': "lista"
  26. };
  27. }(jQuery));