Files
daily-meal-api/lang/fr/enums.php
T
leonm 68560655f3
CI / 🧪 Tests Laravel (push) Successful in 2m0s
CI / 🐳 Build & Push Image (push) Successful in 35s
feat: clean credits users
2026-08-07 15:32:40 +02:00

78 lines
2.2 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',
],
'billing_product_purpose' => [
'subscription' => 'Abonnement analyse',
'certification' => 'Certification à vie',
],
'identity_verification_status' => [
'pending' => 'À vérifier',
'approved' => 'Approuvée',
'rejected' => 'Refusée',
],
'payment_transaction_status' => [
'pending' => 'En attente',
'paid' => 'Payé',
'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',
],
];