forked from github/dataease
Merge remote-tracking branch 'origin/main' into main
This commit is contained in:
commit
a5f088c1ed
@ -198,30 +198,30 @@ authsource_configuration_is_null=Authentication source configuration cannot be e
|
||||
删除菜单=Delete Menu
|
||||
删除角色=Delete Role
|
||||
删除连接=Delete Connection
|
||||
参数管理=Parameter Management
|
||||
参数管理=Parameter
|
||||
数据源=Data Source
|
||||
数据源表单=Data source form
|
||||
数据集=Data Set
|
||||
权限管理=Authority Management
|
||||
权限管理=Authority
|
||||
校验连接=Verify Connection
|
||||
模板管理=Template Management
|
||||
用户管理=User Management
|
||||
模板管理=Template
|
||||
用户管理=User
|
||||
用户表单=User Form
|
||||
系统管理=System management
|
||||
组织管理=Organization management
|
||||
系统管理=System
|
||||
组织管理=Organization
|
||||
组织表单=Organization Form
|
||||
编辑用户=Edit User
|
||||
编辑组织=Edit Organization
|
||||
编辑菜单=Edit Menu
|
||||
编辑角色=Edit Role
|
||||
编辑连接=Edit Connection
|
||||
菜单管理=Menu management
|
||||
菜单管理=Menu
|
||||
菜单表单=Menu Form
|
||||
视图=View
|
||||
角色管理=Role management
|
||||
角色管理=Role
|
||||
角色表单=Role Form
|
||||
重置密码=Reset Password
|
||||
|
||||
关于=About Us
|
||||
i18n_auth_view=View
|
||||
i18n_auth_use=Use
|
||||
i18n_auth_export=Export
|
||||
|
@ -222,7 +222,7 @@ authsource_configuration_is_null=认证源配置不能为空
|
||||
角色管理=角色管理
|
||||
角色表单=角色表单
|
||||
重置密码=重置密码
|
||||
|
||||
关于=关于
|
||||
i18n_auth_view=查看
|
||||
i18n_auth_use=使用
|
||||
i18n_auth_export=导出
|
||||
|
@ -222,7 +222,7 @@ authsource_configuration_is_null=認證源配置不能為空
|
||||
角色管理=角色管理
|
||||
角色表单=角色表單
|
||||
重置密码=重置密碼
|
||||
|
||||
关于=關於
|
||||
i18n_auth_view=查看
|
||||
i18n_auth_use=使用
|
||||
i18n_auth_export=導出
|
||||
|
@ -916,5 +916,18 @@ export default {
|
||||
use: 'Use',
|
||||
export: 'Export',
|
||||
manage: 'Manage'
|
||||
},
|
||||
about: {
|
||||
auth_to: 'Authorized to',
|
||||
invalid_license: 'Invalid License',
|
||||
update_license: 'Update License',
|
||||
expiration_time: 'Expiration Time',
|
||||
expirationed: '(Expired)',
|
||||
auth_num: 'Authorized quantity',
|
||||
version: 'Version',
|
||||
version_num: 'Version number',
|
||||
standard: 'Standard',
|
||||
enterprise: 'Enterprise',
|
||||
suport: 'Get technical support'
|
||||
}
|
||||
}
|
||||
|
@ -916,5 +916,18 @@ export default {
|
||||
use: '使用',
|
||||
export: '導出',
|
||||
manage: '管理'
|
||||
},
|
||||
about: {
|
||||
auth_to: '授權給',
|
||||
invalid_license: 'License 無效',
|
||||
update_license: '更新 License',
|
||||
expiration_time: '過期時間',
|
||||
expirationed: '(已過期)',
|
||||
auth_num: '授權數量',
|
||||
version: '版本',
|
||||
version_num: '版本號',
|
||||
standard: '標準版',
|
||||
enterprise: '企業版',
|
||||
suport: '獲取技術支持'
|
||||
}
|
||||
}
|
||||
|
@ -918,5 +918,18 @@ export default {
|
||||
use: '使用',
|
||||
export: '导出',
|
||||
manage: '管理'
|
||||
},
|
||||
about: {
|
||||
auth_to: '授权给',
|
||||
invalid_license: 'License 无效',
|
||||
update_license: '更新 License',
|
||||
expiration_time: '过期时间',
|
||||
expirationed: '(已过期)',
|
||||
auth_num: '授权数量',
|
||||
version: '版本',
|
||||
version_num: '版本号',
|
||||
standard: '标准版',
|
||||
enterprise: '企业版',
|
||||
suport: '获取技术支持'
|
||||
}
|
||||
}
|
||||
|
@ -7,35 +7,35 @@
|
||||
<img src="@/assets/DataEase-white.png" alt="" style="height: 80px;width: 400px;padding-top: 15px;">
|
||||
</div>
|
||||
<div class="license-content">
|
||||
<div v-if="license.status === 'Fail'">License 无效</div>
|
||||
<div v-if="license.status === 'Fail'">{{ $t('about.invalid_license') }}</div>
|
||||
<div v-if="license.status !== 'Fail'">
|
||||
<table>
|
||||
<tr>
|
||||
<th>授权给</th>
|
||||
<th>{{ $t('about.auth_to') }}</th>
|
||||
<td>{{ license.corporation }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>过期时间</th>
|
||||
<th>{{ $t('about.expiration_time') }}</th>
|
||||
<td>
|
||||
<label v-if="license.status === 'expired'" style="color: red">{{ license.expired }} (已过期)</label>
|
||||
<label v-if="license.status === 'expired'" style="color: red">{{ license.expired }} {{ $t('about.expirationed') }}</label>
|
||||
<label v-if="license.status === 'valid'">{{ license.expired }}</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>授权数量</th>
|
||||
<th>{{ $t('about.auth_num') }}</th>
|
||||
<td>{{ license.count }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>版本</th>
|
||||
<th>{{ $t('about.version') }}</th>
|
||||
<td>
|
||||
<span v-if="license.edition">
|
||||
<span v-if="license.edition === 'Standard'">标准版</span>
|
||||
<span v-if="license.edition === 'Enterprise'">企业版</span>
|
||||
<span v-if="license.edition === 'Standard'">{{ $t('about.standard') }}</span>
|
||||
<span v-if="license.edition === 'Enterprise'">{{ $t('about.enterprise') }}</span>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>版本号</th>
|
||||
<th>{{ $t('about.version_num') }}</th>
|
||||
<td>
|
||||
<span>{{ build }}</span>
|
||||
</td>
|
||||
@ -54,11 +54,11 @@
|
||||
name="file"
|
||||
:before-upload="beforeUpload"
|
||||
>
|
||||
<a class="md-primary pointer">更新 License</a>
|
||||
<a class="md-primary pointer">{{ $t('about.update_license') }}</a>
|
||||
|
||||
</el-upload>
|
||||
|
||||
<a class="md-primary pointer" @click="support">获取技术支持</a>
|
||||
<a class="md-primary pointer" @click="support">{{ $t('about.suport') }}</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user