api/lang/fr/enums.php

33 lines
847 B
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',
],
'weight_goal' => [
'lose_weight' => 'Perdre du poids',
'maintain_weight' => 'Maintenir le poids',
'gain_weight' => 'Prendre du poids',
],
];