feat(frontend): 絵文字をミュート可能にする機能 (#15966)

* wip ( 絵文字ミュートの基礎実装, PoC )

* refactor: 絵文字のmute/unmute処理の共通化

* SPDX

* リアクションからも絵文字ミュート可能に

* emojiMute/emojiUnmute

* replace resource of emojiMute

* add vitest preferstate for mutedEmojis

* add vitest to preferReactive

* 混入削除

* Fix typo (mutedEmojis -> mutingEmojis)

* reactiveやめる

* add時の判定ミスを修正

* Add CHANGELOG

* Revert "reactiveやめる"

This reverts commit 442742c371472f9c9e9372c5552cf73767aedecf.

* Update Changelog
This commit is contained in:
taichan
2025-05-12 10:00:06 +09:00
committed by GitHub
parent b18d6b4cef
commit 5bc52b6743
13 changed files with 409 additions and 36 deletions

16
locales/index.d.ts vendored
View File

@@ -5425,6 +5425,22 @@ export interface Locale extends ILocale {
* オフにする
*/
"turnItOff": string;
/**
* 絵文字ミュート
*/
"emojiMute": string;
/**
* 絵文字ミュート解除
*/
"emojiUnmute": string;
/**
* {x}をミュート
*/
"muteX": ParameterizedString<"x">;
/**
* {x}のミュートを解除
*/
"unmuteX": ParameterizedString<"x">;
"_chat": {
/**
* まだメッセージはありません

View File

@@ -1351,6 +1351,10 @@ advice: "アドバイス"
realtimeMode: "リアルタイムモード"
turnItOn: "オンにする"
turnItOff: "オフにする"
emojiMute: "絵文字ミュート"
emojiUnmute: "絵文字ミュート解除"
muteX: "{x}をミュート"
unmuteX: "{x}のミュートを解除"
_chat:
noMessagesYet: "まだメッセージはありません"