/**
 * Shared option lists for the propriétaire identity fields that feed the
 * "Contrat de mandat de gestion" (ENTRE LES SOUSSIGNÉS block).
 *
 * - `civilite` is printed verbatim before the owner name ("M. Ghazi …").
 * - `pay_origine` is a country NAME; the mandate template maps it to the
 *   nationality adjective ("de nationalité tunisienne"), so the values here
 *   must match the keys handled in pages/owners/contracts/contractSign.tsx.
 */
export const CIVILITES = ['M.', 'Mme', 'Mlle'] as const;

export const NATIONALITIES = [
    'Tunisie',
    'France',
    'Algérie',
    'Maroc',
    'Libye',
    'Italie',
    'Espagne',
    'Allemagne',
    'Belgique',
    'Suisse',
    'Royaume-Uni',
    'États-Unis',
    'Canada',
] as const;
