[skip ci] Updated Comment Rules (#524)

* Updated Comment Rules

* Update CommentsFragment.kt

* Update CommentsFragment.kt
This commit is contained in:
Itsmechinmoy 2024-11-15 22:29:04 +05:30 committed by GitHub
parent a993935433
commit 489dcc0b52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -567,18 +567,18 @@ class CommentsFragment : Fragment() {
private fun showCommentRulesDialog() { private fun showCommentRulesDialog() {
activity.customAlertDialog().apply{ activity.customAlertDialog().apply{
setTitle("Commenting Rules") setTitle("Commenting Rules")
setMessage( .setMessage(
"I WILL BAN YOU WITHOUT HESITATION\n" + "🚨 BREAK ANY RULE = YOU'RE GONE\n\n" +
"1. No racism\n" + "1. NO RACISM, DISCRIMINATION, OR HATE SPEECH\n" +
"2. No hate speech\n" + "2. NO SPAMMING OR SELF-PROMOTION\n" +
"3. No spam\n" + "3. ABSOLUTELY NO NSFW CONTENT\n" +
"4. No NSFW content\n" + "4. ENGLISH ONLY NO EXCEPTIONS\n" +
"6. ENGLISH ONLY\n" + "5. NO IMPERSONATION, HARASSMENT, OR ABUSE\n" +
"7. No self promotion\n" + "6. NO ILLEGAL CONTENT OR EXTREME DISRESPECT TOWARDS ANY FANDOM\n" +
"8. No impersonation\n" + "7. DO NOT REQUEST OR SHARE REPOSITORIES/EXTENSIONS\n" +
"9. No harassment\n" + "8. SPOILERS ALLOWED ONLY WITH SPOILER TAGS AND A WARNING\n" +
"10. No illegal content\n" + "9. NO SEXUALIZING OR INAPPROPRIATE COMMENTS ABOUT MINOR CHARACTERS\n" +
"11. Anything you know you shouldn't comment\n" "10. IF IT'S WRONG, DON'T POST IT!\n\n"
) )
setPosButton("I Understand") { setPosButton("I Understand") {
PrefManager.setVal(PrefName.FirstComment, false) PrefManager.setVal(PrefName.FirstComment, false)
@ -692,4 +692,4 @@ class CommentsFragment : Fragment() {
} }
} }
} }
} }