i18n on the web - deepseek translations

This commit is contained in:
Priec
2026-08-14 20:35:37 +02:00
parent 2dc0d94ba0
commit 8f1bfdbe0c
91 changed files with 4679 additions and 1237 deletions

View File

@@ -1,16 +1,16 @@
{% extends "ui/base.html" %}
{% block title %}Change password{% endblock %}
{% block title %}{{ nav.tr("password-title") }}{% endblock %}
{% block content %}
<main class="login-main">
<form class="login-card" hx-post="/password" hx-target="#password-status" hx-swap="innerHTML" hx-disabled-elt="button" novalidate>
<h1>Change password</h1>
<p class="hint">For a freshly seeded admin or superadmin account, leave the current password empty.</p>
<label>Current password<input name="current_password" type="password" autocomplete="current-password"></label>
<label>New password<input name="new_password" type="password" autocomplete="new-password" required></label>
<label>Confirm new password<input name="new_password_confirmation" type="password" autocomplete="new-password" required></label>
<button type="submit">Change password</button>
<h1>{{ nav.tr("password-title") }}</h1>
<p class="hint">{{ nav.tr("password-empty-current-hint") }}</p>
<label>{{ nav.tr("field-current-password") }}<input name="current_password" type="password" autocomplete="current-password"></label>
<label>{{ nav.tr("field-new-password") }}<input name="new_password" type="password" autocomplete="new-password" required></label>
<label>{{ nav.tr("field-confirm-new-password") }}<input name="new_password_confirmation" type="password" autocomplete="new-password" required></label>
<button type="submit">{{ nav.tr("password-button-change") }}</button>
<div id="password-status" aria-live="polite"></div>
</form>
</main>