i18n(session): add missing translations

This commit is contained in:
Edouard Vanbelle
2026-08-09 14:04:42 +02:00
parent bbef8afb7b
commit 321f3ad733
19 changed files with 373 additions and 3 deletions
+5 -1
View File
@@ -524,7 +524,11 @@
// landing from `?source=session_expired` (auto-divert on 401 →
// refresh 401). The login page reads the flag, shows the success
// notice, and skips its existing-session probe.
await goto(resolve('/login?source=logged_out'));
// `resolve()` from `$app/paths` normalises a route-id (adds base
// path prefix); it does NOT accept a query string. Concatenate
// the `?source=logged_out` marker AFTER resolve so the login
// page's onMount branch actually sees it.
await goto(resolve('/login') + '?source=logged_out');
}
</script>