// en/vendor_group_deals — vendor group-deal management page namespace
export const vendor_group_deals = {
  page_title: 'Group Deal Management',
  back_to_deals: 'Back to My Deals',
  manage_link: 'Manage Group Deal',

  // KPI tiles
  kpi_participants: 'Participants',
  kpi_fill_rate: 'Fill Rate',
  kpi_confirmed_revenue: 'Confirmed Revenue',
  kpi_projected_revenue: 'Projected Revenue',
  kpi_pending_revenue: 'Pending Revenue',
  kpi_min_group: 'Minimum Group',
  kpi_deadline: 'Deadline',

  // States
  state_collecting: 'Collecting',
  state_threshold_met: 'Threshold Met',
  state_executing: 'Executing',
  state_partial_pending: 'Partial — Pending Decision',
  state_succeeded: 'Succeeded',
  state_failed: 'Failed',
  state_vendor_honored: 'Vendor Honored',
  state_extended: 'Extended',

  // Honor section (PARTIAL_PENDING state)
  honor_section_title: 'Honor Deal',
  honor_prompt: 'The deal did not reach the minimum participants. You can honor it at the original conditions.',
  honor_btn: 'Honor the Deal',
  honor_confirm: 'Honor the group deal and charge participants?',

  // Extend section (COLLECTING state)
  extend_section_title: 'Extend Deadline',
  extend_prompt: 'Extend the closing date to allow more participants to join.',
  extend_new_deadline_label: 'New deadline',
  extend_btn: 'Extend Deal',

  // Relaunch section (FAILED state)
  relaunch_section_title: 'Relaunch',
  relaunch_prompt: 'The deal failed. You can relaunch it with a new deadline.',
  relaunch_btn: 'Relaunch',
  relaunch_confirm: 'Relaunch the group deal?',

  // Tiers
  tiers_title: 'Price Tiers',
  tier_row: '{{participants}}+ participants — ₪{{price}} per unit',

  // Errors / loading
  loading: 'Loading...',
  error_title: 'Failed to load data',
  error_desc: 'Could not load the group deal details.',
  retry: 'Try again',
} as const;
