汉化部分

This commit is contained in:
Zel
2025-02-04 15:14:07 +08:00
parent 9c3a099733
commit 1d6cd9abbb
10 changed files with 70 additions and 76 deletions

View File

@@ -19,18 +19,18 @@
{
<div class="card border-danger mb-3">
<div class="card-header bg-danger text-white">
<strong>Delete account "@Model.AccountName"?</strong>
<strong>删除账号 "@Model.AccountName"?</strong>
</div>
<div class="card-body">
Deleting "@Model.AccountName" will permanently remove the account. All pages created or modified by this user will be attributed to a stand-in account.
<strong>You will not be able to revert this action. </strong>
账号 "@Model.AccountName" 将永远删除。此用户创建或修改的所有页面都将归属于一个代理帐户.
<strong>您将无法恢复此操作。</strong>
<br /><br />
Are you sure you want to continue with this deletion?<br /><br />
确认继续吗?<br /><br />
@using (Html.BeginForm(null, null, FormMethod.Post, new { action = $"{GlobalConfiguration.BasePath}{Context.Request.Path}" }))
{
<div class="form-group"><button type="submit" class="btn btn-danger rounded-0" name="IsActionConfirmed" value="true">Yes</button>&nbsp;&nbsp;<button type="submit" class="btn btn-success rounded-0" name="IsActionConfirmed" value="false">No</button></div>
<div class="form-group"><button type="submit" class="btn btn-danger rounded-0" name="IsActionConfirmed" value="true"></button>&nbsp;&nbsp;<button type="submit" class="btn btn-success rounded-0" name="IsActionConfirmed" value="false"></button></div>
}
</div>
</div>