diff --git a/CHANGELOG_CHERRYPICK.md b/CHANGELOG_CHERRYPICK.md index 0994969650..a7941dc042 100644 --- a/CHANGELOG_CHERRYPICK.md +++ b/CHANGELOG_CHERRYPICK.md @@ -25,6 +25,9 @@ 출시일: unreleased
전체 변경 사항을 확인하려면, [CHANGELOG.md#2023xx](CHANGELOG.md#2023xx) 문서를 참고하십시오. +### General +- 스크롤 시 요소 표시(헤더, 플로팅 버튼, 탐색 모음)를 사용자화 할 수 있는 옵션 추가 + ### Client - 이모티콘 피커의 검색 건수를 100개로 증가 (misskey-dev/misskey#11371) - about-misskey 페이지에서 클라이언트 버전을 누르면 변경 사항을 볼 수 있음 diff --git a/locales/en-US.yml b/locales/en-US.yml index 49853015f8..4c623c94b4 100644 --- a/locales/en-US.yml +++ b/locales/en-US.yml @@ -1,5 +1,6 @@ --- _lang_: "English" +displayHeaderNavBarWhenScroll: "Show elements when scrolling (header, floating buttons, navigation bar)" addSingle: "Add just one" addMultiple: "Add multiple" showRenoteConfirmPopup: "Show confirmation popup when renote" @@ -1174,6 +1175,13 @@ _cherrypick: reactableRemoteReaction: "Allow remote custom emoji reactions to react if there is an emoji with the same name on this server." showFollowingMessageInsteadOfButton: "Do not show the follow button in the notification field if you are already following someone" mobileTimelineHeaderChange: "Timeline header design change in mobile environment" +_displayHeaderNavBarWhenScroll: + all: "Display all" + hideHeaderOnly: "Hide header only" + hideHeaderFloatBtn: "Hide header and floating buttons" + hideFloatBtnOnly: "Hide floating buttons only" + hideFloatBtnNavBar: "Hide floating buttons and navigation bar" + hide: "Hide All" _bannerDisplay: all: "All" topBottom: "Top and Bottom" diff --git a/locales/index.d.ts b/locales/index.d.ts index 45e78d2b3d..fcf40463d1 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; + "displayHeaderNavBarWhenScroll": string; "addSingle": string; "addMultiple": string; "showRenoteConfirmPopup": string; @@ -1179,6 +1180,14 @@ export interface Locale { "showFollowingMessageInsteadOfButton": string; "mobileTimelineHeaderChange": string; }; + "_displayHeaderNavBarWhenScroll": { + "all": string; + "hideHeaderOnly": string; + "hideHeaderFloatBtn": string; + "hideFloatBtnOnly": string; + "hideFloatBtnNavBar": string; + "hide": string; + }; "_bannerDisplay": { "all": string; "topBottom": string; diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 8c000e6e47..8f58ec24d2 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -1,5 +1,6 @@ _lang_: "日本語" +displayHeaderNavBarWhenScroll: "スクロール時の要素表示(ヘッダー、フローティングボタン、ナビゲーションバー)" addSingle: "一つだけ追加" addMultiple: "複数追加" showRenoteConfirmPopup: "Renoteするときに確認ポップアップを表示" @@ -1177,6 +1178,14 @@ _cherrypick: showFollowingMessageInsteadOfButton: "既にフォローしている場合、通知欄にフォローボタンを表示しない" mobileTimelineHeaderChange: "モバイル環境でタイムラインのヘッダーデザインを変更" +_displayHeaderNavBarWhenScroll: + all: "全て表示" + hideHeaderOnly: "ヘッダーだけを隠す" + hideHeaderFloatBtn: "ヘッダーとフローティングボタンを隠す" + hideFloatBtnOnly: "フローティングボタンだけを隠す" + hideFloatBtnNavBar: "フローティングボタンとナビゲーションバーを隠す" + hide: "全て隠す" + _bannerDisplay: all: "全て" topBottom: "上部と下部" diff --git a/locales/ko-KR.yml b/locales/ko-KR.yml index 7cca1a1baf..58e7fce19f 100644 --- a/locales/ko-KR.yml +++ b/locales/ko-KR.yml @@ -1,5 +1,6 @@ --- _lang_: "한국어" +displayHeaderNavBarWhenScroll: "스크롤 시 요소 표시 (헤더, 플로팅 버튼, 탐색 모음)" addSingle: "하나만 추가" addMultiple: "여러 개 추가" showRenoteConfirmPopup: "리노트할 때 확인 팝업 표시" @@ -1172,6 +1173,13 @@ _cherrypick: reactableRemoteReaction: "서버에 리모트 이모지와 이름이 같은 이모지가 있으면 리모트 이모지에도 반응할 수 있음" showFollowingMessageInsteadOfButton: "이미 팔로우한 경우 알림 필드에 팔로우 버튼을 표시하지 않음" mobileTimelineHeaderChange: "모바일 환경에서 타임라인의 헤더 디자인을 변경" +_displayHeaderNavBarWhenScroll: + all: "모두 표시" + hideHeaderOnly: "헤더만 숨기기" + hideHeaderFloatBtn: "헤더와 플로팅 버튼 숨기기" + hideFloatBtnOnly: "플로팅 버튼만 숨기기" + hideFloatBtnNavBar: "플로팅 버튼과 탐색 모음 숨기기" + hide: "모두 숨기기" _bannerDisplay: all: "전부" topBottom: "상단 및 하단" diff --git a/packages/frontend/src/components/MkFoldableSection.vue b/packages/frontend/src/components/MkFoldableSection.vue index 8a990a6520..36881f26ee 100644 --- a/packages/frontend/src/components/MkFoldableSection.vue +++ b/packages/frontend/src/components/MkFoldableSection.vue @@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only