mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-07 20:44:34 +00:00
chore(frontend): tweak lockdown setting
This commit is contained in:
parent
7957ee5191
commit
6c9153300d
4 changed files with 9 additions and 3 deletions
4
locales/index.d.ts
vendored
4
locales/index.d.ts
vendored
|
@ -5395,6 +5395,10 @@ export interface Locale extends ILocale {
|
||||||
* リモートサーバーに連合されたノートには効果が及ばない場合があります。
|
* リモートサーバーに連合されたノートには効果が及ばない場合があります。
|
||||||
*/
|
*/
|
||||||
"mayNotEffectForFederatedNotes": string;
|
"mayNotEffectForFederatedNotes": string;
|
||||||
|
/**
|
||||||
|
* これらの制限は簡易的なものです。リモートサーバーでの閲覧やモデレーション時など、一部のシチュエーションでは適用されない場合があります。
|
||||||
|
*/
|
||||||
|
"mayNotEffectSomeSituations": string;
|
||||||
/**
|
/**
|
||||||
* 指定した時間を経過しているノート
|
* 指定した時間を経過しているノート
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1349,6 +1349,7 @@ _accountSettings:
|
||||||
makeNotesHiddenBefore: "過去のノートを非公開化する"
|
makeNotesHiddenBefore: "過去のノートを非公開化する"
|
||||||
makeNotesHiddenBeforeDescription: "この機能が有効になっている間、設定された日時より過去、または設定された時間を経過しているノートが自分のみ表示可能(非公開化)になります。無効に戻すと、ノートの公開状態も元に戻ります。"
|
makeNotesHiddenBeforeDescription: "この機能が有効になっている間、設定された日時より過去、または設定された時間を経過しているノートが自分のみ表示可能(非公開化)になります。無効に戻すと、ノートの公開状態も元に戻ります。"
|
||||||
mayNotEffectForFederatedNotes: "リモートサーバーに連合されたノートには効果が及ばない場合があります。"
|
mayNotEffectForFederatedNotes: "リモートサーバーに連合されたノートには効果が及ばない場合があります。"
|
||||||
|
mayNotEffectSomeSituations: "これらの制限は簡易的なものです。リモートサーバーでの閲覧やモデレーション時など、一部のシチュエーションでは適用されない場合があります。"
|
||||||
notesHavePassedSpecifiedPeriod: "指定した時間を経過しているノート"
|
notesHavePassedSpecifiedPeriod: "指定した時間を経過しているノート"
|
||||||
notesOlderThanSpecifiedDateAndTime: "指定した日時より前のノート"
|
notesOlderThanSpecifiedDateAndTime: "指定した日時より前のノート"
|
||||||
|
|
||||||
|
|
|
@ -123,7 +123,6 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
<template #caption>
|
<template #caption>
|
||||||
<div><SearchKeyword>{{ i18n.ts._accountSettings.makeNotesFollowersOnlyBeforeDescription }}</SearchKeyword></div>
|
<div><SearchKeyword>{{ i18n.ts._accountSettings.makeNotesFollowersOnlyBeforeDescription }}</SearchKeyword></div>
|
||||||
<div v-if="instance.federation !== 'none'"><i class="ti ti-alert-triangle" style="color: var(--MI_THEME-warn);"></i> {{ i18n.ts._accountSettings.mayNotEffectForFederatedNotes }}</div>
|
|
||||||
</template>
|
</template>
|
||||||
</FormSlot>
|
</FormSlot>
|
||||||
</SearchMarker>
|
</SearchMarker>
|
||||||
|
@ -161,10 +160,11 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
<template #caption>
|
<template #caption>
|
||||||
<div><SearchKeyword>{{ i18n.ts._accountSettings.makeNotesHiddenBeforeDescription }}</SearchKeyword></div>
|
<div><SearchKeyword>{{ i18n.ts._accountSettings.makeNotesHiddenBeforeDescription }}</SearchKeyword></div>
|
||||||
<div v-if="instance.federation !== 'none'"><i class="ti ti-alert-triangle" style="color: var(--MI_THEME-warn);"></i> {{ i18n.ts._accountSettings.mayNotEffectForFederatedNotes }}</div>
|
|
||||||
</template>
|
</template>
|
||||||
</FormSlot>
|
</FormSlot>
|
||||||
</SearchMarker>
|
</SearchMarker>
|
||||||
|
|
||||||
|
<MkInfo warn>{{ i18n.ts._accountSettings.mayNotEffectSomeSituations }}</MkInfo>
|
||||||
</div>
|
</div>
|
||||||
</FormSection>
|
</FormSection>
|
||||||
</SearchMarker>
|
</SearchMarker>
|
||||||
|
@ -188,6 +188,7 @@ import { formatDateTimeString } from '@/utility/format-time-string.js';
|
||||||
import MkInput from '@/components/MkInput.vue';
|
import MkInput from '@/components/MkInput.vue';
|
||||||
import * as os from '@/os.js';
|
import * as os from '@/os.js';
|
||||||
import MkDisableSection from '@/components/MkDisableSection.vue';
|
import MkDisableSection from '@/components/MkDisableSection.vue';
|
||||||
|
import MkInfo from '@/components/MkInfo.vue';
|
||||||
|
|
||||||
const $i = signinRequired();
|
const $i = signinRequired();
|
||||||
|
|
||||||
|
|
|
@ -253,7 +253,7 @@ export const searchIndexes: SearchIndexItem[] = [
|
||||||
keywords: ['follower', i18n.ts._accountSettings.makeNotesFollowersOnlyBeforeDescription],
|
keywords: ['follower', i18n.ts._accountSettings.makeNotesFollowersOnlyBeforeDescription],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: '2prkeWRSd',
|
id: 'ebJ9IUbik',
|
||||||
label: i18n.ts._accountSettings.makeNotesHiddenBefore,
|
label: i18n.ts._accountSettings.makeNotesHiddenBefore,
|
||||||
keywords: ['hidden', i18n.ts._accountSettings.makeNotesHiddenBeforeDescription],
|
keywords: ['hidden', i18n.ts._accountSettings.makeNotesHiddenBeforeDescription],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue