diff --git a/files/helpers/const.py b/files/helpers/const.py index 82b8a94964..44917497ae 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -28,72 +28,95 @@ AJ_REPLACEMENTS = { ' TO ': " TOO ", } -SLURS = { - "retarded": "r-slurred", - "retard": "r-slur", - "gayfag": "gaystrag", - "poorfag": "poorstrag", - "richfag": "richstrag", - "newfag": "newstrag", - "oldfag": "oldstrag", - "faggotry": "cute twinkry", - "faggot": "cute twink", - "pedophile": "libertarian", - "kill yourself": "keep yourself safe", - "n1gger": "BIPOC", - "nlgger": "BIPOC", - "nigger": "BIPOC", - "steve akins": "penny verity oaken", - "trannie": "🚂🚃🚃", - "tranny": "🚂🚃🚃", - "troon": "🚂🚃🚃", - "nonewnormal": "HorseDewormerAddicts", - "kikery": "https://sciencedirect.com/science/article/abs/pii/S016028960600033X", - "kike": "https://sciencedirect.com/science/article/abs/pii/S016028960600033X", - "latinos": "latinx", - "latino": "latinx", - "latinas": "latinx", - "latina": "latinx", - "hispanics": "latinx", - "hispanic": "latinx", - "uss liberty incident": "tragic accident aboard the USS Liberty", - "lavon affair": "Lavon Misunderstanding", - "shylock": "Israeli friend", - "mohammad": "Prophet Mohammad (PBUH)", - "muhammad": "Prophet Mohammad (PBUH)", - "i hate marsey": "i love marsey", - "dancing israelis": "i love Israel", - "sodomite": "total dreamboat", - "pajeet": "sexy Indian dude", - "landlord": "landchad", - "tenant": "renthog", - "renter": "rentoid", - "autistic": "neurodivergent", - "holohoax": "i tried to claim the Holocaust didn't happen because I am a pencil-dicked imbecile and the word filter caught me lol", - "groomercord": "discord (actually a pretty cool service)", - "pedocord": "discord (actually a pretty cool service)", - "i hate carp": "i love Carp", - "manlet": "little king", - "gamer": "g*mer", - "journalist": "journ*list", - "journalism": "journ*lism", - "wuhan flu": "SARS-CoV-2 syndemic", - "china flu": "SARS-CoV-2 syndemic", - "china virus": "SARS-CoV-2 syndemic", - "kung flu": "SARS-CoV-2 syndemic", - "elon musk": "rocket daddy", - "fake and gay": "fake and straight", +if SITE_NAME == 'Cringetopia': + SLURS = { + "retarded": "neurodivergent", + "retard": "neurodivergent", + "faggotry": "cute twinkry", + "faggot": "cute twink", + "n1gger": "🏀", + "nlgger": "🏀", + "nigger": "🏀", + "uss liberty incident": "tragic accident aboard the USS Liberty", + "lavon affair": "Lavon Misunderstanding", + "i hate marsey": "i love marsey", + "autistic": "neurodivergent", + "holohoax": "i tried to claim the Holocaust didn't happen because I am a pencil-dicked imbecile and the word filter caught me lol", + "i hate carp": "i love Carp", + "heil hitler": "hello kitty", - " rapist": " male feminist ", - " pedo": " libertarian", + " n1g ": " 🏀 ", + " nlg ": " 🏀 ", + " nig ": " 🏀 ", + " fag ": " cute twink ", + } +else: + SLURS = { + "retarded": "r-slurred", + "retard": "r-slur", + "gayfag": "gaystrag", + "poorfag": "poorstrag", + "richfag": "richstrag", + "newfag": "newstrag", + "oldfag": "oldstrag", + "faggotry": "cute twinkry", + "faggot": "cute twink", + "pedophile": "libertarian", + "kill yourself": "keep yourself safe", + "n1gger": "BIPOC", + "nlgger": "BIPOC", + "nigger": "BIPOC", + "steve akins": "penny verity oaken", + "trannie": "🚂🚃🚃", + "tranny": "🚂🚃🚃", + "troon": "🚂🚃🚃", + "nonewnormal": "HorseDewormerAddicts", + "kikery": "https://sciencedirect.com/science/article/abs/pii/S016028960600033X", + "kike": "https://sciencedirect.com/science/article/abs/pii/S016028960600033X", + "latinos": "latinx", + "latino": "latinx", + "latinas": "latinx", + "latina": "latinx", + "hispanics": "latinx", + "hispanic": "latinx", + "uss liberty incident": "tragic accident aboard the USS Liberty", + "lavon affair": "Lavon Misunderstanding", + "shylock": "Israeli friend", + "mohammad": "Prophet Mohammad (PBUH)", + "muhammad": "Prophet Mohammad (PBUH)", + "i hate marsey": "i love marsey", + "dancing israelis": "i love Israel", + "sodomite": "total dreamboat", + "pajeet": "sexy Indian dude", + "landlord": "landchad", + "tenant": "renthog", + "renter": "rentoid", + "autistic": "neurodivergent", + "holohoax": "i tried to claim the Holocaust didn't happen because I am a pencil-dicked imbecile and the word filter caught me lol", + "groomercord": "discord (actually a pretty cool service)", + "pedocord": "discord (actually a pretty cool service)", + "i hate carp": "i love Carp", + "manlet": "little king", + "gamer": "g*mer", + "journalist": "journ*list", + "journalism": "journ*lism", + "wuhan flu": "SARS-CoV-2 syndemic", + "china flu": "SARS-CoV-2 syndemic", + "china virus": "SARS-CoV-2 syndemic", + "kung flu": "SARS-CoV-2 syndemic", + "elon musk": "rocket daddy", + "fake and gay": "fake and straight", - " kys ": " keep yourself safe ", - " n1g ": " BIPOC ", - " nlg ": " BIPOC ", - " nig ": " BIPOC ", - " fag ": " cute twink ", - " elon ": " rocket daddy ", -} + " rapist": " male feminist ", + " pedo": " libertarian", + + " kys ": " keep yourself safe ", + " n1g ": " BIPOC ", + " nlg ": " BIPOC ", + " nig ": " BIPOC ", + " fag ": " cute twink ", + " elon ": " rocket daddy ", + } single_words = "|".join([slur.lower() for slur in SLURS.keys()]) diff --git a/files/templates/emoji_modal.html b/files/templates/emoji_modal.html index 5732a034f7..f5c4810a09 100644 --- a/files/templates/emoji_modal.html +++ b/files/templates/emoji_modal.html @@ -9,6 +9,12 @@ Favorite + {% if SITE_NAME == 'Cringetopia' %} + + {% endif %} + @@ -56,7 +62,11 @@
- + {% if SITE_NAME == 'Cringetopia' %} +
+
+
+ {% endif %}
@@ -94,4 +104,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/files/templates/header.html b/files/templates/header.html index db6e0c5580..fee3485904 100644 --- a/files/templates/header.html +++ b/files/templates/header.html @@ -39,7 +39,7 @@ {% if sub %} /h/{{sub.name}} - {% elif SITE_NAME == 'rDrama' %} + {% elif SITE_NAME != 'PCM' %} - + {% endif %} @@ -151,7 +151,7 @@
your profile picture
{{v.username}}
-
coins{{v.coins}} Coins
+
coins{{v.coins}} Coins
marseybux{{v.procoins}} Marseybux
diff --git a/files/templates/userpage.html b/files/templates/userpage.html index 981ff5763a..8b64842bfd 100644 --- a/files/templates/userpage.html +++ b/files/templates/userpage.html @@ -112,7 +112,7 @@
{{u.coins}} - coins   + coins   {{u.procoins}} marseybux   @@ -409,7 +409,7 @@
{{u.coins}} - coins   + coins   {{u.procoins}} marseybux