fix(app): missing i18n keys

This commit is contained in:
Adam
2026-01-21 10:42:26 -06:00
parent ab3d412a81
commit 850d50eb64
12 changed files with 159 additions and 80 deletions

View File

@@ -1366,7 +1366,7 @@ export default function Page() {
window.history.replaceState(null, "", window.location.href.replace(/#.*$/, ""))
}}
>
Jump to latest
{language.t("session.messages.jumpToLatest")}
</Button>
</div>
</Show>
@@ -2017,9 +2017,11 @@ export default function Page() {
style={{ color: "rgba(239, 68, 68, 0.8)" }}
/>
<div class="text-center" style={{ color: "rgba(255, 255, 255, 0.7)" }}>
<div class="text-14-semibold mb-1">Connection Lost</div>
<div class="text-14-semibold mb-1">
{language.t("terminal.connectionLost.title")}
</div>
<div class="text-12-regular" style={{ color: "rgba(255, 255, 255, 0.5)" }}>
The terminal connection was interrupted. This can happen when the server restarts.
{language.t("terminal.connectionLost.description")}
</div>
</div>
<button
@@ -2037,7 +2039,7 @@ export default function Page() {
}
onClick={() => setDismissed(true)}
>
Dismiss
{language.t("common.dismiss")}
</button>
</div>
</Show>