feat: configurable week start day in Vacay (Monday or Sunday)

- New setting in Vacay Settings to choose Mon or Sun as week start
- DB migration adds week_start column to vacay_plans (default: Monday)
- Calendar grid and weekday headers adapt to the selected start day
- Weekend column highlighting works correctly for both modes
- Translations added for all 14 languages
This commit is contained in:
Maurice
2026-04-12 02:18:45 +02:00
parent 2215395a26
commit f323952012
20 changed files with 87 additions and 12 deletions
@@ -85,6 +85,7 @@ export default function VacayCalendar() {
blockWeekends={blockWeekends}
weekendDays={weekendDays}
tripDates={tripDates}
weekStart={plan?.week_start ?? 1}
/>
))}
</div>