// en/admin_purchase_detail
export const admin_purchase_detail = {
  back: 'Back to Purchases',
  page_title: 'Purchase Detail',
  section_parties: 'Parties',
  section_deal: 'Deal Snapshot',
  section_payment: 'Payment Info',
  section_timeline: 'Timeline',
  section_review: 'Review',
  section_actions: 'Actions',
  field_customer: 'Customer',
  field_vendor: 'Vendor',
  guest_label: 'Guest (no account)',
  field_deal_title: 'Deal name',
  field_deal_type: 'Type',
  field_deal_original_price: 'Original price',
  field_deal_discount: 'Discount',
  field_deal_discounted_price: 'Discounted price',
  field_deal_window_start: 'Window start',
  field_deal_window_end: 'Window end',
  field_deal_pickup_address: 'Pickup address',
  field_amount_paid: 'Amount paid',
  field_commission_amount: 'Platform commission',
  field_vendor_amount: 'Vendor payout',
  field_provider_payment_id: 'Payment ID (Stripe)',
  field_vendor_receipt: 'Vendor receipt',
  field_platform_receipt: 'Platform receipt',
  receipt_download: 'Download receipt (PDF)',
  field_quantity: 'Quantity',
  currency_symbol: '₪',
  payment_status_prefix: 'Payment',
  redemption_status_prefix: 'Redemption',
  payment_pending: 'Pending',
  payment_completed: 'Completed',
  payment_refund_requested: 'Refund requested',
  payment_refunded: 'Refunded',
  payment_partial_refund: 'Partial refund',
  redemption_unredeemed: 'Unredeemed',
  redemption_redeemed: 'Redeemed',
  redemption_expired: 'Expired',
  redemption_cancelled: 'Cancelled',
  timeline_created: 'Purchase created',
  timeline_paid: 'Payment confirmed',
  timeline_redeemed: 'Redeemed',
  timeline_cancelled: 'Cancelled',
  timeline_expired: 'Expired',
  timeline_pending_redemption: 'Awaiting redemption',
  field_review_rating: 'Rating',
  field_review_type: 'Review type',
  field_review_visible: 'Visibility',
  review_type_STANDARD: 'Rating only',
  review_type_TECHNICAL: 'Technical review',
  field_review_date: 'Review date',
  field_review_body: 'Review content',
  review_visible_yes: 'Visible',
  review_visible_no: 'Hidden',
  action_refund: 'Execute Refund',
  action_resend_receipt: 'Resend Receipt',
  refund_dialog_title: 'Execute Refund',
  refund_dialog_desc:
    "The refund will be executed immediately via Stripe and returned to the customer's original payment method. Refund amount: the full amount paid. This action cannot be undone.",
  refund_dialog_confirm: 'Confirm and Refund',
  refund_success: 'Refund executed successfully via Stripe',
  refund_unavailable_hint:
    'Refunds are only available for purchases with payment status "Completed". This purchase: {{status}}.',
  customer_unnamed: 'Unnamed customer',
  field_expires_at: 'Valid until',
  resend_dialog_title: 'Resend Receipt',
  resend_dialog_desc: "This will resend the receipt email to the customer's email address.",
  resend_dialog_confirm: 'Send Receipt',
  resend_receipt_success: 'Receipt resent successfully',
  deal_type_COUPON: 'Coupon',
  deal_type_GROUP: 'Group Deal',
  deal_type_ITEM: 'Physical Item',
} as const;
