Refactor code structure for improved readability and maintainability

This commit is contained in:
“VeLiTi”
2026-02-06 11:59:13 +01:00
parent fb5951d202
commit 9212492b75
48 changed files with 13072 additions and 11329 deletions

View File

@@ -243,4 +243,43 @@ $cookie_text = 'Cookies';
$contact_text = 'Contact';
$returns_text = 'Return Policy';
$complaint_text = 'Complaints';
// Payment Status Messages
$payment_success_title = "Payment Successful!";
$payment_success_message = "Your order has been confirmed and an email confirmation has been sent to your email address.";
$payment_pending_title = "Payment Pending";
$payment_pending_message = "Your order has been received and is awaiting payment confirmation. You will receive an email once the payment is confirmed.";
$payment_processing_title = "Processing Payment...";
$payment_processing_message = "Please wait while we confirm your payment. This may take a few moments.";
$payment_failed_title = "Payment Not Successful";
$payment_failed_message = "Unfortunately, your payment could not be processed. Please try again or choose a different payment method.";
// Button Labels
$order_number_label = "Order number";
$continue_shopping_btn = "Continue Shopping";
$return_to_checkout_btn = "Return to Checkout";
$view_cart_btn = "View Cart";
// Checkout Step Labels
$step_contact = "Contact";
$step_payment = "Payment";
$step_shipping = "Shipping";
$step_review = "Review";
// Checkout Button Text
$continue_text = "Continue";
$back_text = "Back";
$edit_text = "Edit";
// Checkout Additional Labels
$contact_information = "Contact Information";
$customer_email = "Email";
$account_optional = "(Optional)";
$select_payment = "Please select a payment method";
$ship_to = "Ship to";
$bank_transfer = "Bank Transfer";
$card_payment = "Credit / Debit Card";
?>