Browse Source

correct names

pull/3/MERGE
曹聚阳 4 years ago
parent
commit
cc2068bcec
  1. 12
      dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue
  2. 2
      dolphinscheduler-ui/src/js/module/i18n/locale/en_US.js
  3. 2
      dolphinscheduler-ui/src/js/module/i18n/locale/zh_CN.js

12
dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue

@ -129,8 +129,8 @@
shape="circle"
size="xsmall"
data-toggle="tooltip"
:title="$t('Start From Force Success')"
@click="_startFromForceSuccess(item,$index)"
:title="$t('Resume From Forced Success')"
@click="_resumeFromForcedSuccess(item,$index)"
icon="ans-icon-notice-empty"
:disabled="item.state !== 'FORCED_SUCCESS'"></x-button>
<x-button type="error"
@ -227,7 +227,7 @@
disabled="true">
</x-button>
<!--Start from forced success-->
<!--Resume from forced success-->
<x-button
v-show="buttonType === 'forced'"
type="success"
@ -449,10 +449,10 @@
}
},
/**
* Start from force success
* @param START_FROM_FORCED_SUCCESS
* Resume from forced success
* @param RESUME_FROM_FORCED_SUCCESS
*/
_startFromForceSuccess (item, index) {
_resumeFromForcedSuccess (item, index) {
this._countDownFn({
id: item.id,
executeType: 'RESUME_FROM_FORCED_SUCCESS',

2
dolphinscheduler-ui/src/js/module/i18n/locale/en_US.js

@ -33,7 +33,7 @@ export default {
'View history': 'View history',
'View log': 'View log',
'Force success': 'Force success',
'Start From Force Success': 'Start From Force Success',
'Resume From Forced Success': 'Resume From Forced Success',
'Enter this child node': 'Enter this child node',
'Node name': 'Node name',
'Run flag': 'Run flag',

2
dolphinscheduler-ui/src/js/module/i18n/locale/zh_CN.js

@ -33,7 +33,7 @@ export default {
'View history': '查看历史',
'View log': '查看日志',
'Force success': '强制成功',
'Start From Force Success': '从强制成功处继续',
'Resume From Forced Success': '从强制成功处继续',
'Enter this child node': '进入该子节点',
'Node name': '节点名称',
'Please enter name (required)': '请输入名称(必填)',

Loading…
Cancel
Save