添加修改分辨率提示

This commit is contained in:
fangxiang 2022-03-07 19:51:32 +08:00
parent 4ab87edaa5
commit d14e94e820
2 changed files with 31 additions and 0 deletions

View File

@ -289,6 +289,31 @@
map-options
/>
</q-item-section>
<q-item-section avatar>
<q-btn flat round icon="help" color="green">
<q-tooltip>
<p>
{{
$t(
"EDID: list of resolutions recommended by the display device"
)
}}
</p>
<p>
{{
$t(
"FOCEOUTPUT: force resolution output to be specified"
)
}}
</p>
<p>
{{
$t("FOCEOUTPUT(CUSTOM): uses the specified timing output")
}}
</p>
</q-tooltip>
</q-btn>
</q-item-section>
</q-item>
<q-item
v-if="device_resolution_type.toUpperCase() == 'EDID'"

View File

@ -366,4 +366,10 @@ export default {
or: "或者",
"not registered": "未注册",
register: "注册",
"EDID: list of resolutions recommended by the display device":
"EDID: 显示设备推荐的分辨率列表",
"FOCEOUTPUT: force resolution output to be specified":
"强制输出: 强制指定分辨率输出",
"FOCEOUTPUT(CUSTOM): uses the specified timing output":
"强制输出(自定义): 使用指定时序强制输出",
};