Mute 'account' not 'user'

This commit is contained in:
Eric Bailey
2024-03-14 14:48:52 -05:00
parent b6993d9d0a
commit 67edca4fbb
2 changed files with 3 additions and 3 deletions
@@ -92,7 +92,7 @@ function ModerationDetailsDialogInner({
)
} else {
name = _(msg`Account Muted`)
description = _(msg`You have muted this user.`)
description = _(msg`You have muted this account.`)
}
} else if (modcause.type === 'mute-word') {
name = _(msg`Post Hidden by Muted Word`)
@@ -81,8 +81,8 @@ export function useModerationCauseDescription(
} else {
return {
icon: EyeSlash,
name: _(msg`Muted User`),
description: _(msg`You have muted this user`),
name: _(msg`Account Muted`),
description: _(msg`You have muted this account.`),
}
}
}