fix(测试计划): 修复测试计划批量操作选中数据项文案统一
This commit is contained in:
parent
dc98393a9a
commit
4e46afa5e9
|
@ -194,4 +194,5 @@ export default {
|
|||
'common.executionResult': 'Execution result',
|
||||
'common.expandAllSubModule': 'Expand all submodules',
|
||||
'common.collapseAllSubModule': 'Collapse all submodules',
|
||||
'common.selectedCount': '{count} data selected',
|
||||
};
|
||||
|
|
|
@ -193,4 +193,5 @@ export default {
|
|||
'common.config': '配置',
|
||||
'common.expandAllSubModule': '展开全部子模块',
|
||||
'common.collapseAllSubModule': '收起全部子模块',
|
||||
'common.selectedCount': '(已选 {count} 项数据)',
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{{ t('common.batchMove') }}
|
||||
<div class="ml-1 text-[var(--color-text-4)]">
|
||||
{{
|
||||
t('testPlan.testPlanIndex.selectedCount', {
|
||||
t('common.selectedCount', {
|
||||
count: props.count,
|
||||
})
|
||||
}}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{{ t('common.edit') }}
|
||||
<div class="text-[var(--color-text-4)]">
|
||||
{{
|
||||
t('case.batchModalSubTitle', {
|
||||
t('common.selectedCount', {
|
||||
count: props.batchParams.currentSelectCount,
|
||||
})
|
||||
}}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<div>
|
||||
{{ props.mode === 'move' ? t('common.batchMove') : t('common.batchCopy') }}
|
||||
<span class="ml-[4px] text-[var(--color-text-4)]">
|
||||
{{ t('testPlan.testPlanIndex.selectedCount', { count: props.currentSelectCount }) }}
|
||||
{{ t('common.selectedCount', { count: props.currentSelectCount }) }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
{{ t('testPlan.featureCase.batchChangeExecutor') }}
|
||||
<div class="ml-1 text-[var(--color-text-4)]">
|
||||
{{
|
||||
t('testPlan.testPlanIndex.selectedCount', {
|
||||
t('common.selectedCount', {
|
||||
count: props.count,
|
||||
})
|
||||
}}
|
||||
|
|
|
@ -97,7 +97,7 @@
|
|||
{{ t('testPlan.testPlanIndex.batchExecution') }}
|
||||
<div class="text-[var(--color-text-4)]">
|
||||
{{
|
||||
t('testPlan.testPlanIndex.selectedCount', {
|
||||
t('common.selectedCount', {
|
||||
count: batchParams.currentSelectCount || tableSelected.length,
|
||||
})
|
||||
}}
|
||||
|
|
|
@ -43,7 +43,6 @@ export default {
|
|||
'testPlan.testPlanIndex.confirmBatchArchivePlan': 'Are you sure to archive {count} test plans?',
|
||||
'testPlan.testPlanIndex.confirmBatchArchivePlanContent':
|
||||
'Only completed test plans can be archived! \n after filing, implement information no longer update and editing, data unrecoverable, please careful operation.',
|
||||
'testPlan.testPlanIndex.selectedCount': '{count} data selected',
|
||||
'testPlan.testPlanIndex.createScheduledTask': 'Create Scheduled Task',
|
||||
'testPlan.testPlanIndex.updateScheduledTask': 'Update Scheduled Task',
|
||||
'testPlan.testPlanIndex.deleteScheduledTask': 'Delete Scheduled Task',
|
||||
|
|
|
@ -41,7 +41,6 @@ export default {
|
|||
'testPlan.testPlanIndex.confirmBatchArchivePlan': '确认归档 {count} 个测试计划吗?',
|
||||
'testPlan.testPlanIndex.confirmBatchArchivePlanContent':
|
||||
'仅 已完成 测试计划可归档!\r\n 归档后,执行信息不再更新且不可编辑,数据不可恢复,请谨慎操作!',
|
||||
'testPlan.testPlanIndex.selectedCount': '(已选 {count} 项数据)',
|
||||
'testPlan.testPlanIndex.createScheduledTask': '创建定时任务',
|
||||
'testPlan.testPlanIndex.updateScheduledTask': '更新定时任务',
|
||||
'testPlan.testPlanIndex.deleteScheduledTask': '删除定时任务',
|
||||
|
|
Loading…
Reference in New Issue