Clean up and reorganize localized moderation strings

This commit is contained in:
Paul Frazee
2024-02-08 16:40:50 -08:00
parent fe20b4d575
commit 667729f7db
13 changed files with 1350 additions and 1332 deletions
+1 -1224
View File
File diff suppressed because it is too large Load Diff
+122
View File
@@ -0,0 +1,122 @@
import {LABEL_GROUPS} from '@atproto/api'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useMemo} from 'react'
export type LabelGroupStrings = Record<
keyof typeof LABEL_GROUPS,
{name: string; description: string}
>
export function useLabelGroupStrings(): LabelGroupStrings {
const {_} = useLingui()
return useMemo(
() => ({
system: {
name: _(msg`System`),
description: _(msg`Moderator overrides for special cases.`),
},
legal: {
name: _(msg`Legal`),
description: _(msg`Content removed for legal reasons.`),
},
'intellectual-property': {
name: _(msg`Intellectual Property`),
description: _(msg`Plagiarism, copying without attribution.`),
},
porn: {
name: _(msg`Explicit Sexual Images`),
description: _(msg`i.e. pornography.`),
},
suggestive: {
name: _(msg`Sexually Suggestive`),
description: _(msg`Does not include nudity.`),
},
nudity: {
name: _(msg`Other Nudity`),
description: _(msg`Including non-sexual and artistic.`),
},
violence: {
name: _(msg`Violent / Bloody`),
description: _(msg`Gore, self-harm, torture.`),
},
'drugs-alcohol': {
name: _(msg`Substance Abuse`),
description: _(msg`Use of drugs or alcohol.`),
},
'self-harm': {
name: _(msg`Self Harm`),
description: _(msg`Suicide, self-harm, eating disorders.`),
},
intolerance: {
name: _(msg`Intolerance`),
description: _(
msg`Content or behavior which is hateful or intolerant toward a group of people.`,
),
},
'bad-behavior': {
name: _(msg`Bad Behavior`),
description: _(
msg`Harassment, bullying, and threats toward other users.`,
),
},
rude: {
name: _(msg`Rude`),
description: _(msg`Behavior which is rude toward other users.`),
},
upsetting: {
name: _(msg`Upsetting`),
description: _(
msg`Shocking, disgusting, or generally upsetting content.`,
),
},
troubling: {
name: _(msg`Troubling`),
description: _(
msg`Bad news, troubling information, or dispiriting content.`,
),
},
'hate-group-mention': {
name: _(msg`Hate Group Coverage`),
description: _(
msg`Images of terror groups, articles covering events, etc.`,
),
},
discourse: {
name: _(msg`Discourse / Drama`),
description: _(
msg`On-going discussions or debates that may be frustrating.`,
),
},
curation: {
name: _(msg`Curation`),
description: _(
msg`Judgment of the moderators to remove content not worth showing.`,
),
},
spam: {
name: _(msg`Spam`),
description: _(msg`Content which doesn't add to the conversation.`),
},
misrepresentation: {
name: _(msg`Misrepresentation`),
description: _(msg`Impersonations, scams.`),
},
security: {
name: _(msg`Security`),
description: _(msg`Potential security attacks.`),
},
misinfo: {
name: _(msg`Misinformation`),
description: _(msg`Content which misleads or defrauds users.`),
},
context: {
name: _(msg`Context`),
description: _(
msg`Helpful annotations to explain intent, such as satire or parody.`,
),
},
}),
[_],
)
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,106 @@
import {ModerationCause} from '@atproto/api'
import {msg} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useLabelStrings} from './useLabelStrings'
export interface ModerationCauseDescription {
name: string
description: string
}
export function useModerationCauseDescription(
cause: ModerationCause | undefined,
context: 'account' | 'content',
): ModerationCauseDescription {
const {_} = useLingui()
const labelStrings = useLabelStrings()
if (!cause) {
return {
name: _(msg`Content Warning`),
description: _(
msg`Moderator has chosen to set a general warning on the content.`,
),
}
}
if (cause.type === 'blocking') {
if (cause.source.type === 'list') {
return {
name: _(msg`User Blocked by "${cause.source.list.name}"`),
description: _(
msg`You have blocked this user. You cannot view their content.`,
),
}
} else {
return {
name: _(msg`User Blocked`),
description: _(
msg`You have blocked this user. You cannot view their content.`,
),
}
}
}
if (cause.type === 'blocked-by') {
return {
name: _(msg`User Blocking You`),
description: _(
msg`This user has blocked you. You cannot view their content.`,
),
}
}
if (cause.type === 'block-other') {
return {
name: _(msg`Content Not Available`),
description: _(
msg`This content is not available because one of the users involved has blocked the other.`,
),
}
}
if (cause.type === 'muted') {
if (cause.source.type === 'list') {
return {
name:
context === 'account'
? _(msg`Muted by "${cause.source.list.name}"`)
: _(msg`Post by muted user ("${cause.source.list.name}")`),
description: _(msg`You have muted this user`),
}
} else {
return {
name:
context === 'account'
? _(msg`Muted User`)
: _(msg`Post by muted user`),
description: _(msg`You have muted this user`),
}
}
}
// @ts-ignore Temporary extension to the moderation system -prf
if (cause.type === 'post-hidden') {
return {
name: _(msg`Post Hidden by You`),
description: _(msg`You have hidden this post`),
}
}
if (cause.type === 'label') {
if (cause.labelDef.id in labelStrings) {
const strings = labelStrings[cause.labelDef.id]
return {
name:
context === 'account' ? strings.account.name : strings.content.name,
description:
context === 'account'
? strings.account.description
: strings.content.description,
}
}
return {
name: cause.labelDef.id,
description: _(msg`Labeled ${cause.labelDef.id}`),
}
}
// should never happen
return {
name: '',
description: ``,
}
}