mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
chore(i18n): add missing translation for "edition" in about dialog (#2222)
This commit is contained in:
parent
415748a0c1
commit
d31fed92d7
|
|
@ -23,7 +23,8 @@
|
|||
>
|
||||
</div>
|
||||
<div class="flex">
|
||||
<span class="label">{{ $t('layout.about.edition') }}</span><span>{{ user.showXpack() ? '专业版' : '社区版' }}</span>
|
||||
<span class="label">{{ $t('layout.about.edition.label') }}</span>
|
||||
<span>{{ user.showXpack() ? $t('layout.about.edition.professional') : $t('layout.about.edition.community') }}</span>
|
||||
</div>
|
||||
<div class="flex">
|
||||
<span class="label">{{ $t('layout.about.version') }}</span><span>{{ user.version }}</span>
|
||||
|
|
|
|||
|
|
@ -10,12 +10,17 @@ export default {
|
|||
about: {
|
||||
title: 'About',
|
||||
expiredTime: 'Expiration Date',
|
||||
edition: 'Edition',
|
||||
edition: {
|
||||
label: 'Edition',
|
||||
community: 'Community Edition',
|
||||
professional: 'Professional Edition'
|
||||
},
|
||||
version: 'Version',
|
||||
serialNo: 'Serial No.',
|
||||
remark: 'Remarks',
|
||||
update: 'Update',
|
||||
authorize: 'Authorized'
|
||||
authorize: 'Authorized',
|
||||
|
||||
},
|
||||
time: {
|
||||
daysLater: 'days later',
|
||||
|
|
|
|||
|
|
@ -10,7 +10,11 @@ export default {
|
|||
about: {
|
||||
title: '关于',
|
||||
expiredTime: '到期时间',
|
||||
edition: '版本',
|
||||
edition: {
|
||||
label: '版本',
|
||||
community: '社区版',
|
||||
professional: '专业版'
|
||||
},
|
||||
version: '版本号',
|
||||
serialNo: '序列号',
|
||||
remark: '备注',
|
||||
|
|
|
|||
|
|
@ -11,7 +11,11 @@ export default {
|
|||
about: {
|
||||
title: '關於',
|
||||
expiredTime: '到期時間',
|
||||
edition: '版本',
|
||||
edition: {
|
||||
label: '版本',
|
||||
community: '社群版',
|
||||
professional: '專業版'
|
||||
},
|
||||
version: '版本號',
|
||||
serialNo: '序列號',
|
||||
remark: '備註',
|
||||
|
|
|
|||
Loading…
Reference in New Issue