修复中文language翻译错误的问题。优霸定制无输出板时不显示video all菜单
This commit is contained in:
parent
3519d2bf6e
commit
06470f41c0
|
@ -556,7 +556,7 @@ export default {
|
|||
"启用镜像输出后第二个输出可能需要等待1~2分钟才会有画面!",
|
||||
"i have known": "我已知晓",
|
||||
"output setting": "输出设置",
|
||||
language: "中文",
|
||||
language: "语言",
|
||||
english: "英文",
|
||||
chinese: "中文",
|
||||
"hour mark color": "时标",
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
<template>
|
||||
<div>
|
||||
<q-toolbar style="background-color: #3e9acd" class="shadow-2 text-white" @dragstart.prevent>
|
||||
<q-toolbar
|
||||
style="background-color: #3e9acd"
|
||||
class="shadow-2 text-white"
|
||||
@dragstart.prevent
|
||||
>
|
||||
<q-btn-dropdown
|
||||
stretch
|
||||
no-caps
|
||||
|
@ -46,6 +50,7 @@
|
|||
/>
|
||||
|
||||
<q-btn
|
||||
v-if="$store.state.custom_defines.function_output_board"
|
||||
stretch
|
||||
no-caps
|
||||
:disable="!$store.state.power_state"
|
||||
|
@ -194,7 +199,11 @@
|
|||
:label="$t('other setting')"
|
||||
class="q-mr-sm"
|
||||
>
|
||||
<q-list style="background-color: #3e9acd" class="shadow-2 text-white" @dragstart.prevent>
|
||||
<q-list
|
||||
style="background-color: #3e9acd"
|
||||
class="shadow-2 text-white"
|
||||
@dragstart.prevent
|
||||
>
|
||||
<q-item
|
||||
clickable
|
||||
v-close-popup
|
||||
|
@ -293,6 +302,20 @@
|
|||
{{ $t("about") }}
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item
|
||||
clickable
|
||||
v-if="$store.state.factory_mode"
|
||||
v-close-popup
|
||||
@click="$refs.register_dialog.showDialog()"
|
||||
>
|
||||
<q-item-section avatar>
|
||||
<!-- <q-icon name="devices" /> -->
|
||||
<q-icon name="lock_open" />
|
||||
</q-item-section>
|
||||
<q-item-section>
|
||||
{{ $t("register device") }}
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item
|
||||
v-if="$store.state.advanced_debug"
|
||||
clickable
|
||||
|
|
Loading…
Reference in New Issue