Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor(license): modify nodes usage to business node usage #533

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/i18n/admin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,11 @@ export default {
},
emailAddress: {
zh: '签发邮箱',
en: 'Issuance of email',
en: 'Issuing email',
},
nodeUsage: {
zh: '节点使用情况',
en: 'Nodes usage',
zh: '商业节点使用情况',
en: 'Business node usage',
},
tagUsage: {
zh: '点位使用情况',
Expand Down
2 changes: 1 addition & 1 deletion src/views/about/License.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const { currentLang } = useLang()
const hasLicense = computed(() => !!licenseData.value)

const labelWidth = computed(() => {
return currentLang.value === 'zh' ? '90px' : '120px'
return currentLang.value === 'zh' ? '120px' : '140px'
})

const pluginsStr = computed(() => {
Expand Down