diff --git a/locales/index.d.ts b/locales/index.d.ts
index 8e87487cca..d7b1c3b9b0 100644
--- a/locales/index.d.ts
+++ b/locales/index.d.ts
@@ -5476,6 +5476,10 @@ export interface Locale extends ILocale {
* このサーバー、またはこのアカウントでチャットは有効化されていません。
*/
"chatNotAvailableForThisAccountOrServer": string;
+ /**
+ * 相手のアカウントでチャット機能が使えない状態になっています。
+ */
+ "chatNotAvailableInOtherAccount": string;
/**
* このユーザーとのチャットを開始できません
*/
diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index 9198f04c05..7ab6c24d82 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -1366,6 +1366,7 @@ _chat:
muteThisRoom: "このルームをミュート"
deleteRoom: "ルームを削除"
chatNotAvailableForThisAccountOrServer: "このサーバー、またはこのアカウントでチャットは有効化されていません。"
+ chatNotAvailableInOtherAccount: "相手のアカウントでチャット機能が使えない状態になっています。"
cannotChatWithTheUser: "このユーザーとのチャットを開始できません"
cannotChatWithTheUser_description: "チャットが使えない状態になっているか、相手がチャットを開放していません。"
chatWithThisUser: "チャットする"
diff --git a/packages/frontend/src/pages/chat/room.vue b/packages/frontend/src/pages/chat/room.vue
index 5938fd2688..4cb5d0677a 100644
--- a/packages/frontend/src/pages/chat/room.vue
+++ b/packages/frontend/src/pages/chat/room.vue
@@ -41,6 +41,12 @@ SPDX-License-Identifier: AGPL-3.0-only