enhance(frontend): ワードミュート・ハードワードミュートの説明を追加 (#15207)

This commit is contained in:
かっこかり 2025-01-04 14:40:41 +09:00 committed by GitHub
parent 62299588d8
commit 6649e58b56
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 18 additions and 2 deletions

8
locales/index.d.ts vendored
View File

@ -2754,10 +2754,18 @@ export interface Locale extends ILocale {
* *
*/ */
"wordMute": string; "wordMute": string;
/**
*
*/
"wordMuteDescription": string;
/** /**
* *
*/ */
"hardWordMute": string; "hardWordMute": string;
/**
*
*/
"hardWordMuteDescription": string;
/** /**
* *
*/ */

View File

@ -684,7 +684,9 @@ smtpSecure: "SMTP 接続に暗黙的なSSL/TLSを使用する"
smtpSecureInfo: "STARTTLS使用時はオフにします。" smtpSecureInfo: "STARTTLS使用時はオフにします。"
testEmail: "配信テスト" testEmail: "配信テスト"
wordMute: "ワードミュート" wordMute: "ワードミュート"
wordMuteDescription: "指定した語句を含むノートを最小化します。最小化されたノートをクリックすることで表示することができます。"
hardWordMute: "ハードワードミュート" hardWordMute: "ハードワードミュート"
hardWordMuteDescription: "指定した語句を含むノートを隠します。ワードミュートとは異なり、ノートは完全に表示されなくなります。"
regexpError: "正規表現エラー" regexpError: "正規表現エラー"
regexpErrorDescription: "{tab}ワードミュートの{line}行目の正規表現にエラーが発生しました:" regexpErrorDescription: "{tab}ワードミュートの{line}行目の正規表現にエラーが発生しました:"
instanceMute: "サーバーミュート" instanceMute: "サーバーミュート"

View File

@ -9,14 +9,20 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #icon><i class="ti ti-message-off"></i></template> <template #icon><i class="ti ti-message-off"></i></template>
<template #label>{{ i18n.ts.wordMute }}</template> <template #label>{{ i18n.ts.wordMute }}</template>
<XWordMute :muted="$i.mutedWords" @save="saveMutedWords"/> <div class="_gaps_m">
<MkInfo>{{ i18n.ts.wordMuteDescription }}</MkInfo>
<XWordMute :muted="$i.mutedWords" @save="saveMutedWords"/>
</div>
</MkFolder> </MkFolder>
<MkFolder> <MkFolder>
<template #icon><i class="ti ti-message-off"></i></template> <template #icon><i class="ti ti-message-off"></i></template>
<template #label>{{ i18n.ts.hardWordMute }}</template> <template #label>{{ i18n.ts.hardWordMute }}</template>
<XWordMute :muted="$i.hardMutedWords" @save="saveHardMutedWords"/> <div class="_gaps_m">
<MkInfo>{{ i18n.ts.hardWordMuteDescription }}</MkInfo>
<XWordMute :muted="$i.hardMutedWords" @save="saveHardMutedWords"/>
</div>
</MkFolder> </MkFolder>
<MkFolder> <MkFolder>