diff --git a/CHANGELOG_CHERRYPICK.md b/CHANGELOG_CHERRYPICK.md index 4885e942fc..e2139196b0 100644 --- a/CHANGELOG_CHERRYPICK.md +++ b/CHANGELOG_CHERRYPICK.md @@ -36,6 +36,7 @@ - 노트/유저 검색 페이지에서 Enter 키를 누르면 검색하도록 - 프로필 번역 기능 추가 - 네비게이션 메뉴에 배너 표시 옵션 추가 +- 노트에서 프로필 아이콘을 숨기는 옵션 추가 ### Client - 모바일에서 UI 흐림 효과를 껐을 때 가독성 향상 diff --git a/locales/en-US.yml b/locales/en-US.yml index 00bed75d7f..2d3459db10 100644 --- a/locales/en-US.yml +++ b/locales/en-US.yml @@ -1,5 +1,6 @@ --- _lang_: "English" +hideAvatarsInNote: "Hide avatars in notes" displayBanner: "Display Banner Image" requireRefresh: "When the page needs to refresh" performanceWarning: "High resource usage can result in higher device temperatures and faster battery consumption" diff --git a/locales/index.d.ts b/locales/index.d.ts index 06e7968cfc..a4eca9e135 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -3,6 +3,7 @@ // Do not edit this file directly. export interface Locale { "_lang_": string; + "hideAvatarsInNote": string; "displayBanner": string; "requireRefresh": string; "performanceWarning": string; diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index cf3d6ca64b..fa1795bbb3 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -1,5 +1,6 @@ _lang_: "日本語" +hideAvatarsInNote: "ノートでアイコンを隠す" displayBanner: "バナー画像の表示" requireRefresh: "ページの更新が必要なとき" performanceWarning: "リソースを多く使用するため、デバイスの温度が高くなり、バッテリーの消耗が速くなる可能性があります" diff --git a/locales/ko-KR.yml b/locales/ko-KR.yml index a7b732b099..a990f355a6 100644 --- a/locales/ko-KR.yml +++ b/locales/ko-KR.yml @@ -1,5 +1,6 @@ --- _lang_: "한국어" +hideAvatarsInNote: "노트에서 프로필 아이콘 숨김" displayBanner: "배너 이미지 표시" requireRefresh: "페이지 새로 고침이 필요할 때" performanceWarning: "리소스를 많이 사용하므로, 디바이스의 온도가 높아지고 배터리의 소모가 빨라질 수 있어요" diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue index d45f18a5e1..04986450cf 100644 --- a/packages/frontend/src/components/MkNote.vue +++ b/packages/frontend/src/components/MkNote.vue @@ -12,7 +12,7 @@