wip
This commit is contained in:
parent
3dde7f1ac4
commit
9fc3cd7019
|
@ -3186,6 +3186,10 @@ export interface Locale extends ILocale {
|
||||||
* 反映には再起動が必要です。
|
* 反映には再起動が必要です。
|
||||||
*/
|
*/
|
||||||
"needReloadToApply": string;
|
"needReloadToApply": string;
|
||||||
|
/**
|
||||||
|
* 反映にはサーバーの再起動が必要です。
|
||||||
|
*/
|
||||||
|
"needToRestartServerToApply": string;
|
||||||
/**
|
/**
|
||||||
* タイトルバーを表示する
|
* タイトルバーを表示する
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -792,6 +792,7 @@ wide: "広い"
|
||||||
narrow: "狭い"
|
narrow: "狭い"
|
||||||
reloadToApplySetting: "設定はページリロード後に反映されます。"
|
reloadToApplySetting: "設定はページリロード後に反映されます。"
|
||||||
needReloadToApply: "反映には再起動が必要です。"
|
needReloadToApply: "反映には再起動が必要です。"
|
||||||
|
needToRestartServerToApply: "反映にはサーバーの再起動が必要です。"
|
||||||
showTitlebar: "タイトルバーを表示する"
|
showTitlebar: "タイトルバーを表示する"
|
||||||
clearCache: "キャッシュをクリア"
|
clearCache: "キャッシュをクリア"
|
||||||
onlineUsersCount: "{n}人がオンライン"
|
onlineUsersCount: "{n}人がオンライン"
|
||||||
|
|
|
@ -246,7 +246,10 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
<MkSwitch v-model="federationForm.state.allowExternalApRedirect">
|
<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 #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>
|
||||||
|
|
||||||
<MkSwitch v-model="federationForm.state.cacheRemoteFiles">
|
<MkSwitch v-model="federationForm.state.cacheRemoteFiles">
|
||||||
|
|
Loading…
Reference in New Issue