[update] 修改翻译字段

This commit is contained in:
lideqin
2024-07-31 11:16:47 +08:00
parent 1bfc951480
commit 8bc3d4d030
6 changed files with 11 additions and 8 deletions
+4 -4
View File
@@ -141,9 +141,9 @@ module.exports = {
fileDownloadFail: 'File download failure',
pleaseEnterTreeSystem: 'Please enter the tree system',
project: 'Project',
standardNumber: 'Standard Number',
standardName: 'Standard Name',
standardNumOrName: 'Standard Number Or Standard Name',
standardNumber: 'Regulation No.',
standardName: 'Regulation Name',
standardNumOrName: 'Regulation No. Or Regulation Name',
fileImportError: 'File import error',
flowCenter: 'Process Center——',
processInformation: 'Process Information',
@@ -183,7 +183,7 @@ module.exports = {
oneTableAdded: 'Only one table can be added',
addATable: 'Please add a form',
select: 'Select',
attach: 'attachment',
attach: 'Annex',
checkedAll: 'select all',
pleaseCompleteTableInfo: 'Please complete the form information',
node: 'Node',
@@ -18,6 +18,7 @@ module.exports = {
rectificationCost: 'Rectification Costs',
sharedWithOtherProjects: 'Commonality',
costOfThisItemAfterSharing: 'Expenses after Sharing',
remarks: 'Note',
supportingMaterial: 'Supporting Files'
},
// 不符合项库
@@ -18,6 +18,7 @@ module.exports = {
rectificationCost: '整改费用',
sharedWithOtherProjects: '与其他项目共用性',
costOfThisItemAfterSharing: '共用后本项目所需费用',
remarks: '备注',
supportingMaterial: '佐证材料'
},
// 不符合项库
@@ -82,8 +82,8 @@ module.exports = {
// 市场清单详情列表字段
marketListField: {
standardEnglishName: 'Regulation English Name',
newProductionVehicleImplementationDate: 'New Certified Vehicle Implementation Date',
newCertifiedVehicleImplementationDate: 'New Production Vehicle Implementation Date',
newProductionVehicleImplementationDate: 'New Production Vehicle Implementation Date',
newCertifiedVehicleImplementationDate: 'New Certified Vehicle Implementation Date',
dateOfRegistration: 'Registration Date',
applicableCountryRegion: 'Country/Region',
applicableVehicleType: 'Vehicle Catagory',
@@ -220,7 +220,7 @@ export default {
scopedSlots: { customRender: 'text' }
},
{ // 备注
title: this.$t('remarks'),
title: this.$t('regulatoryComplianceAssessmentDatabase.assessmentLibrary.remarks'),
align: 'center',
width: 180,
dataIndex: 'remark',
@@ -30,7 +30,8 @@
</div>
<div class="table-operator">
<!--新增-->
<a-button icon="plus" type="primary" v-if="record.isReadOnly === IsReadOnlyEnums.configurable.value || record.isReadOnly === IsReadOnlyEnums.subConfigurable.value" @click="handleAdd" v-has="'sys:dict:operation'">{{ $t('newlyAdded') }}</a-button>
<!-- <a-button icon="plus" type="primary" v-if="record.isReadOnly === IsReadOnlyEnums.configurable.value || record.isReadOnly === IsReadOnlyEnums.subConfigurable.value" @click="handleAdd" v-has="'sys:dict:operation'">{{ $t('newlyAdded') }}</a-button>-->
<a-button icon="plus" type="primary" @click="handleAdd" v-has="'sys:dict:operation'">{{ $t('newlyAdded') }}</a-button>
<!--批量删除-->
<a-button type="primary" icon="delete" ghost v-if="record.isReadOnly === IsReadOnlyEnums.configurable.value || record.isReadOnly === IsReadOnlyEnums.subConfigurable.value" @click="batchDel" v-has="'sys:dict:operation'">{{ $t('batchDelete') }}</a-button>
</div>