forked from extern/egroupware
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
|
// I18N constants -- Japanese UTF-8
|
|||
|
// by Manabu Onoue -- tmocsys@tmocsys.com
|
|||
|
|
|||
|
HTMLArea.I18N = {
|
|||
|
|
|||
|
// the following should be the filename without .js extension
|
|||
|
// it will be used for automatically load plugin language.
|
|||
|
lang: "ja-utf8",
|
|||
|
|
|||
|
tooltips: {
|
|||
|
bold: "太字",
|
|||
|
italic: "斜体",
|
|||
|
underline: "下線",
|
|||
|
strikethrough: "打ち消し線",
|
|||
|
subscript: "下付き添え字",
|
|||
|
superscript: "上付き添え字",
|
|||
|
justifyleft: "左寄せ",
|
|||
|
justifycenter: "中央寄せ",
|
|||
|
justifyright: "右寄せ",
|
|||
|
justifyfull: "均等割付",
|
|||
|
orderedlist: "番号付き箇条書き",
|
|||
|
unorderedlist: "記号付き箇条書き",
|
|||
|
outdent: "インデント解除",
|
|||
|
indent: "インデント設定",
|
|||
|
forecolor: "文字色",
|
|||
|
backcolor: "背景色",
|
|||
|
horizontalrule: "水平線",
|
|||
|
createlink: "リンク作成",
|
|||
|
insertimage: "画像挿入",
|
|||
|
inserttable: "テーブル挿入",
|
|||
|
htmlmode: "HTML表示切替",
|
|||
|
popupeditor: "エディタ拡大",
|
|||
|
about: "バージョン情報",
|
|||
|
help: "ヘルプ",
|
|||
|
textindicator: "現在のスタイル"
|
|||
|
}
|
|||
|
};
|