【add】枚举和双语文件的整理

This commit is contained in:
fengchenchen
2023-08-16 09:50:45 +08:00
parent 74ac8c07d0
commit 9cc5f6443e
6 changed files with 175 additions and 24 deletions
+4 -7
View File
@@ -1,3 +1,6 @@
const system = require('./system/en.js')
module.exports = {
// 共用
pleaseSelect: 'Please Select ',
@@ -331,11 +334,5 @@ module.exports = {
file: 'File'
},
// 系统管理
system: {
// 标签管理
tag: {
tagItemManagement: '标签项管理',
labelContentManagement: '标签内容管理'
}
}
system
}
+22
View File
@@ -0,0 +1,22 @@
module.exports = {
// 标签管理
tag: {
tagItemManagement: '标签项管理',
labelContentManagement: '标签内容管理',
attributeName: '属性名称',
attributeNameEnglish: '英文名称',
attributeType: '属性类型',
fieldLength: '字段长度',
displayOrder: '展示顺序',
showArea: '展示区域',
exhibitionAreaManagement: '展示区域管理',
labelName: '标签名称',
labelType: '标签类型',
essentialInformation: '基本信息',
domesticLaws: '国内法规',
foreignStandards: '海外标准',
enterpriseStandards: '企业标准',
clauseSplitting: '条款拆分'
}
}
+22
View File
@@ -0,0 +1,22 @@
module.exports = {
// 标签管理
tag: {
tagItemManagement: '标签项管理',
labelContentManagement: '标签内容管理',
attributeName: '属性名称',
attributeNameEnglish: '英文名称',
attributeType: '属性类型',
fieldLength: '字段长度',
displayOrder: '展示顺序',
showArea: '展示区域',
exhibitionAreaManagement: '展示区域管理',
labelName: '标签名称',
labelType: '标签类型',
essentialInformation: '基本信息',
domesticLaws: '国内法规',
foreignStandards: '海外标准',
enterpriseStandards: '企业标准',
clauseSplitting: '条款拆分'
}
}
+4 -17
View File
@@ -1,3 +1,5 @@
const system = require('./system/zh.js')
module.exports = {
// 共用
pleaseSelect: '请选择',
@@ -333,7 +335,7 @@ module.exports = {
jpnArticle: 'JPN Article',
gb: 'GB',
gbt: 'GB/T',
gso: 'GSO',
gso: 'GSO'
}
},
// 标准选择器
@@ -354,20 +356,5 @@ module.exports = {
file: '文件'
},
// 系统管理
system: {
// 标签管理
tag: {
tagItemManagement: '标签项管理',
labelContentManagement: '标签内容管理',
attributeName: '属性名称',
attributeNameEnglish: '英文名称',
attributeType: '属性类型',
fieldLength: '字段长度',
displayOrder: '展示顺序',
showArea: '展示区域',
exhibitionAreaManagement: '展示区域管理',
labelName: '标签名称',
labelType: '标签类型',
}
}
system
}