This commit is contained in:
syuilo 2025-05-12 16:52:15 +09:00
parent 3dde7f1ac4
commit 9fc3cd7019
3 changed files with 9 additions and 1 deletions

4
locales/index.d.ts vendored
View File

@ -3186,6 +3186,10 @@ export interface Locale extends ILocale {
*
*/
"needReloadToApply": string;
/**
*
*/
"needToRestartServerToApply": string;
/**
*
*/

View File

@ -792,6 +792,7 @@ wide: "広い"
narrow: "狭い"
reloadToApplySetting: "設定はページリロード後に反映されます。"
needReloadToApply: "反映には再起動が必要です。"
needToRestartServerToApply: "反映にはサーバーの再起動が必要です。"
showTitlebar: "タイトルバーを表示する"
clearCache: "キャッシュをクリア"
onlineUsersCount: "{n}人がオンライン"

View File

@ -246,7 +246,10 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkSwitch v-model="federationForm.state.allowExternalApRedirect">
<template #label>{{ i18n.ts._serverSettings.allowExternalApRedirect }}<span v-if="federationForm.modifiedStates.allowExternalApRedirect" class="_modified">{{ i18n.ts.modified }}</span></template>
<template #caption>{{ i18n.ts._serverSettings.allowExternalApRedirect_description }}</template>
<template #caption>
<div>{{ i18n.ts._serverSettings.allowExternalApRedirect_description }}</div>
<div>{{ i18n.ts.needToRestartServerToApply }}</div>
</template>
</MkSwitch>
<MkSwitch v-model="federationForm.state.cacheRemoteFiles">