From 32de11c4bbaa92cff645b8addaae11b06c5a412c Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 20 May 2018 09:04:48 +0900 Subject: [PATCH] wip --- locales/ja.yml | 38 ++++- src/client/app/app.styl | 5 + src/client/app/mobile/script.ts | 3 +- .../app/mobile/views/pages/settings.vue | 159 +++++++++++++++++- .../views/pages/settings/settings.profile.vue | 72 ++------ src/client/md.scss | 2 +- 6 files changed, 207 insertions(+), 72 deletions(-) diff --git a/locales/ja.yml b/locales/ja.yml index bb10dfb4f..2d50fbbaf 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -807,18 +807,13 @@ mobile/views/pages/notifications.vue: read-all: "すべての通知を既読にしますか?" mobile/views/pages/settings/settings.profile.vue: - title: "プロフィール設定" + title: "プロフィール" will-be-published: "これらのプロフィールは公開されます。" name: "名前" location: "場所" description: "自己紹介" birthday: "誕生日" - avatar: "アイコン" - banner: "バナー" - avatar-saved: "アイコンを保存しました" - banner-saved: "バナーを保存しました" - set-avatar: "アイコンを選択する" - set-banner: "バナーを選択する" + is-bot: "このアカウントはBotです" save: "保存" saved: "プロフィールを保存しました" @@ -831,9 +826,34 @@ mobile/views/pages/selectdrive.vue: mobile/views/pages/settings.vue: signed-in-as: "{}としてサインイン中" - profile: "プロフィール" + lang: "言語" + lang-tip: "変更はページの再読み込み後に反映されます。" + recommended: "推奨" + auto: "自動" + specify-language: "言語を指定" + design: "デザインと表示" + dark-mode: "ダークモード" + circle-icons: "円形のアイコンを使用" + timeline: "タイムライン" + show-reply-target: "リプライ先を表示する" + show-my-renotes: "自分の行ったRenoteを表示する" + show-renoted-my-notes: "Renoteされた自分の投稿を表示する" + behavior: "動作" + fetch-on-scroll: "スクロールで自動読み込み" + disable-via-mobile: "「モバイルからの投稿」フラグを付けない" twitter: "Twitter連携" - signin-history: "サインイン履歴" + twitter-connect: "Twitterアカウントに接続する" + twitter-reconnect: "再接続する" + twitter-disconnect: "切断する" + update: "Misskey Update" + version: "バージョン:" + latest-version: "最新のバージョン:" + update-checking: "アップデートを確認中" + check-for-updates: "アップデートを確認" + no-updates: "利用可能な更新はありません" + no-updates-desc: "お使いのMisskeyは最新です。" + update-available: "新しいバージョンが利用可能です" + update-available-desc: "ページを再度読み込みすると更新が適用されます。" settings: "設定" signout: "サインアウト" diff --git a/src/client/app/app.styl b/src/client/app/app.styl index 431b9daa6..ba694b73a 100644 --- a/src/client/app/app.styl +++ b/src/client/app/app.styl @@ -7,6 +7,11 @@ html cursor progress !important body + // for md + font-size 16px !important + line-height initial !important + letter-spacing initial !important + overflow-wrap break-word #error diff --git a/src/client/app/mobile/script.ts b/src/client/app/mobile/script.ts index 427c177a1..ac7f29686 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 } from 'vue-material/dist/components'; +import { MdCard, MdButton, MdField, MdMenu, MdList, MdSwitch, MdSubheader } from 'vue-material/dist/components'; import 'vue-material/dist/vue-material.min.css'; import 'vue-material/dist/theme/default.css'; @@ -46,6 +46,7 @@ Vue.use(MdField); Vue.use(MdMenu); Vue.use(MdList); Vue.use(MdSwitch); +Vue.use(MdSubheader); /** * init diff --git a/src/client/app/mobile/views/pages/settings.vue b/src/client/app/mobile/views/pages/settings.vue index b16860d62..2e4ae5ce3 100644 --- a/src/client/app/mobile/views/pages/settings.vue +++ b/src/client/app/mobile/views/pages/settings.vue @@ -6,9 +6,9 @@
- + -
%i18n:@design%
+
%fa:palette% %i18n:@design%
@@ -19,6 +19,95 @@
%i18n:@circle-icons%
+ +
+
%i18n:@timeline%
+ +
+ %i18n:@show-reply-target% +
+ +
+ %i18n:@show-my-renotes% +
+ +
+ %i18n:@show-renoted-my-notes% +
+
+
+
+ + + +
%fa:cog% %i18n:@behavior%
+
+ + +
+ %i18n:@fetch-on-scroll% +
+ +
+ %i18n:@disable-via-mobile% +
+
+
+ + + +
%fa:language% %i18n:@lang%
+
+ + + + + + %i18n:@auto% + + + + 日本語 + English + Français + Polski + Deutsch + + + + %fa:info-circle% %i18n:@lang-tip% + +
+ + + +
%fa:B twitter% %i18n:@twitter%
+
+ + + +

+ {{ os.i.twitter ? '%i18n:!@twitter-reconnect%' : '%i18n:!@twitter-connect%' }} + or + %i18n:@twitter-disconnect% +

+
+
+ + + +
%fa:sync-alt% %i18n:@update%
+
+ + +
%i18n:@version% {{ version }}
+ + + + +
@@ -29,7 +118,8 @@