From 608ca0442d369d8756477842fa93d68994da14db Mon Sep 17 00:00:00 2001
From: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
Date: Tue, 25 Mar 2025 21:34:24 +0900
Subject: [PATCH 1/2] =?UTF-8?q?fix(frontend):=20=E3=83=81=E3=83=A3?=
=?UTF-8?q?=E3=83=83=E3=83=88=E3=81=AE=E3=83=87=E3=82=B6=E3=82=A4=E3=83=B3?=
=?UTF-8?q?=E8=AA=BF=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
locales/index.d.ts | 14 +++++++-
locales/ja-JP.yml | 5 ++-
.../frontend/src/components/MkFukidashi.vue | 35 +++++++++++++++++--
packages/frontend/src/pages/chat/XMessage.vue | 17 ++++-----
.../frontend/src/pages/chat/home.home.vue | 3 +-
.../frontend/src/pages/chat/room.info.vue | 8 ++---
.../frontend/src/pages/chat/room.members.vue | 2 +-
.../frontend/src/pages/chat/room.search.vue | 10 ++++--
packages/frontend/src/pages/chat/room.vue | 3 +-
9 files changed, 71 insertions(+), 26 deletions(-)
diff --git a/locales/index.d.ts b/locales/index.d.ts
index 6adc66d3cd..f4ab35760e 100644
--- a/locales/index.d.ts
+++ b/locales/index.d.ts
@@ -5358,6 +5358,18 @@ export interface Locale extends ILocale {
* 通常これは自動で行われていますが、何らかの理由により上手く移行されなかった場合は手動で移行処理をトリガーできます。現在の設定情報は上書きされます。
*/
"migrateOldSettings_description": string;
+ /**
+ * あなたはこのユーザーをブロックしています。
+ */
+ "youAreBlocking": string;
+ /**
+ * あなたはこのユーザーにブロックされています。
+ */
+ "youAreBlocked": string;
+ /**
+ * あなたはこのユーザーをミュートしています。
+ */
+ "youAreMuting": string;
"_chat": {
/**
* まだメッセージはありません
@@ -5485,7 +5497,7 @@ export interface Locale extends ILocale {
*/
"thisUserAllowsChatOnlyFromFollowers": string;
/**
- * このユーザーはフォローしているユーザーからのみチャットを受け付けています。
+ * このユーザーは、このユーザーがフォローしているユーザーからのみチャットを受け付けています。
*/
"thisUserAllowsChatOnlyFromFollowing": string;
/**
diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index 55bb4c577b..8fd789f58b 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -1335,6 +1335,9 @@ information: "情報"
chat: "チャット"
migrateOldSettings: "旧設定情報を移行"
migrateOldSettings_description: "通常これは自動で行われていますが、何らかの理由により上手く移行されなかった場合は手動で移行処理をトリガーできます。現在の設定情報は上書きされます。"
+youAreBlocking: "あなたはこのユーザーをブロックしています。"
+youAreBlocked: "あなたはこのユーザーにブロックされています。"
+youAreMuting: "あなたはこのユーザーをミュートしています。"
_chat:
noMessagesYet: "まだメッセージはありません"
@@ -1368,7 +1371,7 @@ _chat:
cannotChatWithTheUser_description: "チャットが使えない状態になっているか、相手がチャットを開放していません。"
chatWithThisUser: "チャットする"
thisUserAllowsChatOnlyFromFollowers: "このユーザーはフォロワーからのみチャットを受け付けています。"
- thisUserAllowsChatOnlyFromFollowing: "このユーザーはフォローしているユーザーからのみチャットを受け付けています。"
+ thisUserAllowsChatOnlyFromFollowing: "このユーザーは、このユーザーがフォローしているユーザーからのみチャットを受け付けています。"
thisUserAllowsChatOnlyFromMutualFollowing: "このユーザーは相互フォローのユーザーからのみチャットを受け付けています。"
thisUserNotAllowedChatAnyone: "このユーザーは誰からもチャットを受け付けていません。"
chatAllowedUsers: "チャットを許可する相手"
diff --git a/packages/frontend/src/components/MkFukidashi.vue b/packages/frontend/src/components/MkFukidashi.vue
index e9544afa35..388a844975 100644
--- a/packages/frontend/src/components/MkFukidashi.vue
+++ b/packages/frontend/src/components/MkFukidashi.vue
@@ -19,8 +19,15 @@ SPDX-License-Identifier: AGPL-3.0-only