feat: lang middleware and filament translations

This commit is contained in:
2026-05-21 14:57:52 +02:00
parent f24999d7fb
commit 52a2104fdf
16 changed files with 316 additions and 95 deletions
+27
View File
@@ -0,0 +1,27 @@
<?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',
],
];