diff --git a/locales/en-US/common.ftl b/locales/en-US/common.ftl index 327af0ab85..84768d9e74 100644 --- a/locales/en-US/common.ftl +++ b/locales/en-US/common.ftl @@ -42,6 +42,14 @@ common-moderationReason-rejectionReason-BANNED_WORD = Banned word common-moderationReason-rejectionReason-AD = Ad +common-moderationReason-rejectionReason-HARASSMENT_BULLYING = + Harassment / bullying +common-moderationReason-rejectionReason-MISINFORMATION = + Misinformation +common-moderationReason-rejectionReason-HATE_SPEECH = + Hate speech +common-moderationReason-rejectionReason-IRRELEVANT_CONTENT = + Irrelevant content common-moderationReason-reason-moreReasons = + More reasons common-moderationReason-rejectionReason-OTHER = diff --git a/server/src/core/server/graph/schema/schema.graphql b/server/src/core/server/graph/schema/schema.graphql index eeba2131d7..c2ab69385a 100644 --- a/server/src/core/server/graph/schema/schema.graphql +++ b/server/src/core/server/graph/schema/schema.graphql @@ -3418,6 +3418,26 @@ enum REJECTION_REASON_CODE { """ ILLEGAL_CONTENT + """ + HARASSMENT_BULLYING represents a rejection of a comment for being harassment or bullying. + """ + HARASSMENT_BULLYING + + """ + MISINFORMATION represents a rejection of a comment for being misinformation. + """ + MISINFORMATION + + """ + HATE_SPEECH represents a rejection of a comment for being hate speech. + """ + HATE_SPEECH + + """ + IRRELEVANT_CONTENT represents a rejection of a comment for being irrelevant to the conversation. + """ + IRRELEVANT_CONTENT + """ OTHER is reserved for reasons that arent adequately described by the other options. """