From be31cedd986cb6857f49cdf5ed623dde05f7b691 Mon Sep 17 00:00:00 2001 From: mattyatea Date: Fri, 17 May 2024 23:14:11 +0900 Subject: [PATCH] update --- locales/index.d.ts | 56 +++++++++++++++++ locales/ja-JP.yml | 2 + .../frontend/src/components/MkPostForm.vue | 62 ++++++++++++++++--- .../frontend/src/pages/settings/general.vue | 13 ++++ 4 files changed, 124 insertions(+), 9 deletions(-) diff --git a/locales/index.d.ts b/locales/index.d.ts index e574e133e6..464d6946c4 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -60,6 +60,10 @@ export interface Locale extends ILocale { * OK */ "ok": string; + /** + * ノートの投稿フォームを開き直した際に、下書きを復元しないようにします。 + */ + "disableNoteDraftingDescription": string; /** * このプロファイルをデフォルトにしますか? */ @@ -5192,6 +5196,58 @@ export interface Locale extends ILocale { * お問い合わせ */ "inquiry": string; + /** + * ノートの自己消滅 + */ + "scheduledNoteDelete": string; + /** + * このノートは{time}に消滅します + */ + "noteDeletationAt": ParameterizedString<"time">; + /** + * 1年以上先の日時を指定することはできません + */ + "cannotScheduleLaterThanOneYear": string; + /** + * アクティビティを非公開にする + */ + "hideActivity": string; + /** + * 自分のプロフィールのアクティビティ (概要/アクティビティタブ) を他人が見れないようにします。このオプションを有効にしても、自分であればプロフィールのアクティビティタブから引き続き閲覧できます。 + */ + "hideActivityDescription": string; + /** + * このお知らせはチャンネルのタイムライン上部に表示されます。最初の1行がタイトルとして表示され、2行目以降はお知らせをタップすることで表示されるようになります。 + */ + "channelAnnouncementDescription": string; + /** + * 投稿フォーム + */ + "postForm": string; + /** + * 投稿フォームの下部に表示される項目の並び替えが出来ます。項目をクリックすると削除できます。 + */ + "postFormBottomSettingsDescription": string; + /** + * 投稿フォームをリセット + */ + "clearPost": string; + /** + * 絵文字ピッカーに追加 + */ + "addToEmojiPicker": string; + /** + * リアクション数の非表示 + */ + "hideReactionCount": string; + /** + * 誰がリアクションをしたのかを非表示にする + */ + "hideReactionUsers": string; + /** + * リアクションをホバーした際のユーザー一覧と、ノート詳細ページのリアクションタブにあるリアクションをしたユーザー一覧を非表示にします + */ + "hideReactionUsersDescription": string; /** * 下書き */ diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 21fb6fa105..72493a9851 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -11,6 +11,8 @@ password: "パスワード" forgotPassword: "パスワードを忘れた" fetchingAsApObject: "連合に照会中" ok: "OK" + +disableNoteDraftingDescription: "ノートの投稿フォームを開き直した際に、下書きを復元しないようにします。" setDefaultProfileConfirm: "このプロファイルをデフォルトにしますか?" emojiPickerProfile: "絵文字ピッカーのプロファイル" notificationIndicator: "通知のインジケーターの数字を表示する" diff --git a/packages/frontend/src/components/MkPostForm.vue b/packages/frontend/src/components/MkPostForm.vue index 5379cf7238..64219e2d4b 100644 --- a/packages/frontend/src/components/MkPostForm.vue +++ b/packages/frontend/src/components/MkPostForm.vue @@ -79,9 +79,16 @@ SPDX-License-Identifier: AGPL-3.0-only