diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-26 15:02:12 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-26 15:02:12 +0900 |
| commit | 203296b9cb21fd17b3bdc2eef9aee00265462ab2 (patch) | |
| tree | 366d9932ca94aa2821fcb05f0dd9a3b6aa718933 | |
| parent | refactor (diff) | |
| download | misskey-203296b9cb21fd17b3bdc2eef9aee00265462ab2.tar.gz misskey-203296b9cb21fd17b3bdc2eef9aee00265462ab2.tar.bz2 misskey-203296b9cb21fd17b3bdc2eef9aee00265462ab2.zip | |
chore(frontend): tweak MkServerSetupWizard
| -rw-r--r-- | locales/index.d.ts | 4 | ||||
| -rw-r--r-- | locales/ja-JP.yml | 1 | ||||
| -rw-r--r-- | packages/frontend/src/components/MkServerSetupWizard.vue | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/locales/index.d.ts b/locales/index.d.ts index 37350a7b04..c078f4ece3 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -12040,6 +12040,10 @@ export interface Locale extends ILocale { */ "remoteContentsCleaning_description": string; /** + * ハイパーリンクなど、一部の参照方法はシステム上で検知できません。 + */ + "remoteContentsCleaning_description2": string; + /** * 管理者情報 */ "adminInfo": string; diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index fd64fa23c8..f24b93d139 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -3218,6 +3218,7 @@ _serverSetupWizard: youCanConfigureMoreFederationSettingsLater: "連合可能なサーバーの指定など、高度な設定も後ほど可能です。" remoteContentsCleaning: "受信コンテンツの自動クリーニング" remoteContentsCleaning_description: "連合を行うと、継続して多くのコンテンツを受信します。自動クリーニングを有効にすると、参照されていない古くなったコンテンツを自動でサーバーから削除し、ストレージを節約できます。" + remoteContentsCleaning_description2: "ハイパーリンクなど、一部の参照方法はシステム上で検知できません。" adminInfo: "管理者情報" adminInfo_description: "問い合わせを受け付けるために使用される管理者情報を設定します。" adminInfo_mustBeFilled: "オープンサーバー、または連合がオンの場合は必ず入力が必要です。" diff --git a/packages/frontend/src/components/MkServerSetupWizard.vue b/packages/frontend/src/components/MkServerSetupWizard.vue index 1d2dfed297..e6c75d09f0 100644 --- a/packages/frontend/src/components/MkServerSetupWizard.vue +++ b/packages/frontend/src/components/MkServerSetupWizard.vue @@ -66,7 +66,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkSwitch v-if="q_federation === 'yes'" v-model="q_remoteContentsCleaning"> <template #label>{{ i18n.ts._serverSetupWizard.remoteContentsCleaning }}</template> - <template #caption>{{ i18n.ts._serverSetupWizard.remoteContentsCleaning_description }}</template> + <template #caption>{{ i18n.ts._serverSetupWizard.remoteContentsCleaning_description }} ({{ i18n.ts._serverSetupWizard.remoteContentsCleaning_description2 }})</template> </MkSwitch> </div> </MkFolder> |