58 lines
1.6 KiB
PHP
58 lines
1.6 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',
|
||
],
|
||
'weight_goal' => [
|
||
'lose_weight' => 'Perdre du poids',
|
||
'maintain_weight' => 'Maintenir le poids',
|
||
'gain_weight' => 'Prendre du poids',
|
||
],
|
||
];
|