From 9613c84e6aa971f32f86d9b25b116be426de680b Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 14 Aug 2024 16:09:35 -0500 Subject: [PATCH] Update copy --- src/components/moderation/ModerationDetailsDialog.tsx | 8 ++++---- src/lib/moderation/useModerationCauseDescription.ts | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/components/moderation/ModerationDetailsDialog.tsx b/src/components/moderation/ModerationDetailsDialog.tsx index a79f930ad4..188171e5e9 100644 --- a/src/components/moderation/ModerationDetailsDialog.tsx +++ b/src/components/moderation/ModerationDetailsDialog.tsx @@ -111,11 +111,11 @@ function ModerationDetailsDialogInner({ } else if (modcause.type === 'reply-hidden') { const isYou = currentAccount?.did === modcause.source.did name = isYou - ? _(msg`Post Hidden by You`) - : _(msg`Post Hidden by Thread Author`) + ? _(msg`Reply Hidden by You`) + : _(msg`Reply Hidden by Thread Author`) description = isYou - ? _(msg`You hid this post.`) - : _(msg`The author of this thread has hidden this post.`) + ? _(msg`You hid this reply.`) + : _(msg`The author of this thread has hidden this reply.`) } else if (modcause.type === 'label') { name = desc.name description = desc.description diff --git a/src/lib/moderation/useModerationCauseDescription.ts b/src/lib/moderation/useModerationCauseDescription.ts index 0794fd6742..b0d513d1b2 100644 --- a/src/lib/moderation/useModerationCauseDescription.ts +++ b/src/lib/moderation/useModerationCauseDescription.ts @@ -119,11 +119,11 @@ export function useModerationCauseDescription( return { icon: EyeSlash, name: isYou - ? _(msg`Post Hidden by You`) - : _(msg`Post Hidden by Thread Author`), + ? _(msg`Reply Hidden by You`) + : _(msg`Reply Hidden by Thread Author`), description: isYou - ? _(msg`You hid this post.`) - : _(msg`The author of this thread has hidden this post.`), + ? _(msg`You hid this reply.`) + : _(msg`The author of this thread has hidden this reply.`), } } if (cause.type === 'label') {