From b6bdb6d7e80127d773e4a42aef50b3772c351526 Mon Sep 17 00:00:00 2001 From: user Date: Tue, 21 Oct 2025 18:44:21 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20some=20messaging=20refactor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../payment-verification-loader.svelte | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/apps/frontend/src/lib/domains/checkout/payment-verification-loader.svelte b/apps/frontend/src/lib/domains/checkout/payment-verification-loader.svelte index b4a6c38..4e4cff3 100644 --- a/apps/frontend/src/lib/domains/checkout/payment-verification-loader.svelte +++ b/apps/frontend/src/lib/domains/checkout/payment-verification-loader.svelte @@ -3,35 +3,35 @@ import { onDestroy, onMount } from "svelte"; const initialMessages = [ - "Processing your payment securely...", - "Getting everything ready for you...", - "Setting up your transaction...", - "Starting the payment process...", - "Initiating secure payment...", + "Just a moment...", + "Please wait...", + "Processing...", + "Working on it...", + "One moment please...", ]; const fiveSecondMessages = [ - "Almost there! Just finalizing your payment details...", - "Just a few more moments while we confirm everything...", - "We're processing your payment with care...", - "Double-checking all the details...", - "Making sure everything is in order...", + "Still processing...", + "Just a bit longer...", + "Almost there...", + "This may take a moment...", + "Thank you for waiting...", ]; const tenSecondMessages = [ - "Thank you for your patience. We're making sure everything is perfect...", - "Still working on it – thanks for being patient...", - "We're double-checking everything to ensure a smooth transaction...", - "Nearly there! Just completing the final security checks...", - "Your patience is appreciated while we process this securely...", + "Thanks for your patience...", + "Still working on it...", + "We appreciate your patience...", + "Processing securely...", + "Just a little longer...", ]; const twentySecondMessages = [ - "Still working on it! Your transaction security is our top priority...", - "We appreciate your continued patience while we secure your transaction...", - "Taking extra care to process your payment safely...", - "Still working diligently to complete your transaction...", - "Thank you for waiting – we're ensuring everything is processed correctly...", + "Thank you for waiting...", + "Still processing – thanks for being patient...", + "We're working on it...", + "Your patience is appreciated...", + "Almost done...", ]; const getRandomMessage = (messages: string[]) => {