diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-30 19:15:52 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-08-30 19:15:52 +0900 |
| commit | aabda5a956ec4950904c7204f020491e83380a1c (patch) | |
| tree | 290f506003eeb07f8f24784fc56be78592b721b5 | |
| parent | Update CHANGELOG.md (diff) | |
| download | misskey-aabda5a956ec4950904c7204f020491e83380a1c.tar.gz misskey-aabda5a956ec4950904c7204f020491e83380a1c.tar.bz2 misskey-aabda5a956ec4950904c7204f020491e83380a1c.zip | |
clean up
| -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, 1 insertions, 6 deletions
diff --git a/locales/index.d.ts b/locales/index.d.ts index 738799bfcd..0cee5b27e5 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -12040,10 +12040,6 @@ 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 29fce44ac3..3cb8248948 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -3218,7 +3218,6 @@ _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 e6c75d09f0..1d2dfed297 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 }} ({{ i18n.ts._serverSetupWizard.remoteContentsCleaning_description2 }})</template> + <template #caption>{{ i18n.ts._serverSetupWizard.remoteContentsCleaning_description }}</template> </MkSwitch> </div> </MkFolder> |