diff options
| -rw-r--r-- | src/components/status/status.vue | 6 | ||||
| -rw-r--r-- | src/i18n/en.json | 1 |
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", |
