82 lines
2.3 KiB
PHP
82 lines
2.3 KiB
PHP
<?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 d’utilisation',
|
||
],
|
||
'credit_product_type' => [
|
||
'monthly' => 'Mensuel',
|
||
'one_time' => 'Pack de crédits',
|
||
],
|
||
'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',
|
||
],
|
||
];
|