// en/purchase_flow
export const purchase_flow = {
  confirm_title: 'Confirm Purchase',
  confirm_summary: 'Deal Summary',
  payment_method: 'Payment Method',
  add_payment_method: 'Add Payment Method',
  no_payment_method: 'No saved payment methods.',
  add_card_title: 'Add card',
  save_card: 'Save card',
  add_another_card: 'Add another card',
  back_to_purchase: 'Back to purchase',
  card_requires_auth: 'This card requires additional verification. Please try again or use a different card.',
  loading_card_form: 'Loading card form...',
  buy_now: 'Buy Now',
  processing: 'Processing...',
  success_title: 'Purchase Successful!',
  success_back: 'Back to feed',
  guest_name: 'Full name',
  guest_email: 'Email',
  guest_phone: 'Phone',
  guest_payment: 'Payment details',
  soft_register_prompt: 'Want to open a Multideal account? Everything is ready in your email.',
  error_loading: 'Failed to load deal',
  error_VENDOR_NOT_ONBOARDED:
    "This business hasn't joined the payment system yet. Try a different deal.",
  error_DEAL_NOT_ACTIVE: 'This deal is not currently active.',
  error_DEAL_EXPIRED: 'This deal has ended.',
  error_DEAL_SOLD_OUT: 'This deal is sold out.',
  error_AUTH_REQUIRED: 'Please sign in to make a purchase.',
  error_default: 'Something went wrong. Please try again.',
} as const;
