aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2024-04-24 15:22:19 +0300
committerHenry Jameson <me@hjkos.com>2024-04-24 15:22:19 +0300
commit046678086fcdddf05c2c10f3494bf87e67f2fd6a (patch)
tree05bb24492dc8455df3be0d9e3412f2b51b8666f6
parent59656af44cf64069437eda1708b02c7a53788941 (diff)
add explanation to why post is muted for sensitive muting
-rw-r--r--src/components/status/status.vue6
-rw-r--r--src/i18n/en.json1
2 files changed, 7 insertions, 0 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue
index 4d9e1c3c..2a17bb13 100644
--- 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
index 6377e994..978fda37 100644
--- 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",