diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 00ec4e662..a8a5cbafd 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -1848,7 +1848,10 @@ pages: are-you-sure-delete: "このページを削除しますか?" page-deleted: "ページを削除しました" edit-this-page: "このページを編集" + view-source: "ソースを表示" view-page: "ページを見る" + inspector: "インスペクター" + content: "ページブロック" variables: "変数" variables-info: "変数を使うことで動的なページを作成できます。テキスト内で { 変数名 } と書くとそこに変数の値を埋め込めます。例えば Hello { thing } world! というテキストで、変数(thing)の値が ai だった場合、テキストは Hello ai world! になります。" variables-info2: "変数の評価(値を算出すること)は上から下に行われるので、ある変数の中で自分より下の変数を参照することはできません。例えば上から A、B、C と3つの変数を定義したとき、Cの中でABを参照することはできますが、Aの中でBCを参照することはできません。" diff --git a/src/client/app/common/views/components/page-editor/page-editor.vue b/src/client/app/common/views/components/page-editor/page-editor.vue index 8b03df748..6d07c5dc6 100644 --- a/src/client/app/common/views/components/page-editor/page-editor.vue +++ b/src/client/app/common/views/components/page-editor/page-editor.vue @@ -36,10 +36,10 @@
- {{ $t('set-eye-catchig-image') }} + {{ $t('set-eye-catchig-image') }}
- {{ $t('remove-eye-catchig-image') }} + {{ $t('remove-eye-catchig-image') }}
@@ -81,14 +81,22 @@ + + + +
+ {{ $t('content') }} + {{ $t('variables') }} +
+