bootstrap-markdown.zh-tw.js 956 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * Traditional Chinese translation for bootstrap-markdown
  3. * TheoKlein <theokleintw@gmail.com>
  4. */
  5. (function ($) {
  6. $.fn.markdown.messages.zh = {
  7. 'Bold': "粗體",
  8. 'Italic': "斜體",
  9. 'Heading': "標題",
  10. 'URL/Link': "超連結",
  11. 'Image': "圖片",
  12. 'List': "列表",
  13. 'Unordered List': "無序列表",
  14. 'Ordered List': "有序列表",
  15. 'Code': "程式碼",
  16. 'Quote': "引用",
  17. 'Preview': "預覽",
  18. 'strong text': "粗體",
  19. 'emphasized text': "強調",
  20. 'heading text': "標題",
  21. 'enter link description here': "輸入超連結說明",
  22. 'Insert Hyperlink': "超連結網址",
  23. 'enter image description here': "輸入圖片說明",
  24. 'Insert Image Hyperlink': "圖片網址",
  25. 'enter image title here': "輸入圖片標題",
  26. 'list text here': "在這裡輸入列表文字",
  27. 'code text here': "在這裡輸入程式碼",
  28. 'quote here': "在這裡輸入引用"
  29. };
  30. }(jQuery));