Add i18n support for French and German with browser language detection
CI / test-and-package (push) Successful in 35s

This commit is contained in:
agentbox
2026-08-01 06:00:29 +00:00
parent 218e2b6fb0
commit b46691fee3
9 changed files with 519 additions and 78 deletions
+22
View File
@@ -232,3 +232,25 @@ body {
.manage-form h4 { margin-bottom: 8px; font-size: 0.9rem; }
.manage-form .hint { margin-bottom: 8px; }
.manage-form input[type="password"] { width: 100%; padding: 6px 10px; border: 1px solid var(--border); border-radius: 4px; margin-bottom: 8px; }
/* ── Language footer ── */
.lang-footer {
text-align: center;
padding: 16px;
margin-top: 32px;
border-top: 1px solid var(--border);
}
.lang-link {
display: inline-block;
padding: 4px 10px;
margin: 0 4px;
font-size: 0.8rem;
font-weight: 500;
color: var(--muted);
text-decoration: none;
border-radius: 12px;
transition: all 0.15s;
}
.lang-link:hover { background: #eee; color: var(--text); }
.lang-active { background: var(--primary); color: #fff; }
.lang-active:hover { background: #0d47a1; color: #fff; }