// en/admin_vendors
export const admin_vendors = {
  title: 'Vendor Management',
  col_business_name: 'Business name',
  col_tier: 'Tier',
  col_state: 'Status',
  col_active_deals: 'Active deals',
  col_active_deals_tooltip: 'Number of deals currently live on the site',
  col_sales: '# Sales',
  col_sales_tooltip: 'Number of completed orders for this vendor (not a money amount)',
  col_revenue: 'Revenue (gross)',
  col_revenue_tooltip: 'Total revenue from all completed sales, before platform commission',
  col_score: 'Rating',
  col_score_tooltip: 'Average customer rating on a 1–5 scale, with review count in parentheses',
  col_score_none_tooltip: 'No reviews yet',
  col_created: 'Joined',
  show_no_deals_toggle: 'Show vendors with no active deals',
  show_no_deals_toggle_tooltip:
    'By default, vendors with no active deals are hidden — including pending, frozen, or banned vendors',
  filter_tier: 'Filter by tier',
  filter_state: 'Filter by status',
  filter_search: 'Search by business name',
  tier_new: 'New',
  tier_veteran: 'Veteran',
  tier_new_chip: 'Tier: New',
  tier_veteran_chip: 'Tier: Veteran',
  state_pending: 'Pending first approval',
  state_pending_processor: 'Awaiting payment setup',
  state_pending_processor_tooltip:
    'Vendor approved but has not finished payment (Stripe) onboarding. Can be force-activated from the vendor page.',
  state_active: 'Active',
  state_veteran: 'Active (veteran)',
  state_frozen: 'Frozen',
  state_frozen_tooltip:
    'Selling is temporarily suspended. Unfreeze is available from the table or the vendor page.',
  state_banned: 'Banned',
  state_rejected: 'Rejected',
  state_flagged: 'Flagged',
  state_flagged_tooltip: 'Flagged for manual review during first approval. Reason: {reason}',
  freeze_confirm_title: 'Freeze vendor',
  freeze_confirm_body:
    'The vendor will be frozen and unable to sell until unfrozen. A notification with the reason will be sent to the vendor.',
  freeze_confirm_action: 'Freeze',
  unfreeze_confirm_title: 'Unfreeze vendor',
  unfreeze_confirm_body: 'This will unfreeze the vendor account.',
  unfreeze_confirm_action: 'Unfreeze',
  freeze_reason_label: 'Freeze reason',
  freeze_reason_placeholder: 'Describe the reason for freezing...',
  freeze_duration_label: 'Duration (days, optional)',
  no_vendors:
    'No vendors found. Vendors with no active deals may be hidden — turn on "Show vendors with no active deals" or clear the filters.',
  total_label: 'vendors total',
  tab_overview: 'Overview',
  tab_all: 'All Vendors',
  tab_approval: 'Content Approvals',
  overview_total_active: 'Active vendors (incl. veteran)',
  overview_total_active_tooltip: 'Includes vendors in both Active and Veteran status.',
  overview_pending_approval: 'Vendors awaiting account approval',
  overview_pending_approval_tooltip:
    'Vendors awaiting first approval or payment-processor onboarding. Click to open the pending-vendors list.',
  overview_suspended: 'Frozen / Banned',
  overview_suspended_tooltip:
    'Total of vendors in Frozen (temporary suspension) and Banned (permanent) status.',
  overview_new_this_week: 'New in last 7 days',
  overview_new_this_week_tooltip:
    'Vendors registered in the last 7 days, in any status (including rejected/banned).',
  overview_load_error: "Couldn't load vendor stats — try refreshing",
  overview_empty: 'No vendors yet. New vendors will appear here after sign-up.',
} as const;
