This commit is contained in:
fly_mc 2024-10-28 21:25:40 +08:00
parent 60451090d0
commit 6384876513
2 changed files with 2 additions and 2 deletions

View file

@ -356,7 +356,7 @@ displayOfSensitiveMedia: "显示敏感媒体"
whenServerDisconnected: "与服务器连接中断时"
disconnectedFromServer: "已和服务器断开连接"
reload: "重新加载"
doNothing: "关闭"
doNothing: "忽略"
reloadConfirm: "确定要重新加载吗?"
watch: "关注"
unwatch: "取消关注"

View file

@ -168,7 +168,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
<MkSelect v-model="serverDisconnectedBehavior">
<template #label>{{ i18n.ts.whenServerDisconnected }}</template>
<option :value="null">Ignore</option>
<option :value="null">{{ i18n.ts.doNothing }}</option>
<option value="reload">{{ i18n.ts._serverDisconnectedBehavior.reload }}</option>
<option value="dialog">{{ i18n.ts._serverDisconnectedBehavior.dialog }}</option>
<option value="quiet">{{ i18n.ts._serverDisconnectedBehavior.quiet }}</option>