bootstrap-markdown.ja.js 891 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * Japanese translation for bootstrap-markdown
  3. * Kenta Murakami <kntmrkm@gmail.com>
  4. */
  5. (function ($) {
  6. $.fn.markdown.messages.ja = {
  7. 'Bold': "太字",
  8. 'Italic': "斜体",
  9. 'Heading': "見出し",
  10. 'URL/Link': "リンク",
  11. 'Image': "画像",
  12. 'Unordered List': "リスト",
  13. 'Ordered List': "数字リスト",
  14. 'Code': "コード",
  15. 'Quote': "引用",
  16. 'Preview': "プレビュー",
  17. 'strong text': "太字",
  18. 'emphasized text': "強調",
  19. 'heading text': "見出し",
  20. 'enter link description here': "リンク説明",
  21. 'Insert Hyperlink': "リンク挿入",
  22. 'enter image description here': "画像説明",
  23. 'Insert Image Hyperlink': "画像挿入",
  24. 'enter image title here': "画像タイトル",
  25. 'list text here': "リスト挿入",
  26. 'code text here': "コード",
  27. 'quote here': "引用挿入"
  28. };
  29. }(jQuery));