修改英文翻译为大写开头
This commit is contained in:
parent
22742894e6
commit
aa6d7e6c55
|
@ -144,8 +144,12 @@ export default defineComponent({
|
||||||
if (Math.abs(window.orientation) == 90) {
|
if (Math.abs(window.orientation) == 90) {
|
||||||
landspace = !landspace;
|
landspace = !landspace;
|
||||||
}
|
}
|
||||||
if (window.location.href.indexOf("___debug_ipad___") != -1) {
|
|
||||||
landspace = !landspace;
|
{
|
||||||
|
const user_search = (<any>window).user_search || {};
|
||||||
|
if (typeof user_search == "object") {
|
||||||
|
landspace = typeof user_search["___debug_ipad___"] != "undefined";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (window.innerHeight < 600) {
|
if (window.innerHeight < 600) {
|
||||||
|
|
|
@ -7,7 +7,7 @@ export default class FileSuffixHelper {
|
||||||
|
|
||||||
public static get videoSuffix() {
|
public static get videoSuffix() {
|
||||||
if (FileSuffixHelper.debug_mode) {
|
if (FileSuffixHelper.debug_mode) {
|
||||||
return null;
|
return "";
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
GlobalData.getInstance().applicationConfig?.video_suffix_filter ||
|
GlobalData.getInstance().applicationConfig?.video_suffix_filter ||
|
||||||
|
@ -24,7 +24,7 @@ export default class FileSuffixHelper {
|
||||||
|
|
||||||
public static get imageSuffix() {
|
public static get imageSuffix() {
|
||||||
if (FileSuffixHelper.debug_mode) {
|
if (FileSuffixHelper.debug_mode) {
|
||||||
return null;
|
return "";
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
GlobalData.getInstance().applicationConfig?.image_suffix_filter ||
|
GlobalData.getInstance().applicationConfig?.image_suffix_filter ||
|
||||||
|
|
|
@ -72,6 +72,7 @@
|
||||||
<q-btn
|
<q-btn
|
||||||
@click="setDeviceAttribute"
|
@click="setDeviceAttribute"
|
||||||
:label="$t('commit')"
|
:label="$t('commit')"
|
||||||
|
no-caps
|
||||||
outline
|
outline
|
||||||
color="primary"
|
color="primary"
|
||||||
/>
|
/>
|
||||||
|
@ -83,6 +84,7 @@
|
||||||
<q-checkbox
|
<q-checkbox
|
||||||
v-model="function_custom_ISV"
|
v-model="function_custom_ISV"
|
||||||
:label="$t('Custom ISV')"
|
:label="$t('Custom ISV')"
|
||||||
|
class="offset-md-1 col"
|
||||||
color="cyan"
|
color="cyan"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
:disable="loading"
|
:disable="loading"
|
||||||
|
@ -119,6 +121,7 @@
|
||||||
<q-btn
|
<q-btn
|
||||||
@click="setSystemLanguage"
|
@click="setSystemLanguage"
|
||||||
:label="$t('commit')"
|
:label="$t('commit')"
|
||||||
|
no-caps
|
||||||
outline
|
outline
|
||||||
color="primary"
|
color="primary"
|
||||||
/>
|
/>
|
||||||
|
@ -129,13 +132,17 @@
|
||||||
|
|
||||||
<q-item class="q-mt-md">
|
<q-item class="q-mt-md">
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-btn @click="showDeviceInfo"> {{ $t("device info") }} </q-btn>
|
<q-btn no-caps @click="showDeviceInfo">
|
||||||
|
{{ $t("device info") }}
|
||||||
|
</q-btn>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
|
|
||||||
<q-item class="q-mt-xs">
|
<q-item class="q-mt-xs">
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-btn @click="restartDevice"> {{ $t("restart") }} </q-btn>
|
<q-btn no-caps @click="restartDevice">
|
||||||
|
{{ $t("restart") }}
|
||||||
|
</q-btn>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
</q-list>
|
</q-list>
|
||||||
|
@ -148,6 +155,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -127,7 +127,7 @@
|
||||||
<q-separator />
|
<q-separator />
|
||||||
|
|
||||||
<q-card-actions align="right">
|
<q-card-actions align="right">
|
||||||
<q-btn flat :label="$t('Cancel')" color="primary" v-close-popup />
|
<q-btn flat :label="$t('Cancel')" no-caps color="primary" v-close-popup />
|
||||||
<q-btn
|
<q-btn
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
|
|
|
@ -75,6 +75,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -82,6 +83,7 @@
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
@ -101,6 +101,7 @@
|
||||||
ref="cancel"
|
ref="cancel"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
color="primary"
|
color="primary"
|
||||||
|
@ -110,6 +111,7 @@
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
@ -52,11 +52,13 @@
|
||||||
>
|
>
|
||||||
<q-tab
|
<q-tab
|
||||||
name="center_control"
|
name="center_control"
|
||||||
:label="$t('control')"
|
no-caps
|
||||||
|
:label="$t('command')"
|
||||||
:disable="loading"
|
:disable="loading"
|
||||||
/>
|
/>
|
||||||
<q-tab
|
<q-tab
|
||||||
name="serial_port_setting"
|
name="serial_port_setting"
|
||||||
|
no-caps
|
||||||
:label="$t('serial port setting')"
|
:label="$t('serial port setting')"
|
||||||
:disable="loading"
|
:disable="loading"
|
||||||
/>
|
/>
|
||||||
|
@ -80,6 +82,7 @@
|
||||||
<q-btn
|
<q-btn
|
||||||
stretch
|
stretch
|
||||||
outline
|
outline
|
||||||
|
no-caps
|
||||||
ripple
|
ripple
|
||||||
color="primary"
|
color="primary"
|
||||||
class="fit"
|
class="fit"
|
||||||
|
@ -221,6 +224,7 @@
|
||||||
<q-space />
|
<q-space />
|
||||||
<div class="col-auto">
|
<div class="col-auto">
|
||||||
<q-btn
|
<q-btn
|
||||||
|
no-caps
|
||||||
flat
|
flat
|
||||||
:label="$t('revert')"
|
:label="$t('revert')"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
|
@ -231,6 +235,7 @@
|
||||||
<div class="col-auto">
|
<div class="col-auto">
|
||||||
<q-btn
|
<q-btn
|
||||||
flat
|
flat
|
||||||
|
no-caps
|
||||||
:label="$t('submit')"
|
:label="$t('submit')"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
<q-btn
|
<q-btn
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
:disable="loading"
|
:disable="loading"
|
||||||
|
no-caps
|
||||||
flat
|
flat
|
||||||
round
|
round
|
||||||
icon="close"
|
icon="close"
|
||||||
|
@ -69,6 +70,7 @@
|
||||||
<q-btn-dropdown
|
<q-btn-dropdown
|
||||||
stretch
|
stretch
|
||||||
flat
|
flat
|
||||||
|
no-caps
|
||||||
:label="default_path_label"
|
:label="default_path_label"
|
||||||
:disable="uploading"
|
:disable="uploading"
|
||||||
>
|
>
|
||||||
|
@ -92,6 +94,7 @@
|
||||||
<q-btn
|
<q-btn
|
||||||
flat
|
flat
|
||||||
icon="arrow_back"
|
icon="arrow_back"
|
||||||
|
no-caps
|
||||||
:disable="path.trim() == '' || uploading"
|
:disable="path.trim() == '' || uploading"
|
||||||
@click="backToParentPath"
|
@click="backToParentPath"
|
||||||
:label="$t('back')"
|
:label="$t('back')"
|
||||||
|
@ -102,6 +105,7 @@
|
||||||
</q-btn>
|
</q-btn>
|
||||||
<q-btn
|
<q-btn
|
||||||
flat
|
flat
|
||||||
|
no-caps
|
||||||
icon="arrow_forward"
|
icon="arrow_forward"
|
||||||
:disable="prev_path == '' || path == prev_path || uploading"
|
:disable="prev_path == '' || path == prev_path || uploading"
|
||||||
@click="(path = prev_path) && (prev_path = '')"
|
@click="(path = prev_path) && (prev_path = '')"
|
||||||
|
@ -114,6 +118,7 @@
|
||||||
<q-btn
|
<q-btn
|
||||||
flat
|
flat
|
||||||
icon="refresh"
|
icon="refresh"
|
||||||
|
no-caps
|
||||||
@click="refresh_file_list"
|
@click="refresh_file_list"
|
||||||
:disable="uploading"
|
:disable="uploading"
|
||||||
:label="$t('refresh')"
|
:label="$t('refresh')"
|
||||||
|
@ -124,6 +129,7 @@
|
||||||
</q-btn>
|
</q-btn>
|
||||||
<q-btn
|
<q-btn
|
||||||
flat
|
flat
|
||||||
|
no-caps
|
||||||
icon="content_paste"
|
icon="content_paste"
|
||||||
@click="pasteFile"
|
@click="pasteFile"
|
||||||
:disable="
|
:disable="
|
||||||
|
@ -139,6 +145,7 @@
|
||||||
<q-btn
|
<q-btn
|
||||||
flat
|
flat
|
||||||
icon="create_new_folder"
|
icon="create_new_folder"
|
||||||
|
no-caps
|
||||||
@click="onCreateNewFolder"
|
@click="onCreateNewFolder"
|
||||||
:disable="loading || uploading"
|
:disable="loading || uploading"
|
||||||
:label="$t('create folder')"
|
:label="$t('create folder')"
|
||||||
|
@ -150,6 +157,7 @@
|
||||||
<q-btn
|
<q-btn
|
||||||
flat
|
flat
|
||||||
v-if="!uploading"
|
v-if="!uploading"
|
||||||
|
no-caps
|
||||||
icon="upload"
|
icon="upload"
|
||||||
:label="$t('upload file')"
|
:label="$t('upload file')"
|
||||||
@click="uploading = true"
|
@click="uploading = true"
|
||||||
|
@ -161,6 +169,7 @@
|
||||||
<q-btn
|
<q-btn
|
||||||
flat
|
flat
|
||||||
icon="block"
|
icon="block"
|
||||||
|
no-caps
|
||||||
v-if="uploading"
|
v-if="uploading"
|
||||||
:label="$t('cancel upload file')"
|
:label="$t('cancel upload file')"
|
||||||
@click="uploading = false"
|
@click="uploading = false"
|
||||||
|
@ -678,6 +687,11 @@ export default defineComponent({
|
||||||
|
|
||||||
const parseFilter = (filter?: string) => {
|
const parseFilter = (filter?: string) => {
|
||||||
filters.value = [];
|
filters.value = [];
|
||||||
|
console.log(filter);
|
||||||
|
if (filter == null || typeof filter == "undefined") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
console.log(filter);
|
||||||
|
|
||||||
if (filter) {
|
if (filter) {
|
||||||
for (const item of filter.split(";")) {
|
for (const item of filter.split(";")) {
|
||||||
|
|
|
@ -72,6 +72,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -79,6 +80,7 @@
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
@ -122,8 +124,12 @@ export default defineComponent({
|
||||||
showDialog() {
|
showDialog() {
|
||||||
show_dialog.value = true;
|
show_dialog.value = true;
|
||||||
|
|
||||||
rows.value = GlobalData.getInstance().applicationConfig?.wall_row ?? 1;
|
rows.value = parseInt(
|
||||||
cols.value = GlobalData.getInstance().applicationConfig?.wall_col ?? 1;
|
(GlobalData.getInstance().applicationConfig?.wall_row ?? 1).toString()
|
||||||
|
);
|
||||||
|
cols.value = parseInt(
|
||||||
|
(GlobalData.getInstance().applicationConfig?.wall_col ?? 1).toString()
|
||||||
|
);
|
||||||
},
|
},
|
||||||
resetData() {
|
resetData() {
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
|
|
|
@ -157,6 +157,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -164,6 +165,7 @@
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
@ -131,6 +131,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -138,6 +139,7 @@
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
@ -340,6 +340,7 @@
|
||||||
<q-btn
|
<q-btn
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
|
no-caps
|
||||||
:label="$t('add row')"
|
:label="$t('add row')"
|
||||||
color="primary"
|
color="primary"
|
||||||
@click="addRow"
|
@click="addRow"
|
||||||
|
@ -349,6 +350,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -356,6 +358,7 @@
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
@ -131,6 +131,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -138,6 +139,7 @@
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
@ -75,6 +75,7 @@
|
||||||
<q-card-actions>
|
<q-card-actions>
|
||||||
<q-btn
|
<q-btn
|
||||||
ref="accept"
|
ref="accept"
|
||||||
|
no-caps
|
||||||
flat
|
flat
|
||||||
:label="$t('add row')"
|
:label="$t('add row')"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
|
@ -83,6 +84,7 @@
|
||||||
/>
|
/>
|
||||||
<q-space />
|
<q-space />
|
||||||
<q-btn
|
<q-btn
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('close and reset')"
|
:label="$t('close and reset')"
|
||||||
|
@ -91,6 +93,7 @@
|
||||||
/>
|
/>
|
||||||
<q-btn
|
<q-btn
|
||||||
ref="accept"
|
ref="accept"
|
||||||
|
no-caps
|
||||||
flat
|
flat
|
||||||
:label="$t('close and save')"
|
:label="$t('close and save')"
|
||||||
:disable="play_list.length == 0"
|
:disable="play_list.length == 0"
|
||||||
|
|
|
@ -185,6 +185,7 @@
|
||||||
<q-btn
|
<q-btn
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
|
no-caps
|
||||||
:label="$t('add row')"
|
:label="$t('add row')"
|
||||||
color="primary"
|
color="primary"
|
||||||
@click="addRow(false)"
|
@click="addRow(false)"
|
||||||
|
@ -194,6 +195,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -201,6 +203,7 @@
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
@ -68,6 +68,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -75,6 +76,7 @@
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
@ -345,6 +345,7 @@
|
||||||
:disable="loading"
|
:disable="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -276,6 +276,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -284,6 +285,7 @@
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
type="submit"
|
type="submit"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -131,6 +131,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -138,6 +139,7 @@
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
@ -143,6 +143,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -150,6 +151,7 @@
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
@ -50,12 +50,14 @@
|
||||||
>
|
>
|
||||||
<q-tab
|
<q-tab
|
||||||
name="network"
|
name="network"
|
||||||
|
no-caps
|
||||||
icon="img:new_icon/network_setting.png"
|
icon="img:new_icon/network_setting.png"
|
||||||
:label="$t('network setting')"
|
:label="$t('network setting')"
|
||||||
:disable="loading"
|
:disable="loading"
|
||||||
/>
|
/>
|
||||||
<q-tab
|
<q-tab
|
||||||
name="graphics"
|
name="graphics"
|
||||||
|
no-caps
|
||||||
icon="img:new_icon/graphics_setting.png"
|
icon="img:new_icon/graphics_setting.png"
|
||||||
:label="
|
:label="
|
||||||
function_output_board_attribute
|
function_output_board_attribute
|
||||||
|
@ -66,12 +68,14 @@
|
||||||
/>
|
/>
|
||||||
<q-tab
|
<q-tab
|
||||||
name="timing_task"
|
name="timing_task"
|
||||||
|
no-caps
|
||||||
icon="img:new_icon/timing_task.png"
|
icon="img:new_icon/timing_task.png"
|
||||||
:label="$t('timing task')"
|
:label="$t('timing task')"
|
||||||
:disable="loading"
|
:disable="loading"
|
||||||
/>
|
/>
|
||||||
<q-tab
|
<q-tab
|
||||||
name="other"
|
name="other"
|
||||||
|
no-caps
|
||||||
icon="build"
|
icon="build"
|
||||||
:label="$t('other setting')"
|
:label="$t('other setting')"
|
||||||
:disable="loading"
|
:disable="loading"
|
||||||
|
@ -247,6 +251,7 @@
|
||||||
@click="onAdvanceNetwork"
|
@click="onAdvanceNetwork"
|
||||||
outline
|
outline
|
||||||
color="primary"
|
color="primary"
|
||||||
|
no-caps
|
||||||
:label="$t('advanced')"
|
:label="$t('advanced')"
|
||||||
></q-btn>
|
></q-btn>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
|
@ -1035,7 +1040,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.width_5_2_2 {
|
.width_5_2_2 {
|
||||||
width: 18%;
|
width: 22%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.width_5_3 {
|
.width_5_3 {
|
||||||
|
|
|
@ -132,11 +132,18 @@
|
||||||
<q-separator />
|
<q-separator />
|
||||||
|
|
||||||
<q-card-actions align="right">
|
<q-card-actions align="right">
|
||||||
<q-btn flat :label="$t('Cancel')" color="primary" v-close-popup />
|
<q-btn
|
||||||
|
flat
|
||||||
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
|
color="primary"
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
<q-btn
|
<q-btn
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -161,6 +161,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -168,6 +169,7 @@
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
@ -96,6 +96,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -104,6 +105,7 @@
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
|
no-caps
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -194,6 +194,7 @@
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
flat
|
flat
|
||||||
:label="$t('Cancel')"
|
:label="$t('Cancel')"
|
||||||
|
no-caps
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
/>
|
/>
|
||||||
|
@ -201,6 +202,7 @@
|
||||||
ref="accept"
|
ref="accept"
|
||||||
flat
|
flat
|
||||||
:label="$t('Accept')"
|
:label="$t('Accept')"
|
||||||
|
no-caps
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
type="submit"
|
type="submit"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|
|
@ -25,4 +25,176 @@ export default {
|
||||||
"set the window rectangle beyond the desktop rectangle, the window rectangle will be clipped, are you sure to use this window rectangle":
|
"set the window rectangle beyond the desktop rectangle, the window rectangle will be clipped, are you sure to use this window rectangle":
|
||||||
"if the window size exceeds the desktop size, the window size will be clipped. Are you sure to use this window size",
|
"if the window size exceeds the desktop size, the window size will be clipped. Are you sure to use this window size",
|
||||||
hour_2_: "hour",
|
hour_2_: "hour",
|
||||||
|
"system setting": "System",
|
||||||
|
"grid setting": "Layout",
|
||||||
|
subtitle: "OSD",
|
||||||
|
"file manage": "Explorer",
|
||||||
|
rename: "Rename",
|
||||||
|
_copy2: "Copy",
|
||||||
|
_cut2: "Cut",
|
||||||
|
delete: "Delete",
|
||||||
|
"local disk": "Local Disk",
|
||||||
|
back: "Back",
|
||||||
|
forward: "Forward",
|
||||||
|
refresh: "Refresh",
|
||||||
|
paste: "Paste",
|
||||||
|
"create folder": "Create Folder",
|
||||||
|
"upload file": "Upload File",
|
||||||
|
"file count": "File Count",
|
||||||
|
"directoriy count": "Directoriy Count",
|
||||||
|
"free space": "Free Space",
|
||||||
|
"file size": "File Size",
|
||||||
|
"last edit time": "Last Edit Time",
|
||||||
|
operator: "Operator",
|
||||||
|
"file name": "File Name",
|
||||||
|
"wall row": "Wall Row",
|
||||||
|
"wall col": "Wall Col",
|
||||||
|
cancel: "Cancel",
|
||||||
|
accept: "Accept",
|
||||||
|
Cancel: "Cancel",
|
||||||
|
Accept: "Accept",
|
||||||
|
"move speed": "Move Speed",
|
||||||
|
"y offset": "Y Offset",
|
||||||
|
"pos x": "X Position",
|
||||||
|
width: "Width",
|
||||||
|
height: "Height",
|
||||||
|
enable: "Enable",
|
||||||
|
disable: "Disable",
|
||||||
|
"enable subtitle": "Enable OSD",
|
||||||
|
edit: "Edit",
|
||||||
|
add: "Add",
|
||||||
|
command: "Command",
|
||||||
|
"serial port setting": "RS232 Setting",
|
||||||
|
"baud rate": "Baud Rate",
|
||||||
|
"character size": "Character Size",
|
||||||
|
parity: "Parity",
|
||||||
|
"stop bits": "Stop Bits",
|
||||||
|
revert: "Revert",
|
||||||
|
submit: "Submit",
|
||||||
|
"add group": "Add Group",
|
||||||
|
mode: "Mode",
|
||||||
|
"update to current window list": "Update To Current Window List",
|
||||||
|
"add mode item": "Add Mode Item",
|
||||||
|
"signal source": "Signal",
|
||||||
|
"add signal source item": "Add Signal Item",
|
||||||
|
"lossy picture quality": "Lossy Picture Quality",
|
||||||
|
"lossless picture quality": "Lossless Picture Quality",
|
||||||
|
"signal polling": "Loop Signal",
|
||||||
|
"add polling": "Add Loop Signal",
|
||||||
|
plan: "Mode Plan",
|
||||||
|
"add plan item": "Add Mode Plan Item",
|
||||||
|
"set power on start": "Set Power On Start",
|
||||||
|
"parent group": "Parent Group",
|
||||||
|
"group name": "Group Name",
|
||||||
|
"add signal source": "Add Signal",
|
||||||
|
"edit signal source": "Edit Signal",
|
||||||
|
"signal source name": "Signal Name",
|
||||||
|
"signal source type": "Signal Type",
|
||||||
|
"file path": "File Path",
|
||||||
|
"multimedia file": "Multimedia File",
|
||||||
|
"new signal source": "New Signal",
|
||||||
|
"polling setting": "Loop Signal Setting",
|
||||||
|
"polling name": "Loop Signal Name",
|
||||||
|
"polling data": "Loop Signal Data",
|
||||||
|
delay: "Delay",
|
||||||
|
"add row": "Add Row",
|
||||||
|
"new polling": "New Loop Signal",
|
||||||
|
"add mode": "Add Mode",
|
||||||
|
"edit mode": "Edit Mode",
|
||||||
|
"mode name": "Mode Name",
|
||||||
|
"mode index": "Mode Index",
|
||||||
|
"add plan": "Add Mode Plan",
|
||||||
|
"edit plan": "Edit Mode Plan",
|
||||||
|
"plan name": "Mode Plan Name",
|
||||||
|
"plan data": "Mode Plan Data",
|
||||||
|
"play list": "Play List",
|
||||||
|
"close and reset": "Close And Reset",
|
||||||
|
"close and save": "Close And Save",
|
||||||
|
"select file": "Select File",
|
||||||
|
"background image setting": "Background",
|
||||||
|
"database import": "Import",
|
||||||
|
"database export": "Export",
|
||||||
|
upgrade: "Upgrade",
|
||||||
|
"register device": "Register Device",
|
||||||
|
about: "About",
|
||||||
|
function: "Function",
|
||||||
|
"output board": "Output Board",
|
||||||
|
commit: "Commit",
|
||||||
|
"mirroring output": "Mirroring Output",
|
||||||
|
language: "Language",
|
||||||
|
chinese: "Chinese",
|
||||||
|
english: "English",
|
||||||
|
"device info": "Device Info",
|
||||||
|
restart: "Restart",
|
||||||
|
"volume down": "Volume Down",
|
||||||
|
"volume up": "Volume Up",
|
||||||
|
mute: "Mute",
|
||||||
|
unmute: "UnMute",
|
||||||
|
"play prev": "Play Prev",
|
||||||
|
"play next": "Play Next",
|
||||||
|
play: "Play",
|
||||||
|
pause: "Pause",
|
||||||
|
"replace window": "Replace Window",
|
||||||
|
"close this window": "Close This Window",
|
||||||
|
"close other windows": "Close Other Windows",
|
||||||
|
"start polling": "Start Loop Signal",
|
||||||
|
"desktop width": "Desktop Width",
|
||||||
|
"desktop height": "Desktop Height",
|
||||||
|
"client version": "Client Version",
|
||||||
|
"server version": "Server Version",
|
||||||
|
"server commit": "Server Commit",
|
||||||
|
"server branch name": "Server Branch Name",
|
||||||
|
"server build date": "Server Build Date",
|
||||||
|
"kernel version": "Kernel Version",
|
||||||
|
"rootfs version": "RootFS Version",
|
||||||
|
"upgrade type": "Upgrade Type",
|
||||||
|
rootfs: "RootFS",
|
||||||
|
software: "Software",
|
||||||
|
"select software upgrade file": "Select Software Upgrade File",
|
||||||
|
"select rootfs upgrade file": "Select Rootfs Upgrade File",
|
||||||
|
"network setting": "Network Setting",
|
||||||
|
"output setting": "Output Setting",
|
||||||
|
"timing task": "Timing Task",
|
||||||
|
other: "Other",
|
||||||
|
"auto ip": "Auto IP",
|
||||||
|
"ip address": "Ip Address",
|
||||||
|
gateway: "Gateway",
|
||||||
|
netmask: "Netmask",
|
||||||
|
"mac address": "MAC Address",
|
||||||
|
advanced: "Advanced",
|
||||||
|
"revert and exit": "Revert And Exit",
|
||||||
|
apply: "Apply",
|
||||||
|
"current real resolution": "Current Real Resolution",
|
||||||
|
"output type": "Output Type",
|
||||||
|
"target resolution": "Target Resolution",
|
||||||
|
"device rotate": "Device Rotate",
|
||||||
|
"output audio card": "Output Audio Card",
|
||||||
|
"use ntp": "Use Ntp",
|
||||||
|
"ntp server": "Ntp Server",
|
||||||
|
"ntp sync delay(S)": "Ntp Sync Delay(S)",
|
||||||
|
"time zone": "Time Zone",
|
||||||
|
exit: "Exit",
|
||||||
|
"add timing task": "Add Timing Task",
|
||||||
|
name: "Name",
|
||||||
|
"task type": "Task Type",
|
||||||
|
time: "Time",
|
||||||
|
loop: "Loop",
|
||||||
|
"timing cycle": "Timing Exexute",
|
||||||
|
monday: "Monday",
|
||||||
|
tuesday: "Turesday",
|
||||||
|
wednsday: "Wednsday",
|
||||||
|
thursday: "Thursday",
|
||||||
|
friday: "Friday",
|
||||||
|
saturday: "Saturday",
|
||||||
|
sunday: "Sunday",
|
||||||
|
tf_card: "TF CARD",
|
||||||
|
usb1: "USB1",
|
||||||
|
usb2: "usb2",
|
||||||
|
usb3: "usb3",
|
||||||
|
usb4: "usb4",
|
||||||
|
usb5: "usb5",
|
||||||
|
usb6: "usb6",
|
||||||
|
usb7: "usb7",
|
||||||
|
usb8: "usb8",
|
||||||
|
usb9: "usb9",
|
||||||
};
|
};
|
||||||
|
|
|
@ -441,7 +441,6 @@ export default {
|
||||||
"file count": "文件数量",
|
"file count": "文件数量",
|
||||||
"directoriy count": "文件夹数量",
|
"directoriy count": "文件夹数量",
|
||||||
"free space": "剩余空间",
|
"free space": "剩余空间",
|
||||||
"center contorl": "中控",
|
|
||||||
"power on": "开机",
|
"power on": "开机",
|
||||||
"power off": "关机",
|
"power off": "关机",
|
||||||
"center control": "中控",
|
"center control": "中控",
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
>
|
>
|
||||||
<q-tab
|
<q-tab
|
||||||
name="signal_source"
|
name="signal_source"
|
||||||
|
no-caps
|
||||||
icon="img:pad/signal_source_tab_icon.png"
|
icon="img:pad/signal_source_tab_icon.png"
|
||||||
:label="$t('signal source')"
|
:label="$t('signal source')"
|
||||||
/>
|
/>
|
||||||
|
@ -28,6 +29,7 @@
|
||||||
|
|
||||||
<q-tab
|
<q-tab
|
||||||
name="singal_polling"
|
name="singal_polling"
|
||||||
|
no-caps
|
||||||
icon="img:pad/polling_tab_icon.png"
|
icon="img:pad/polling_tab_icon.png"
|
||||||
:label="$t('signal polling')"
|
:label="$t('signal polling')"
|
||||||
/>
|
/>
|
||||||
|
@ -35,6 +37,7 @@
|
||||||
|
|
||||||
<q-tab
|
<q-tab
|
||||||
name="mode"
|
name="mode"
|
||||||
|
no-caps
|
||||||
icon="img:pad/mode_tab_icon.png"
|
icon="img:pad/mode_tab_icon.png"
|
||||||
:label="$t('mode')"
|
:label="$t('mode')"
|
||||||
/>
|
/>
|
||||||
|
@ -42,6 +45,7 @@
|
||||||
|
|
||||||
<q-tab
|
<q-tab
|
||||||
name="plan"
|
name="plan"
|
||||||
|
no-caps
|
||||||
icon="img:pad/plan_tab_icon.png"
|
icon="img:pad/plan_tab_icon.png"
|
||||||
:label="$t('plan')"
|
:label="$t('plan')"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -10,8 +10,8 @@
|
||||||
narrow-indicator
|
narrow-indicator
|
||||||
style="color: red"
|
style="color: red"
|
||||||
>
|
>
|
||||||
<q-tab name="signal_source" :label="$t('signal source')" />
|
<q-tab no-caps name="signal_source" :label="$t('signal source')" />
|
||||||
<q-tab name="polling" :label="$t('signal polling')" />
|
<q-tab no-caps name="polling" :label="$t('signal polling')" />
|
||||||
</q-tabs>
|
</q-tabs>
|
||||||
<q-separator />
|
<q-separator />
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
align="justify"
|
align="justify"
|
||||||
narrow-indicator
|
narrow-indicator
|
||||||
>
|
>
|
||||||
<q-tab name="mode" :label="$t('mode')" />
|
<q-tab no-caps name="mode" :label="$t('mode')" />
|
||||||
<q-tab name="plan" :label="$t('plan')" />
|
<q-tab no-caps name="plan" :label="$t('plan')" />
|
||||||
</q-tabs>
|
</q-tabs>
|
||||||
<q-separator />
|
<q-separator />
|
||||||
|
|
||||||
|
|
|
@ -236,7 +236,7 @@
|
||||||
flat
|
flat
|
||||||
stack
|
stack
|
||||||
icon="img:new_icon/center_control.png"
|
icon="img:new_icon/center_control.png"
|
||||||
:label="$t('center contorl')"
|
:label="$t('center control')"
|
||||||
class="q-mr-sm"
|
class="q-mr-sm"
|
||||||
@click="$refs.center_control_dialog.showDialog()"
|
@click="$refs.center_control_dialog.showDialog()"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue