i18n: change all page titles and nav text to Chinese

This commit is contained in:
2026-07-05 22:40:49 +08:00
parent 23897560ad
commit fc55507019
8 changed files with 14 additions and 14 deletions

View File

@@ -3,17 +3,17 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Postcard Manager{% endblock %}</title>
<title>{% block title %}明信片管理器{% endblock %}</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<nav class="navbar">
<a href="/dashboard" class="nav-brand">📮 Postcard Manager</a>
<a href="/dashboard" class="nav-brand">📮 明信片管理器</a>
<div class="nav-links">
{% if user is defined and user %}
<a href="/profiles">Profiles</a>
<a href="/settings">Settings</a>
<a href="/logout" class="nav-logout">Logout</a>
<a href="/profiles">Profile</a>
<a href="/settings">设置</a>
<a href="/logout" class="nav-logout">退出</a>
{% endif %}
</div>
</nav>