logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 046678086fcdddf05c2c10f3494bf87e67f2fd6a
parent 59656af44cf64069437eda1708b02c7a53788941
Author: Henry Jameson <me@hjkos.com>
Date:   Wed, 24 Apr 2024 15:22:19 +0300

add explanation to why post is muted for sensitive muting

Diffstat:

Msrc/components/status/status.vue6++++++
Msrc/i18n/en.json1+
2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/components/status/status.vue b/src/components/status/status.vue @@ -31,6 +31,12 @@ /> </small> <small + v-if="muteSensitiveStatuses && status.nsfw" + class="mute-thread" + > + {{ $t('status.sensitive_muted') }} + </small> + <small v-if="showReasonMutedThread" class="mute-thread" > diff --git a/src/i18n/en.json b/src/i18n/en.json @@ -1075,6 +1075,7 @@ "external_source": "External source", "thread_muted": "Thread muted", "thread_muted_and_words": ", has words:", + "sensitive_muted": "Muting sensitive content", "show_full_subject": "Show full subject", "hide_full_subject": "Hide full subject", "show_content": "Show content",