summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/editor/plugins/nls/ja
diff options
context:
space:
mode:
authorTristan Zur <tzur@web.web.ccwn.org>2014-03-27 22:27:47 +0100
committerTristan Zur <tzur@web.web.ccwn.org>2014-03-27 22:27:47 +0100
commitb62676ca5d3d6f6ba3f019ea3f99722e165a98d8 (patch)
tree86722cb80f07d4569f90088eeaea2fc2f6e2ef94 /js/dojo/dojox/editor/plugins/nls/ja
Initial commit of intern.ccwn.org contentsHEADmaster
Diffstat (limited to 'js/dojo/dojox/editor/plugins/nls/ja')
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/AutoSave.js18
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/Blockquote.js8
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/Breadcrumb.js15
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/CollapsibleToolbar.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/FindReplace.js26
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/InsertAnchor.js13
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/InsertEntity.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/LocalImage.js15
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/PageBreak.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/PasteFromWord.js11
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/Preview.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/SafePaste.js6
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/Save.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/ShowBlockNodes.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/Smiley.js28
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/SpellCheck.js21
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/TableDialog.js36
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/TextColor.js9
-rw-r--r--js/dojo/dojox/editor/plugins/nls/ja/latinEntities.js262
19 files changed, 522 insertions, 0 deletions
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/AutoSave.js b/js/dojo/dojox/editor/plugins/nls/ja/AutoSave.js
new file mode 100644
index 0000000..51cefa7
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/AutoSave.js
@@ -0,0 +1,18 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/AutoSave", //begin v1.x content
+({
+ "saveLabel": "保存",
+ "saveSettingLabelOn": "自動保存間隔の設定...",
+ "saveSettingLabelOff": "自動保存をオフにする",
+ "saveSettingdialogTitle": "自動保存",
+ "saveSettingdialogDescription": "自動保存間隔の指定",
+ "saveSettingdialogParamName": "自動保存間隔",
+ "saveSettingdialogParamLabel": "分",
+ "saveSettingdialogButtonOk": "間隔の設定",
+ "saveSettingdialogButtonCancel": "キャンセル",
+ "saveMessageSuccess": "${0} に保存されました",
+ "saveMessageFail": "${0} に保存に失敗しました"
+})
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/Blockquote.js b/js/dojo/dojox/editor/plugins/nls/ja/Blockquote.js
new file mode 100644
index 0000000..6c372c6
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/Blockquote.js
@@ -0,0 +1,8 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/Blockquote", //begin v1.x content
+({
+ "blockquote": "引用"
+})
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/Breadcrumb.js b/js/dojo/dojox/editor/plugins/nls/ja/Breadcrumb.js
new file mode 100644
index 0000000..cb888c8
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/Breadcrumb.js
@@ -0,0 +1,15 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/Breadcrumb", //begin v1.x content
+({
+ "nodeActions": "${nodeName} アクション",
+ "selectContents": "内容の選択",
+ "selectElement": "要素の選択",
+ "deleteElement": "要素の削除",
+ "deleteContents": "内容の削除",
+ "moveStart": "開始するためにカーソルを移動",
+ "moveEnd": "終了するためにカーソルを移動"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/CollapsibleToolbar.js b/js/dojo/dojox/editor/plugins/nls/ja/CollapsibleToolbar.js
new file mode 100644
index 0000000..6acf2b6
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/CollapsibleToolbar.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/CollapsibleToolbar", //begin v1.x content
+({
+ "collapse": "エディターのツールバーを省略",
+ "expand": "エディターのツールバーを展開"
+})
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/FindReplace.js b/js/dojo/dojox/editor/plugins/nls/ja/FindReplace.js
new file mode 100644
index 0000000..ccbfe40
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/FindReplace.js
@@ -0,0 +1,26 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/FindReplace", //begin v1.x content
+({
+ "findLabel": "検索内容:",
+ "findTooltip": "検索するテキストを入力",
+ "replaceLabel": "次で置換:",
+ "replaceTooltip": "置換するテキストを入力",
+ "findReplace": "検索/置換の切り替え",
+ "matchCase": "大/小文字の区別",
+ "matchCaseTooltip": "大/小文字を区別",
+ "backwards": "後方",
+ "backwardsTooltip": "テキストを後方検索",
+ "replaceAllButton": "すべてを置換",
+ "replaceAllButtonTooltip": "テキストすべてを置換",
+ "findButton": "検索",
+ "findButtonTooltip": "テキストを検索",
+ "replaceButton": "置換",
+ "replaceButtonTooltip": "テキストを置換",
+ "replaceDialogText": "${0} 個のオカレンスを置換しました。",
+ "eofDialogText": "最後のオカレンス ${0}",
+ "eofDialogTextFind": "見つかりました",
+ "eofDialogTextReplace": "置換されました"
+})
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/InsertAnchor.js b/js/dojo/dojox/editor/plugins/nls/ja/InsertAnchor.js
new file mode 100644
index 0000000..9b5e1b5
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/InsertAnchor.js
@@ -0,0 +1,13 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/InsertAnchor", //begin v1.x content
+({
+ insertAnchor: "アンカーの挿入",
+ title: "アンカー・プロパティー",
+ anchor: "名前:",
+ text: "説明:",
+ set: "設定",
+ cancel: "キャンセル"
+})
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/InsertEntity.js b/js/dojo/dojox/editor/plugins/nls/ja/InsertEntity.js
new file mode 100644
index 0000000..d212521
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/InsertEntity.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/InsertEntity", //begin v1.x content
+({
+ insertEntity: "記号の挿入"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/LocalImage.js b/js/dojo/dojox/editor/plugins/nls/ja/LocalImage.js
new file mode 100644
index 0000000..c6c5275
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/LocalImage.js
@@ -0,0 +1,15 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/LocalImage", //begin v1.x content
+({
+ insertImageTitle: "イメージの挿入",
+ url: "イメージ",
+ browse: "参照...",
+ text: "説明",
+ set: "挿入",
+ invalidMessage: "無効なイメージ・ファイル・タイプです",
+ prePopuTextUrl: "イメージ URL を入力するか、",
+ prePopuTextBrowse: "ローカル・ファイルを参照してください。"
+})
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/PageBreak.js b/js/dojo/dojox/editor/plugins/nls/ja/PageBreak.js
new file mode 100644
index 0000000..98417f6
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/PageBreak.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/PageBreak", //begin v1.x content
+({
+ "pageBreak": "改ページ"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/PasteFromWord.js b/js/dojo/dojox/editor/plugins/nls/ja/PasteFromWord.js
new file mode 100644
index 0000000..e4179ed
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/PasteFromWord.js
@@ -0,0 +1,11 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/PasteFromWord", //begin v1.x content
+({
+ "pasteFromWord": "Word からの貼り付け",
+ "paste": "貼り付け",
+ "cancel": "キャンセル",
+ "instructions": "Word のコンテンツを以下のテキスト・ボックスに貼り付けてください。挿入するコンテンツを確認したら、貼り付けボタンを押します。テキストの挿入を中止するには、キャンセル・ボタンを押します。"
+})
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/Preview.js b/js/dojo/dojox/editor/plugins/nls/ja/Preview.js
new file mode 100644
index 0000000..8fbfef8
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/Preview.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/Preview", //begin v1.x content
+({
+ "preview": "プレビュー"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/SafePaste.js b/js/dojo/dojox/editor/plugins/nls/ja/SafePaste.js
new file mode 100644
index 0000000..ac0f4cf
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/SafePaste.js
@@ -0,0 +1,6 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/SafePaste", ({
+ "instructions": "直接貼り付けはできません。ブラウザーのキーボードまたはメニューによる標準制御を使用して、コンテンツをこのダイアログに貼り付けでください。コンテンツを確認して問題がなければ、貼り付けボタンを押してコンテンツを挿入してください。挿入しない場合は、キャンセル・ボタンを押してください。"
+})
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/Save.js b/js/dojo/dojox/editor/plugins/nls/ja/Save.js
new file mode 100644
index 0000000..5b02c39
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/Save.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/Save", //begin v1.x content
+({
+ "save": "保存"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/ShowBlockNodes.js b/js/dojo/dojox/editor/plugins/nls/ja/ShowBlockNodes.js
new file mode 100644
index 0000000..a50c67e
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/ShowBlockNodes.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/ShowBlockNodes", //begin v1.x content
+({
+ "showBlockNodes": "HTML ブロック要素の表示"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/Smiley.js b/js/dojo/dojox/editor/plugins/nls/ja/Smiley.js
new file mode 100644
index 0000000..2ab1933
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/Smiley.js
@@ -0,0 +1,28 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/Smiley", //begin v1.x content
+({
+ smiley: "顔文字の挿入",
+ emoticonSmile: "微笑",
+ emoticonLaughing: "笑い",
+ emoticonWink: "ウィンク",
+ emoticonGrin: "笑顔",
+ emoticonCool: "無愛想",
+ emoticonAngry: "怒り",
+ emoticonHalf: "半分",
+ emoticonEyebrow: "眉毛",
+ emoticonFrown: "眉をひそめる",
+ emoticonShy: "はにかんだ",
+ emoticonGoofy: "おろかな",
+ emoticonOops: "おっと",
+ emoticonTongue: "舌を出す",
+ emoticonIdea: "アイデア",
+ emoticonYes: "はい",
+ emoticonNo: "いいえ",
+ emoticonAngel: "エンジェル",
+ emoticonCrying: "泣く",
+ emoticonHappy: "幸せ"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/SpellCheck.js b/js/dojo/dojox/editor/plugins/nls/ja/SpellCheck.js
new file mode 100644
index 0000000..bf0a64d
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/SpellCheck.js
@@ -0,0 +1,21 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/SpellCheck", //begin v1.x content
+({
+ widgetLabel: "一括スペル・チェック",
+ unfound: "見つかりません",
+ skip: "スキップ",
+ skipAll: "すべてをスキップ",
+ toDic: "辞書に追加",
+ suggestions: "修正候補",
+ replace: "置換",
+ replaceWith: "置き換え",
+ replaceAll: "すべてを置換",
+ cancel: "キャンセル",
+ msg: "ミススペルはありません",
+ iSkip: "これをスキップ",
+ iSkipAll: "これと類似のものをスキップ",
+ iMsg: "スペルの修正候補はありません"
+})
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/TableDialog.js b/js/dojo/dojox/editor/plugins/nls/ja/TableDialog.js
new file mode 100644
index 0000000..0e0d0f3
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/TableDialog.js
@@ -0,0 +1,36 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/TableDialog", //begin v1.x content
+({
+ insertTableTitle: "テーブルの挿入",
+ modifyTableTitle: "テーブルの変更",
+ rows: "行:",
+ columns: "列:",
+ align: "位置合わせ:",
+ cellPadding: "セル余白:",
+ cellSpacing: "セル間隔:",
+ tableWidth: "テーブル幅:",
+ backgroundColor: "背景色:",
+ borderColor: "ボーダーの色:",
+ borderThickness: "ボーダーの太さ",
+ percent: "パーセント",
+ pixels: "ピクセル",
+ "default": "デフォルト",
+ left: "左",
+ center: "中央",
+ right: "右",
+ buttonSet: "設定", // translated elsewhere?
+ buttonInsert: "挿入",
+ buttonCancel: "キャンセル",
+
+ selectTableLabel: "テーブルの選択",
+ insertTableRowBeforeLabel: "前に行を追加",
+ insertTableRowAfterLabel: "後ろに行を追加",
+ insertTableColumnBeforeLabel: "前に列を追加",
+ insertTableColumnAfterLabel: "後ろに列を追加",
+ deleteTableRowLabel: "行の削除",
+ deleteTableColumnLabel: "列の削除"
+})
+
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/TextColor.js b/js/dojo/dojox/editor/plugins/nls/ja/TextColor.js
new file mode 100644
index 0000000..09aed09
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/TextColor.js
@@ -0,0 +1,9 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/TextColor", //begin v1.x content
+({
+ "setButtonText": "設定",
+ "cancelButtonText": "キャンセル"
+})
+//end v1.x content
+);
diff --git a/js/dojo/dojox/editor/plugins/nls/ja/latinEntities.js b/js/dojo/dojox/editor/plugins/nls/ja/latinEntities.js
new file mode 100644
index 0000000..eea8825
--- /dev/null
+++ b/js/dojo/dojox/editor/plugins/nls/ja/latinEntities.js
@@ -0,0 +1,262 @@
+//>>built
+define(
+"dojox/editor/plugins/nls/ja/latinEntities", //begin v1.x content
+({
+ /* These are already handled in the default RTE
+ amp:"ampersand",lt:"less-than sign",
+ gt:"greater-than sign",
+ nbsp:"no-break space\nnon-breaking space",
+ quot:"quote",
+ */
+ iexcl:"逆感嘆符",
+ cent:"セント記号",
+ pound:"ポンド記号",
+ curren:"通貨記号",
+ yen:"円記号\n元記号",
+ brvbar:"破線バー\n破線垂直バー",
+ sect:"セクション記号",
+ uml:"分音符号\n間隔分音符号",
+ copy:"著作権記号",
+ ordf:"女性序数標識",
+ laquo:"左二重角引用符\n左ギュメ",
+ not:"否定記号",
+ shy:"ソフト・ハイフン\n任意ハイフン",
+ reg:"登録記号\n登録商標",
+ macr:"長音記号\n間隔長音記号\n上線\nAPL 上線",
+ deg:"角度記号",
+ plusmn:"正符号\n正または負符号",
+ sup2:"上付き文字 2\n上付き文字数字 2\n平方",
+ sup3:"上付き文字 3\n上付き文字数字 3\n立方",
+ acute:"揚音アクセント\n間隔揚音",
+ micro:"マイクロ記号",
+ para:"段落記号\n段落記号",
+ middot:"中間ドット\nグルジア語のコンマ\nギリシャ語の中間ドット",
+ cedil:"セディーユ\n間隔セディーユ",
+ sup1:"上付き文字 1\n上付き文字数字 1",
+ ordm:"男性序数標識",
+ raquo:"右二重角引用符\n右ギュメ",
+ frac14:"分数の 4 分の 1\n分数の 4 分の 1",
+ frac12:"分数の 2 分の 1\n分数の 2 分の 1",
+ frac34:"分数の 4 分の 3\n分数の 4 分の 3",
+ iquest:"逆疑問符\n反転疑問符",
+ Agrave:"ラテン語の抑音付き大文字 A\nラテン語の抑音付き大文字 A",
+ Aacute:"ラテン語の揚音付き大文字 A",
+ Acirc:"ラテン語の曲折アクセント記号付き大文字 A",
+ Atilde:"ラテン語の波形記号付き大文字 A",
+ Auml:"ラテン語の分音符号付き大文字 A",
+ Aring:"ラテン語の上リング付き大文字 A\nラテン語のリング付き大文字 A",
+ AElig:"ラテン語の大文字 AE\nラテン語の大文字の合字 AE",
+ Ccedil:"ラテン語のセディーユ付き大文字 C",
+ Egrave:"ラテン語の抑音付き大文字 E",
+ Eacute:"ラテン語の揚音付き大文字 E",
+ Ecirc:"ラテン語の曲折アクセント記号付き大文字 E",
+ Euml:"ラテン語の分音符号付き大文字 E",
+ Igrave:"ラテン語の抑音付き大文字 I",
+ Iacute:"ラテン語の揚音付き大文字 I",
+ Icirc:"ラテン語の曲折アクセント記号付き大文字 I",
+ Iuml:"ラテン語の分音符号付き大文字 I",
+ ETH:"ラテン語の大文字 ETH",
+ Ntilde:"ラテン語の波形記号付き大文字 N",
+ Ograve:"ラテン語の抑音付き大文字 O",
+ Oacute:"ラテン語の揚音付き大文字 O",
+ Ocirc:"ラテン語の曲折アクセント記号付き大文字 O",
+ Otilde:"ラテン語の波形記号付き大文字 O",
+ Ouml:"ラテン語の分音符号付き大文字 O",
+ times:"乗算記号",
+ Oslash:"ラテン語の斜線付き大文字 O\nラテン語のスラッシュ付き大文字 O",
+ Ugrave:"ラテン語の抑音付き大文字 U",
+ Uacute:"ラテン語の揚音付き大文字 U",
+ Ucirc:"ラテン語の曲折アクセント記号付き大文字 U",
+ Uuml:"ラテン語の分音符号付き大文字 U",
+ Yacute:"ラテン語の揚音付き大文字 Y",
+ THORN:"ラテン語の大文字 THORN",
+ szlig:"ラテン語の小文字のシャープ s\n s 字形",
+ agrave:"ラテン語の抑音付き小文字 a\nラテン語の抑音付き小文字 a",
+ aacute:"ラテン語の揚音付き小文字 a",
+ acirc:"ラテン語の曲折アクセント記号付き小文字 a",
+ atilde:"ラテン語の波形記号付き小文字 a",
+ auml:"ラテン語の分音符号付き小文字 a",
+ aring:"ラテン語の上リング付き小文字 a\nラテン語のリング付き小文字 a",
+ aelig:"ラテン語の小文字 ae\nラテン語の小文字の合字 ae",
+ ccedil:"ラテン語のセディーユ付き小文字 c",
+ egrave:"ラテン語の抑音付き小文字 e",
+ eacute:"ラテン語の揚音付き小文字 e",
+ ecirc:"ラテン語の曲折アクセント記号付き小文字 e",
+ euml:"ラテン語の分音符号付き小文字 e",
+ igrave:"ラテン語の抑音付き小文字 i",
+ iacute:"ラテン語の揚音付き小文字 i",
+ icirc:"ラテン語の曲折アクセント記号付き小文字 i",
+ iuml:"ラテン語の分音符号付き小文字 i",
+ eth:"ラテン語の小文字 eth",
+ ntilde:"ラテン語の波形記号付き小文字 n",
+ ograve:"ラテン語の抑音付き小文字 o",
+ oacute:"ラテン語の揚音付き小文字 o",
+ ocirc:"ラテン語の曲折アクセント記号付き小文字 o",
+ otilde:"ラテン語の波形記号付き小文字 o",
+ ouml:"ラテン語の分音符号付き小文字 o",
+ divide:"除算記号",
+ oslash:"ラテン語の斜線付き小文字 o\nラテン語のスラッシュ付き小文字 o",
+ ugrave:"ラテン語の抑音付き小文字 u",
+ uacute:"ラテン語の揚音付き小文字 u",
+ ucirc:"ラテン語の曲折アクセント記号付き小文字 u",
+ uuml:"ラテン語の分音符号付き小文字 u",
+ yacute:"ラテン語の揚音付き小文字 y",
+ thorn:"ラテン語の小文字 thorn",
+ yuml:"ラテン語の分音符号付き小文字 y",
+
+// Greek Characters and Symbols
+ fnof:"ラテン語のフック付き小文字 f\n関数\nフロリン",
+ Alpha:"ギリシャ語の大文字アルファ",
+ Beta:"ギリシャ語の大文字ベータ",
+ Gamma:"ギリシャ語の大文字ガンマ",
+ Delta:"ギリシャ語の大文字デルタ",
+ Epsilon:"ギリシャ語の大文字イプシロン",
+ Zeta:"ギリシャ語の大文字ゼータ",
+ Eta:"ギリシャ語の大文字イータ",
+ Theta:"ギリシャ語の大文字シータ",
+ Iota:"ギリシャ語の大文字イオタ",
+ Kappa:"ギリシャ語の大文字カッパ",
+ Lambda:"ギリシャ語の大文字ラムダ",
+ Mu:"ギリシャ語の大文字ミュー",
+ Nu:"ギリシャ語の大文字ニュー",
+ Xi:"ギリシャ語の大文字クシー",
+ Omicron:"ギリシャ語の大文字オミクロン",
+ Pi:"ギリシャ語の大文字パイ",
+ Rho:"ギリシャ語の大文字ロー",
+ Sigma:"ギリシャ語の大文字シグマ",
+ Tau:"ギリシャ語の大文字タウ",
+ Upsilon:"ギリシャ語の大文字ユプシロン",
+ Phi:"ギリシャ語の大文字ファイ",
+ Chi:"ギリシャ語の大文字カイ",
+ Psi:"ギリシャ語の大文字プシー",
+ Omega:"ギリシャ語の大文字オメガ",
+ alpha:"ギリシャ語の小文字アルファ",
+ beta:"ギリシャ語の小文字ベータ",
+ gamma:"ギリシャ語の小文字ガンマ",
+ delta:"ギリシャ語の小文字デルタ",
+ epsilon:"ギリシャ語の小文字イプシロン",
+ zeta:"ギリシャ語の小文字ゼータ",
+ eta:"ギリシャ語の小文字イータ",
+ theta:"ギリシャ語の小文字シータ",
+ iota:"ギリシャ語の小文字イオタ",
+ kappa:"ギリシャ語の小文字カッパ",
+ lambda:"ギリシャ語の小文字ラムダ",
+ mu:"ギリシャ語の小文字ミュー",
+ nu:"ギリシャ語の小文字ニュー",
+ xi:"ギリシャ語の小文字クシー",
+ omicron:"ギリシャ語の小文字オミクロン",
+ pi:"ギリシャ語の小文字パイ",
+ rho:"ギリシャ語の小文字ロー",
+ sigmaf:"ギリシャ語の小文字ファイナルシグマ",
+ sigma:"ギリシャ語の小文字シグマ",
+ tau:"ギリシャ語の小文字タウ",
+ upsilon:"ギリシャ語の小文字ユプシロン",
+ phi:"ギリシャ語の小文字ファイ",
+ chi:"ギリシャ語の小文字カイ",
+ psi:"ギリシャ語の小文字プシー",
+ omega:"ギリシャ語の小文字オメガ",
+ thetasym:"ギリシャ語の小文字シータ記号",
+ upsih:"ギリシャ語のフック記号付きユプシロン",
+ piv:"ギリシャ語のパイ記号",
+ bull:"黒丸\n黒い小さな円",
+ hellip:"水平省略符号\n3 つのドット・リーダー",
+ prime:"プライム記号\n分\nフィート",
+ Prime:"二重プライム記号\n秒\nインチ",
+ oline:"上線\n間隔上線",
+ frasl:"分数のスラッシュ",
+ weierp:"添え字の大文字 P\n累乗集合\nWeierstrass p",
+ image:"ドイツ字体の大文字 I\n虚数部",
+ real:"ドイツ字体の大文字 R\n実数部記号",
+ trade:"商標",
+ alefsym:"アレフ記号\n1 番目の超限基数",
+ larr:"左矢印",
+ uarr:"上矢印",
+ rarr:"右矢印",
+ darr:"下矢印",
+ harr:"左右矢印",
+ crarr:"角が左向きの下矢印\復帰",
+ lArr:"左二重矢印",
+ uArr:"上二重矢印",
+ rArr:"右二重矢印",
+ dArr:"下二重矢印",
+ hArr:"左右二重矢印",
+ forall:"すべてについて",
+ part:"偏微分",
+ exist:"存在",
+ empty:"空集合\nヌル集合\n直径",
+ nabla:"ナブラ\n後方の差分",
+ isin:"右辺の要素である",
+ notin:"右辺の要素でない",
+ ni:"メンバーとして含まれる",
+ prod:"n 乗\n積符号",
+ sum:"n 回加算",
+ minus:"減算記号",
+ lowast:"アスタリスク演算子",
+ radic:"平方根\nルート記号",
+ prop:"比例",
+ infin:"無限",
+ ang:"角度",
+ and:"論理積\nくさび形",
+ or:"論理和\nV 字形",
+ cap:"集合の積\nキャップ形",
+ cup:"和集合\カップ形","int":"積分",
+ there4:"したがって",
+ sim:"チルド演算子\n多様性\n類似性",
+ cong:"おおよそ等しい",
+ asymp:"ほぼ等しい\n漸近",
+ ne:"等しくない",
+ equiv:"同一",
+ le:"小さいか等しい",
+ ge:"大きいか等しい",
+ sub:"左辺は右辺の部分集合",
+ sup:"左辺は右辺を包含する",
+ nsub:"部分集合でない",
+ sube:"部分集合または等しい",
+ supe:"包含集合または等しい",
+ oplus:"ベクトル和\n直和",
+ otimes:"ベクトル積\nベクトル積",
+ perp:"直角\n直交\n垂直",
+ sdot:"ドット演算子",
+ lceil:"左上限\nAPL 上限",
+ rceil:"右上限",
+ lfloor:"左下限\nAPL 下限",
+ rfloor:"右下限",
+ lang:"左角括弧",
+ rang:"右角括弧",
+ loz:"ひし形",
+ spades:"トランプの黒のスペードの組",
+ clubs:"トランプの黒のクラブの組\nシャムロック",
+ hearts:"トランプの黒のハートの組\nバレンタイン",
+ diams:"トランプの黒のダイヤモンドの組",
+ OElig:"ラテン語の大文字の合字 OE",
+ oelig:"ラテン語の小文字の合字 oe",
+ Scaron:"ラテン語のキャロン付き大文字 S",
+ scaron:"ラテン語のキャロン付き小文字 s",
+ Yuml:"ラテン語の分音符号付き大文字 Y",
+ circ:"修飾文字の曲折アクセント記号アクセント",
+ tilde:"小文字の波形記号",
+ ensp:"en スペース",
+ emsp:"em スペース",
+ thinsp:"薄いスペース",
+ zwnj:"結合なしで幅ゼロ",
+ zwj:"結合ありで幅ゼロ",
+ lrm:"左から右へのマーク",
+ rlm:"右から左へのマーク",
+ ndash:"en ダッシュ",
+ mdash:"em ダッシュ",
+ lsquo:"左単一引用符",
+ rsquo:"右単一引用符",
+ sbquo:"単一下付き右引用符",
+ ldquo:"左二重引用符",
+ rdquo:"右二重引用符",
+ bdquo:"二重下付き右引用符",
+ dagger:"剣標",
+ Dagger:"二重剣標",
+ permil:"パーミル記号",
+ lsaquo:"単一左角引用符",
+ rsaquo:"単一右角引用符",
+ euro:"ユーロ記号"
+})
+
+//end v1.x content
+);