Update mute-block.vue

This commit is contained in:
syuilo 2025-02-22 21:08:44 +09:00
parent afc481d3db
commit 35160f602e
1 changed files with 117 additions and 117 deletions

View File

@ -4,11 +4,11 @@ SPDX-License-Identifier: AGPL-3.0-only
--> -->
<template> <template>
<SearchMarker path="/settings/mute-block" :label="i18n.ts.muteAndBlock" icon="ti ti-ban" :keywords="['mute', 'block']">
<div class="_gaps_m"> <div class="_gaps_m">
<SearchMarker <SearchMarker
:locationLabel="[i18n.ts.muteAndBlock]" :label="i18n.ts.wordMute"
icon="ti ti-ban" :keywords="['word']"
:keywords="['mute', i18n.ts.wordMute]"
> >
<MkFolder> <MkFolder>
<template #icon><i class="ti ti-message-off"></i></template> <template #icon><i class="ti ti-message-off"></i></template>
@ -18,9 +18,8 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkInfo>{{ i18n.ts.wordMuteDescription }}</MkInfo> <MkInfo>{{ i18n.ts.wordMuteDescription }}</MkInfo>
<SearchMarker <SearchMarker
:locationLabel="[i18n.ts.muteAndBlock, i18n.ts.wordMute]" :label="i18n.ts.showMutedWord"
icon="ti ti-ban" :keywords="['show']"
:keywords="['showMutedWord', i18n.ts.showMutedWord]"
> >
<MkSwitch v-model="showSoftWordMutedWord">{{ i18n.ts.showMutedWord }}</MkSwitch> <MkSwitch v-model="showSoftWordMutedWord">{{ i18n.ts.showMutedWord }}</MkSwitch>
</SearchMarker> </SearchMarker>
@ -144,6 +143,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</MkPagination> </MkPagination>
</MkFolder> </MkFolder>
</div> </div>
</SearchMarker>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>