diff --git a/locales/index.d.ts b/locales/index.d.ts index 0e70aa8dec4e..325f5f1c41b4 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -10281,6 +10281,14 @@ export interface Locale extends ILocale { * まだ提供されていません */ readonly "notYetProvided": string; + /** + * モデレーションノートはモデレーター間で共有されます。 + */ + readonly "moderationNoteIsSharedAmongModerators": string; + /** + * あなたのメモは他のユーザーと共有されません。 + */ + readonly "memoIsNotShared": string; readonly "_about": { /** * taiymeについて diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 5809e6d8e6db..bd84c0175789 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -2741,6 +2741,8 @@ _tms: resolvedBy: "{user}によって解決済み" forwardedReport: "リモートサーバーに転送済み" notYetProvided: "まだ提供されていません" + moderationNoteIsSharedAmongModerators: "モデレーションノートはモデレーター間で共有されます。" + memoIsNotShared: "あなたのメモは他のユーザーと共有されません。" _about: title: "taiymeについて" description: "taiymeは、Misskeyから派生したオープンソースのソフトウェアです。" diff --git a/packages/frontend/src/components/TmsUserMemo.input.vue b/packages/frontend/src/components/TmsUserMemo.input.vue index 1230b898ecee..7af626981251 100644 --- a/packages/frontend/src/components/TmsUserMemo.input.vue +++ b/packages/frontend/src/components/TmsUserMemo.input.vue @@ -4,7 +4,7 @@ SPDX-License-Identifier: AGPL-3.0-only -->