From d8517f1f01fd433514880a792d9df4a79a4c1ac4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A5=9E?= <68449029+yuimarudev@users.noreply.github.com> Date: Thu, 21 Nov 2024 22:03:31 +0900 Subject: [PATCH] =?UTF-8?q?room.ts=20=E3=81=AE=E6=97=A5=E6=9C=AC=E8=AA=9E?= =?UTF-8?q?=E3=81=8C=E3=81=A1=E3=82=87=E3=81=A3=E3=81=A8=E3=81=8A=E3=81=8B?= =?UTF-8?q?=E3=81=97=E3=81=84=E6=B0=97=E3=81=8C=E3=81=97=E3=81=9F=E3=81=AE?= =?UTF-8?q?=E3=81=A7=E7=9B=B4=E3=81=97=E3=81=9F=20(#50)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/voice/room.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/voice/room.ts b/src/voice/room.ts index f31ca4a..3246d57 100644 --- a/src/voice/room.ts +++ b/src/voice/room.ts @@ -205,10 +205,10 @@ export default class Room { let content = ""; if (oldState.self_stream !== newState.self_stream) - content = `画面配信を${newState.self_stream ? "開始" : "終了"}`; + content = `画面共有を${newState.self_stream ? "開始" : "終了"}`; if (oldState.self_video !== newState.self_video) - content = `カメラ配信を${newState.self_video ? "開始" : "終了"}`; + content = `カメラを${newState.self_video ? "オン" : "オフ"}に`; if (!content) return;