chore(i18n): add missing translation for "edition" in about dialog (#2222)

This commit is contained in:
guqing 2025-02-10 19:04:04 +08:00 committed by GitHub
parent 415748a0c1
commit d31fed92d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 19 additions and 5 deletions

View File

@ -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>

View File

@ -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',

View File

@ -10,7 +10,11 @@ export default {
about: {
title: '关于',
expiredTime: '到期时间',
edition: '版本',
edition: {
label: '版本',
community: '社区版',
professional: '专业版'
},
version: '版本号',
serialNo: '序列号',
remark: '备注',

View File

@ -11,7 +11,11 @@ export default {
about: {
title: '關於',
expiredTime: '到期時間',
edition: '版本',
edition: {
label: '版本',
community: '社群版',
professional: '專業版'
},
version: '版本號',
serialNo: '序列號',
remark: '備註',