htmlarea.js.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // I18N constants -- Japanese UTF-8
  2. // by Manabu Onoue -- tmocsys@tmocsys.com
  3. HTMLArea.I18N = {
  4. // the following should be the filename without .js extension
  5. // it will be used for automatically load plugin language.
  6. lang: "ja-utf8",
  7. tooltips: {
  8. bold: "太字",
  9. italic: "斜体",
  10. underline: "下線",
  11. strikethrough: "打ち消し線",
  12. subscript: "下付き添え字",
  13. superscript: "上付き添え字",
  14. justifyleft: "左寄せ",
  15. justifycenter: "中央寄せ",
  16. justifyright: "右寄せ",
  17. justifyfull: "均等割付",
  18. orderedlist: "番号付き箇条書き",
  19. unorderedlist: "記号付き箇条書き",
  20. outdent: "インデント解除",
  21. indent: "インデント設定",
  22. forecolor: "文字色",
  23. backcolor: "背景色",
  24. inserthorizontalrule: "水平線",
  25. createlink: "リンク作成",
  26. insertimage: "画像挿入",
  27. inserttable: "テーブル挿入",
  28. htmlmode: "HTML表示切替",
  29. popupeditor: "エディタ拡大",
  30. about: "バージョン情報",
  31. help: "ヘルプ",
  32. textindicator: "現在のスタイル"
  33. }
  34. };