summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-12-27 14:25:20 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-12-27 14:25:20 +0900
commit88dca1400e17432d80d2703eb751a0d806f43bc9 (patch)
treef464a8b5697e4f3366652812cbe88549d5e75322
parent:art: (diff)
downloadmisskey-88dca1400e17432d80d2703eb751a0d806f43bc9.tar.gz
misskey-88dca1400e17432d80d2703eb751a0d806f43bc9.tar.bz2
misskey-88dca1400e17432d80d2703eb751a0d806f43bc9.zip
:art:
-rw-r--r--locales/ja-JP.yml1
-rw-r--r--packages/client/src/pages/settings/profile.vue11
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>