i18n: i18n tailscale frontend features

This commit is contained in:
Stavros
2026-05-11 16:13:03 +03:00
parent 9c0fe751cc
commit 90145dd774
5 changed files with 43 additions and 17 deletions
+11 -3
View File
@@ -75,9 +75,17 @@ export const LogoutPage = () => {
if (auth.providerId === "tailscale") {
return (
<LogoutLayout logoutMutation={logoutMutation}>
You are currently logged in with the Tailscale integration identified by
the <code>{tailscale.nodeName}</code> node. Click the button below to
log out.
<Trans
i18nKey="logoutTailscaleSubtitle"
t={t}
components={{
code: <code />,
}}
values={{
deviceName: tailscale.nodeName,
}}
shouldUnescape={true}
/>
</LogoutLayout>
);
}