Files
daily-meal-api/lang/fr/enums.php
T
leonm 2ece4b6e3e
CI / 🧪 Tests Laravel (push) Successful in 2m48s
CI / 🐳 Build & Push Image (push) Successful in 3m0s
feat: subscriptions
2026-08-07 11:53:46 +02:00

91 lines
2.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
return [
'pace_preference' => [
'slow' => 'Lent',
'normal' => 'Normal',
'fast' => 'Rapide',
],
'physical_activity_level' => [
'sedentary' => 'Sédentaire',
'lightly_active' => 'Légèrement actif',
'moderately_active' => 'Modérément actif',
'very_active' => 'Très actif',
'athlete' => 'Athlète',
],
'user_sex' => [
'man' => 'Homme',
'woman' => 'Femme',
'other' => 'Autre',
'unknown' => 'Non renseigné',
],
'user_role' => [
'user' => 'Utilisateur',
'admin' => 'Administrateur',
'moderator' => 'Modérateur',
],
'report_reason' => [
'spam' => 'Spam',
'harassment' => 'Harcèlement',
'hate_speech' => 'Discours haineux',
'inappropriate' => 'Contenu inapproprié',
'dangerous_content' => 'Contenu dangereux',
'misleading' => 'Information trompeuse',
'other' => 'Autre',
],
'report_status' => [
'open' => 'Ouvert',
'reviewing' => 'En cours',
'resolved' => 'Résolu',
'rejected' => 'Rejeté',
],
'moderation_case_status' => [
'open' => 'Ouvert',
'reviewing' => 'En cours',
'resolved' => 'Résolu',
'rejected' => 'Rejeté',
],
'legal_document_type' => [
'privacy_policy' => 'Politique de confidentialité',
'terms' => 'Conditions dutilisation',
],
'credit_product_type' => [
'monthly' => 'Mensuel',
'one_time' => 'Pack de crédits',
],
'billing_product_purpose' => [
'subscription' => 'Abonnement analyse',
'certification' => 'Certification à vie',
],
'identity_verification_status' => [
'pending' => 'À vérifier',
'approved' => 'Approuvée',
'rejected' => 'Refusée',
],
'credit_ledger_entry_type' => [
'free_grant' => 'Crédits offerts',
'purchase' => 'Achat',
'subscription_renewal' => 'Renouvellement',
'usage' => 'Utilisation',
'refund' => 'Remboursement',
'adjustment' => 'Ajustement',
],
'payment_transaction_status' => [
'pending' => 'En attente',
'paid' => 'Payé',
'credited' => 'Crédité',
'failed' => 'Échec',
'ignored' => 'Ignoré',
'error' => 'Erreur',
],
'payment_transaction_type' => [
'checkout' => 'Checkout',
'subscription_invoice' => 'Facture abonnement',
],
'weight_goal' => [
'lose_weight' => 'Perdre du poids',
'maintain_weight' => 'Maintenir le poids',
'gain_weight' => 'Prendre du poids',
],
];