Skip to content

Commit

Permalink
fix: 空间配置-名称国际化 --story=131115479
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 19974
  • Loading branch information
ywywZhou committed Oct 9, 2024
1 parent 4316885 commit 63c53bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions frontend/src/config/i18n/cn.js
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,7 @@ const cn = {
流程的入参: '流程的入参',
scopeType: '指对应资源在接入平台所属的作用域范围的类型。如该资源属于业务 1,则该字段的值可设为"project"。',
scopeValue: '指对应资源在接入平台所属的作用域范围的值。如该资源属于业务1,则该字段的值可设为"1"。',
名字: '名字',
};

export default cn;
1 change: 1 addition & 0 deletions frontend/src/config/i18n/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,7 @@ const en = {
流程的入参: 'Input Parameters of the Process',
scopeType: 'Indicates the type of the scope to which the corresponding resource belongs in the access platform. For example, if the resource belongs to Business 1, the value of this field can be set to "project".',
scopeValue: 'Indicates the value of the scope to which the corresponding resource belongs in the access platform. For example, if the resource belongs to Business 1, the value of this field can be set to "1".',
名字: 'Name',
};

export default en;
2 changes: 1 addition & 1 deletion frontend/src/views/admin/Space/SpaceConfig/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
const TABLE_FIELDS = [
{
id: 'name',
label: 'Name',
label: i18n.t('名字'),
},
{
id: 'desc',
Expand Down

0 comments on commit 63c53bd

Please sign in to comment.