From d5357d75495b49653acc132e1d855b3c7556ee76 Mon Sep 17 00:00:00 2001 From: Cooper Ransom Date: Thu, 7 Mar 2024 11:33:07 -0500 Subject: [PATCH] fix turnstile look --- public/config.js | 2 +- src/assets/locales/en.json | 2 +- src/components/overlays/OverlayDisplay.tsx | 9 ++++++--- src/pages/parts/player/ScrapingPart.tsx | 3 ++- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/public/config.js b/public/config.js index a6471a57..ae49691c 100644 --- a/public/config.js +++ b/public/config.js @@ -14,7 +14,7 @@ window.__CONFIG__ = { // The backend URL to communicate with, defaults to the movie-web hosted one at backend.movie-web.app VITE_BACKEND_URL: "https://sudo-flix-backend.lol", // "https://mw-backend.lonelil.com", - VITE_TURNSTILE_KEY: "0x4AAAAAAATd-oefbvXlJvmj", + VITE_TURNSTILE_KEY: "0x4AAAAAAATd-oefbvXlJvmj", // "3x00000000000000000000FF", // A comma separated list of disallowed IDs in the case of a DMCA claim - in the format "series-" and "movie-" VITE_DISALLOWED_IDS: "", diff --git a/src/assets/locales/en.json b/src/assets/locales/en.json index 5f01f8ca..5e321fed 100644 --- a/src/assets/locales/en.json +++ b/src/assets/locales/en.json @@ -428,7 +428,7 @@ "turnstile": { "description": "Please prove your humanity by completing the Captcha on the right. This is to keep sudo-flix.lol safe!", "error": "Failed to verify your humanity! Please try again.", - "title": "We need to verify you're not a robot 🤖", + "title": "Are You a Robot 🤖?", "verifyingHumanity": "Verifying your humanity... (^▽^)👍" } }, diff --git a/src/components/overlays/OverlayDisplay.tsx b/src/components/overlays/OverlayDisplay.tsx index 048ec0e7..204918ca 100644 --- a/src/components/overlays/OverlayDisplay.tsx +++ b/src/components/overlays/OverlayDisplay.tsx @@ -25,16 +25,19 @@ function TurnstileInteractive() { return (
-
+

{t("player.turnstile.title")}

-

{t("player.turnstile.description")}

+

+ {t("player.turnstile.description")} +

); })} - {/* IDK to keep this or remove it */} + {/* IDK to keep this or remove it
+ */}
);