From 79c49bc926ef2c91e231dde0c9132cdae338d421 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 1 May 2019 20:48:56 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=9A=E3=83=BC=E3=82=B8=E3=81=AE=E3=82=BD?= =?UTF-8?q?=E3=83=BC=E3=82=B9=E3=82=92=E8=A6=8B=E3=82=8C=E3=82=8B=E3=82=88?= =?UTF-8?q?=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- locales/ja-JP.yml | 3 ++ .../components/page-editor/page-editor.vue | 46 ++++++++++--------- .../app/common/views/pages/page/page.vue | 7 +++ src/client/app/desktop/script.ts | 3 +- .../app/desktop/views/pages/page-editor.vue | 39 +++++++++++++++- src/client/app/mobile/script.ts | 3 +- .../app/mobile/views/pages/page-editor.vue | 39 +++++++++++++++- 7 files changed, 113 insertions(+), 27 deletions(-) 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') }} +
+