diff --git a/locales/en-US.yml b/locales/en-US.yml index 49688d24eacc..772f002e0789 100644 --- a/locales/en-US.yml +++ b/locales/en-US.yml @@ -500,6 +500,9 @@ emojiStyle: "Emoji style" native: "Native" disableDrawer: "Don't use drawer-style menus" showNoteActionsOnlyHover: "Only show note actions on hover" +showRepliesCount: "Show note's count of replies" +showRenotesCount: "Show note's count of renotes" +showReactionsCount: "Show note's count of reactions" noHistory: "No history available" signinHistory: "Login history" enableAdvancedMfm: "Enable advanced MFM" diff --git a/locales/index.d.ts b/locales/index.d.ts index ac4cae784514..f97061437e33 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -2016,6 +2016,18 @@ export interface Locale extends ILocale { * ノートのアクションをホバー時のみ表示する */ "showNoteActionsOnlyHover": string; + /** + * ノートの返信数を表示する + */ + "showRepliesCount": string; + /** + * ノートのリノート数を表示する + */ + "showRenotesCount": string; + /** + * ノートのリアクション数を表示する + */ + "showReactionsCount": string; /** * 履歴はありません */ diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 978f4b640379..d5969082d4d5 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -500,6 +500,9 @@ emojiStyle: "絵文字のスタイル" native: "ネイティブ" disableDrawer: "メニューをドロワーで表示しない" showNoteActionsOnlyHover: "ノートのアクションをホバー時のみ表示する" +showRepliesCount: "ノートの返信数を表示する" +showRenotesCount: "ノートのリノート数を表示する" +showReactionsCount: "ノートのリアクション数を表示する" noHistory: "履歴はありません" signinHistory: "ログイン履歴" enableAdvancedMfm: "高度なMFMを有効にする" diff --git a/locales/ko-KR.yml b/locales/ko-KR.yml index 75578750ceef..955d7c3c76d6 100644 --- a/locales/ko-KR.yml +++ b/locales/ko-KR.yml @@ -499,6 +499,9 @@ emojiStyle: "이모지 스타일" native: "기본" disableDrawer: "드로어 메뉴를 사용하지 않기" showNoteActionsOnlyHover: "노트 액션 버튼을 마우스를 올렸을 때에만 표시" +showRepliesCount: "노트의 답글 수를 표시" +showRenotesCount: "노트의 리노트 수를 표시" +showReactionsCount: "노트의 리액션 수를 표시" noHistory: "기록이 없습니다" signinHistory: "로그인 기록" enableAdvancedMfm: "고급 MFM을 활성화" diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue index 746753cf68af..11dfb1eb1ab2 100644 --- a/packages/frontend/src/components/MkNote.vue +++ b/packages/frontend/src/components/MkNote.vue @@ -101,7 +101,7 @@ SPDX-License-Identifier: AGPL-3.0-only