Commit 027c5a6 1 parent a86c419 commit 027c5a6 Copy full SHA for 027c5a6
File tree 4 files changed +9
-3
lines changed
4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -5395,6 +5395,10 @@ export interface Locale extends ILocale {
5395
5395
* リモートサーバーに連合されたノートには効果が及ばない場合があります。
5396
5396
*/
5397
5397
"mayNotEffectForFederatedNotes" : string ;
5398
+ /**
5399
+ * これらの制限は簡易的なものです。リモートサーバーでの閲覧やモデレーション時など、一部のシチュエーションでは適用されない場合があります。
5400
+ */
5401
+ "mayNotEffectSomeSituations" : string ;
5398
5402
/**
5399
5403
* 指定した時間を経過しているノート
5400
5404
*/
Original file line number Diff line number Diff line change @@ -1349,6 +1349,7 @@ _accountSettings:
1349
1349
makeNotesHiddenBefore : " 過去のノートを非公開化する"
1350
1350
makeNotesHiddenBeforeDescription : " この機能が有効になっている間、設定された日時より過去、または設定された時間を経過しているノートが自分のみ表示可能(非公開化)になります。無効に戻すと、ノートの公開状態も元に戻ります。"
1351
1351
mayNotEffectForFederatedNotes : " リモートサーバーに連合されたノートには効果が及ばない場合があります。"
1352
+ mayNotEffectSomeSituations : " これらの制限は簡易的なものです。リモートサーバーでの閲覧やモデレーション時など、一部のシチュエーションでは適用されない場合があります。"
1352
1353
notesHavePassedSpecifiedPeriod : " 指定した時間を経過しているノート"
1353
1354
notesOlderThanSpecifiedDateAndTime : " 指定した日時より前のノート"
1354
1355
Original file line number Diff line number Diff line change @@ -123,7 +123,6 @@ SPDX-License-Identifier: AGPL-3.0-only
123
123
124
124
<template #caption>
125
125
<div><SearchKeyword>{{ i18n.ts._accountSettings.makeNotesFollowersOnlyBeforeDescription }}</SearchKeyword></div>
126
- <div v-if="instance.federation !== 'none'"><i class="ti ti-alert-triangle" style="color: var(--MI_THEME-warn);"></i> {{ i18n.ts._accountSettings.mayNotEffectForFederatedNotes }}</div>
127
126
</template>
128
127
</FormSlot>
129
128
</SearchMarker>
@@ -161,10 +160,11 @@ SPDX-License-Identifier: AGPL-3.0-only
161
160
162
161
<template #caption>
163
162
<div><SearchKeyword>{{ i18n.ts._accountSettings.makeNotesHiddenBeforeDescription }}</SearchKeyword></div>
164
- <div v-if="instance.federation !== 'none'"><i class="ti ti-alert-triangle" style="color: var(--MI_THEME-warn);"></i> {{ i18n.ts._accountSettings.mayNotEffectForFederatedNotes }}</div>
165
163
</template>
166
164
</FormSlot>
167
165
</SearchMarker>
166
+
167
+ <MkInfo warn>{{ i18n.ts._accountSettings.mayNotEffectSomeSituations }}</MkInfo>
168
168
</div>
169
169
</FormSection>
170
170
</SearchMarker>
@@ -188,6 +188,7 @@ import { formatDateTimeString } from '@/utility/format-time-string.js';
188
188
import MkInput from '@/components/MkInput.vue';
189
189
import * as os from '@/os.js';
190
190
import MkDisableSection from '@/components/MkDisableSection.vue';
191
+ import MkInfo from '@/components/MkInfo.vue';
191
192
192
193
const $i = signinRequired();
193
194
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ export const searchIndexes: SearchIndexItem[] = [
253
253
keywords : [ 'follower' , i18n . ts . _accountSettings . makeNotesFollowersOnlyBeforeDescription ] ,
254
254
} ,
255
255
{
256
- id : '2prkeWRSd ' ,
256
+ id : 'ebJ9IUbik ' ,
257
257
label : i18n . ts . _accountSettings . makeNotesHiddenBefore ,
258
258
keywords : [ 'hidden' , i18n . ts . _accountSettings . makeNotesHiddenBeforeDescription ] ,
259
259
} ,
You can’t perform that action at this time.
0 commit comments