forked from mirrors/misskey
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:
16
locales/index.d.ts
vendored
16
locales/index.d.ts
vendored
@@ -5425,6 +5425,22 @@ export interface Locale extends ILocale {
|
||||
* オフにする
|
||||
*/
|
||||
"turnItOff": string;
|
||||
/**
|
||||
* 絵文字ミュート
|
||||
*/
|
||||
"emojiMute": string;
|
||||
/**
|
||||
* 絵文字ミュート解除
|
||||
*/
|
||||
"emojiUnmute": string;
|
||||
/**
|
||||
* {x}をミュート
|
||||
*/
|
||||
"muteX": ParameterizedString<"x">;
|
||||
/**
|
||||
* {x}のミュートを解除
|
||||
*/
|
||||
"unmuteX": ParameterizedString<"x">;
|
||||
"_chat": {
|
||||
/**
|
||||
* まだメッセージはありません
|
||||
|
||||
@@ -1351,6 +1351,10 @@ advice: "アドバイス"
|
||||
realtimeMode: "リアルタイムモード"
|
||||
turnItOn: "オンにする"
|
||||
turnItOff: "オフにする"
|
||||
emojiMute: "絵文字ミュート"
|
||||
emojiUnmute: "絵文字ミュート解除"
|
||||
muteX: "{x}をミュート"
|
||||
unmuteX: "{x}のミュートを解除"
|
||||
|
||||
_chat:
|
||||
noMessagesYet: "まだメッセージはありません"
|
||||
|
||||
Reference in New Issue
Block a user