i18n complet des pages + routine builder avancé (config par exo, réordonner, dupliquer)
Build & Deploy / build (push) Successful in 8s

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-19 04:48:26 +02:00
co-authored by Claude Opus 4.8
parent 2e9f0962a1
commit bd739d13cf
11 changed files with 398 additions and 53 deletions
+3 -2
View File
@@ -3,6 +3,7 @@ definePageMeta({ middleware: 'auth' })
const { api } = useApi()
const route = useRoute()
const toast = useToast()
const { t } = useI18n()
onMounted(async () => {
try {
@@ -13,7 +14,7 @@ onMounted(async () => {
})
await navigateTo(`/session/${res.session.id}`)
} catch {
toast.add({ title: 'Impossible de démarrer la séance', color: 'error' })
toast.add({ title: t('session.cantStart'), color: 'error' })
await navigateTo('/')
}
})
@@ -22,6 +23,6 @@ onMounted(async () => {
<template>
<div class="flex flex-col items-center justify-center py-24 gap-4">
<SfLogo :size="72" loader />
<p class="text-sm text-zinc-500">Préparation de ta séance</p>
<p class="text-sm text-zinc-500">{{ t('session.preparing') }}</p>
</div>
</template>