From a53d786515151303adc4000da063ed9657483189 Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 21 May 2018 03:08:51 +0900 Subject: [PATCH] =?UTF-8?q?=E6=8A=95=E7=A8=BF=E3=81=AE=E8=A1=A8=E7=A4=BA?= =?UTF-8?q?=E3=82=B9=E3=82=BF=E3=82=A4=E3=83=AB=E3=82=92=E9=81=B8=E6=8A=9E?= =?UTF-8?q?=E3=81=A7=E3=81=8D=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- locales/ja.yml | 3 ++ src/client/app/mobile/script.ts | 3 +- .../app/mobile/views/components/note.vue | 29 +++++++++++++++---- .../app/mobile/views/pages/settings.vue | 12 ++++++++ src/client/app/store.ts | 1 + 5 files changed, 42 insertions(+), 6 deletions(-) diff --git a/locales/ja.yml b/locales/ja.yml index 953556eed..645dec909 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -841,6 +841,9 @@ mobile/views/pages/settings.vue: show-reply-target: "リプライ先を表示する" show-my-renotes: "自分の行ったRenoteを表示する" show-renoted-my-notes: "Renoteされた自分の投稿を表示する" + post-style: "投稿の表示スタイル" + post-style-standard: "標準" + post-style-smart: "スマート" behavior: "動作" fetch-on-scroll: "スクロールで自動読み込み" disable-via-mobile: "「モバイルからの投稿」フラグを付けない" diff --git a/src/client/app/mobile/script.ts b/src/client/app/mobile/script.ts index be82ee862..c73c0097c 100644 --- a/src/client/app/mobile/script.ts +++ b/src/client/app/mobile/script.ts @@ -5,7 +5,7 @@ import Vue from 'vue'; import VueRouter from 'vue-router'; -import { MdCard, MdButton, MdField, MdMenu, MdList, MdSwitch, MdSubheader, MdDialog, MdDialogAlert } from 'vue-material/dist/components'; +import { MdCard, MdButton, MdField, MdMenu, MdList, MdSwitch, MdSubheader, MdDialog, MdDialogAlert, MdRadio } from 'vue-material/dist/components'; import 'vue-material/dist/vue-material.min.css'; import 'vue-material/dist/theme/default.css'; @@ -48,6 +48,7 @@ Vue.use(MdSwitch); Vue.use(MdSubheader); Vue.use(MdDialog); Vue.use(MdDialogAlert); +Vue.use(MdRadio); /** * init diff --git a/src/client/app/mobile/views/components/note.vue b/src/client/app/mobile/views/components/note.vue index 37b032886..b940b6b20 100644 --- a/src/client/app/mobile/views/components/note.vue +++ b/src/client/app/mobile/views/components/note.vue @@ -1,5 +1,5 @@