28 lines
686 B
PHP
28 lines
686 B
PHP
<?php
|
|
|
|
return [
|
|
'pace_preference' => [
|
|
'slow' => 'Slow',
|
|
'normal' => 'Normal',
|
|
'fast' => 'Fast',
|
|
],
|
|
'physical_activity_level' => [
|
|
'sedentary' => 'Sedentary',
|
|
'lightly_active' => 'Lightly active',
|
|
'moderately_active' => 'Moderately active',
|
|
'very_active' => 'Very active',
|
|
'athlete' => 'Athlete',
|
|
],
|
|
'user_sex' => [
|
|
'man' => 'Man',
|
|
'woman' => 'Woman',
|
|
'other' => 'Other',
|
|
'unknown' => 'Not specified',
|
|
],
|
|
'weight_goal' => [
|
|
'lose_weight' => 'Lose weight',
|
|
'maintain_weight' => 'Maintain weight',
|
|
'gain_weight' => 'Gain weight',
|
|
],
|
|
];
|