diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-27 14:25:20 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-27 14:25:20 +0900 |
| commit | 88dca1400e17432d80d2703eb751a0d806f43bc9 (patch) | |
| tree | f464a8b5697e4f3366652812cbe88549d5e75322 | |
| parent | :art: (diff) | |
| download | misskey-88dca1400e17432d80d2703eb751a0d806f43bc9.tar.gz misskey-88dca1400e17432d80d2703eb751a0d806f43bc9.tar.bz2 misskey-88dca1400e17432d80d2703eb751a0d806f43bc9.zip | |
:art:
| -rw-r--r-- | locales/ja-JP.yml | 1 | ||||
| -rw-r--r-- | packages/client/src/pages/settings/profile.vue | 11 |
2 files changed, 10 insertions, 2 deletions
diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 2c048fbe72..fe30130631 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -717,6 +717,7 @@ accentColor: "アクセント" textColor: "文字" saveAs: "名前を付けて保存" advanced: "高度" +advancedSettings: "高度な設定" value: "値" createdAt: "作成日時" updatedAt: "更新日時" diff --git a/packages/client/src/pages/settings/profile.vue b/packages/client/src/pages/settings/profile.vue index 868068e010..14eeeaaa11 100644 --- a/packages/client/src/pages/settings/profile.vue +++ b/packages/client/src/pages/settings/profile.vue @@ -53,9 +53,16 @@ <template #caption>{{ i18n.ts._profile.metadataDescription }}</template> </FormSlot> - <FormSwitch v-model="profile.isCat" class="_formBlock">{{ i18n.ts.flagAsCat }}<template #caption>{{ i18n.ts.flagAsCatDescription }}</template></FormSwitch> + <FormFolder> + <template #label>{{ i18n.ts.advancedSettings }}</template> + + <div class="_formRoot"> + <FormSwitch v-model="profile.isCat" class="_formBlock">{{ i18n.ts.flagAsCat }}<template #caption>{{ i18n.ts.flagAsCatDescription }}</template></FormSwitch> + <FormSwitch v-model="profile.isBot" class="_formBlock">{{ i18n.ts.flagAsBot }}<template #caption>{{ i18n.ts.flagAsBotDescription }}</template></FormSwitch> + </div> + </FormFolder> + <FormSwitch v-model="profile.showTimelineReplies" class="_formBlock">{{ i18n.ts.flagShowTimelineReplies }}<template #caption>{{ i18n.ts.flagShowTimelineRepliesDescription }} {{ i18n.ts.reflectMayTakeTime }}</template></FormSwitch> - <FormSwitch v-model="profile.isBot" class="_formBlock">{{ i18n.ts.flagAsBot }}<template #caption>{{ i18n.ts.flagAsBotDescription }}</template></FormSwitch> </div> </template> |