diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index adff5c556..0b7108fe6 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -832,6 +832,8 @@ breakFollow: "フォロワーを解除"
breakFollowConfirm: "フォロワー解除しますか?"
itsOn: "オンになっています"
itsOff: "オフになっています"
+on: "オン"
+off: "オフ"
emailRequiredForSignup: "アカウント登録にメールアドレスを必須にする"
unread: "未読"
filter: "フィルタ"
diff --git a/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue b/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue
index 5fc6fd4d2..e9f4f68df 100644
--- a/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue
+++ b/packages/frontend/src/components/MkUserSetupDialog.Privacy.vue
@@ -2,22 +2,33 @@
{{ i18n.ts._initialAccountSetting.theseSettingsCanEditLater }}
- {{ i18n.ts.makeFollowManuallyApprove }}{{ i18n.ts.lockedAccountInfo }}
+
+ {{ i18n.ts.makeFollowManuallyApprove }}
+ {{ isLocked ? i18n.ts.on : i18n.ts.off }}
-
- {{ i18n.ts.hideOnlineStatus }}
- {{ i18n.ts.hideOnlineStatusDescription }}
-
+ {{ i18n.ts.makeFollowManuallyApprove }}{{ i18n.ts.lockedAccountInfo }}
+
-
- {{ i18n.ts.noCrawle }}
- {{ i18n.ts.noCrawleDescription }}
-
+
+ {{ i18n.ts.hideOnlineStatus }}
+ {{ hideOnlineStatus ? i18n.ts.on : i18n.ts.off }}
-
- {{ i18n.ts.preventAiLearning }}{{ i18n.ts.beta }}
- {{ i18n.ts.preventAiLearningDescription }}
-
+ {{ i18n.ts.hideOnlineStatus }}{{ i18n.ts.hideOnlineStatusDescription }}
+
+
+
+ {{ i18n.ts.noCrawle }}
+ {{ noCrawle ? i18n.ts.on : i18n.ts.off }}
+
+ {{ i18n.ts.noCrawle }}{{ i18n.ts.noCrawleDescription }}
+
+
+
+ {{ i18n.ts.preventAiLearning }}
+ {{ preventAiLearning ? i18n.ts.on : i18n.ts.off }}
+
+ {{ i18n.ts.preventAiLearning }}{{ i18n.ts.preventAiLearningDescription }}
+
{{ i18n.ts._initialAccountSetting.youCanEditMoreSettingsInSettingsPageLater }}
@@ -29,6 +40,7 @@ import { instance } from '@/instance';
import { i18n } from '@/i18n';
import MkSwitch from '@/components/MkSwitch.vue';
import MkInfo from '@/components/MkInfo.vue';
+import MkFolder from '@/components/MkFolder.vue';
import * as os from '@/os';
import { $i } from '@/account';