mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
fix(editor): Standardize save text (#7093)
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: Jonathan Bennetts <jonathan.bennetts@gmail.com>
This commit is contained in:
parent
e26553f198
commit
58b3492b0d
|
@ -687,19 +687,21 @@ export default defineComponent({
|
||||||
{
|
{
|
||||||
interpolate: {
|
interpolate: {
|
||||||
defaultValue: this.defaultValues.saveExecutionProgress
|
defaultValue: this.defaultValues.saveExecutionProgress
|
||||||
? this.$locale.baseText('workflowSettings.saveExecutionProgressOptions.yes')
|
? this.$locale.baseText('workflowSettings.saveExecutionProgressOptions.save')
|
||||||
: this.$locale.baseText('workflowSettings.saveExecutionProgressOptions.no'),
|
: this.$locale.baseText(
|
||||||
|
'workflowSettings.saveExecutionProgressOptions.doNotSave',
|
||||||
|
),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: true,
|
key: true,
|
||||||
value: this.$locale.baseText('workflowSettings.saveExecutionProgressOptions.yes'),
|
value: this.$locale.baseText('workflowSettings.saveExecutionProgressOptions.save'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: false,
|
key: false,
|
||||||
value: this.$locale.baseText('workflowSettings.saveExecutionProgressOptions.no'),
|
value: this.$locale.baseText('workflowSettings.saveExecutionProgressOptions.doNotSave'),
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
},
|
},
|
||||||
|
@ -710,18 +712,18 @@ export default defineComponent({
|
||||||
value: this.$locale.baseText('workflowSettings.saveManualOptions.defaultSave', {
|
value: this.$locale.baseText('workflowSettings.saveManualOptions.defaultSave', {
|
||||||
interpolate: {
|
interpolate: {
|
||||||
defaultValue: this.defaultValues.saveManualExecutions
|
defaultValue: this.defaultValues.saveManualExecutions
|
||||||
? this.$locale.baseText('workflowSettings.saveManualOptions.yes')
|
? this.$locale.baseText('workflowSettings.saveManualOptions.save')
|
||||||
: this.$locale.baseText('workflowSettings.saveManualOptions.no'),
|
: this.$locale.baseText('workflowSettings.saveManualOptions.doNotSave'),
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
this.saveManualOptions.push({
|
this.saveManualOptions.push({
|
||||||
key: true,
|
key: true,
|
||||||
value: this.$locale.baseText('workflowSettings.saveManualOptions.yes'),
|
value: this.$locale.baseText('workflowSettings.saveManualOptions.save'),
|
||||||
});
|
});
|
||||||
this.saveManualOptions.push({
|
this.saveManualOptions.push({
|
||||||
key: false,
|
key: false,
|
||||||
value: this.$locale.baseText('workflowSettings.saveManualOptions.no'),
|
value: this.$locale.baseText('workflowSettings.saveManualOptions.doNotSave'),
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -1733,12 +1733,12 @@
|
||||||
"workflowSettings.saveDataSuccessExecutionOptions.save": "@:_reusableBaseText.save",
|
"workflowSettings.saveDataSuccessExecutionOptions.save": "@:_reusableBaseText.save",
|
||||||
"workflowSettings.saveExecutionProgress": "Save execution progress",
|
"workflowSettings.saveExecutionProgress": "Save execution progress",
|
||||||
"workflowSettings.saveExecutionProgressOptions.defaultSave": "Default - {defaultValue}",
|
"workflowSettings.saveExecutionProgressOptions.defaultSave": "Default - {defaultValue}",
|
||||||
"workflowSettings.saveExecutionProgressOptions.no": "No",
|
"workflowSettings.saveExecutionProgressOptions.doNotSave": "Do not save",
|
||||||
"workflowSettings.saveExecutionProgressOptions.yes": "Yes",
|
"workflowSettings.saveExecutionProgressOptions.save": "@:_reusableBaseText.save",
|
||||||
"workflowSettings.saveManualExecutions": "Save manual executions",
|
"workflowSettings.saveManualExecutions": "Save manual executions",
|
||||||
"workflowSettings.saveManualOptions.defaultSave": "Default - {defaultValue}",
|
"workflowSettings.saveManualOptions.defaultSave": "Default - {defaultValue}",
|
||||||
"workflowSettings.saveManualOptions.no": "No",
|
"workflowSettings.saveManualOptions.doNotSave": "Do not save",
|
||||||
"workflowSettings.saveManualOptions.yes": "Yes",
|
"workflowSettings.saveManualOptions.save": "@:_reusableBaseText.save",
|
||||||
"workflowSettings.seconds": "seconds",
|
"workflowSettings.seconds": "seconds",
|
||||||
"workflowSettings.selectOption": "Select Option",
|
"workflowSettings.selectOption": "Select Option",
|
||||||
"workflowSettings.settingsFor": "Workflow settings for {workflowName} (#{workflowId})",
|
"workflowSettings.settingsFor": "Workflow settings for {workflowName} (#{workflowId})",
|
||||||
|
|
Loading…
Reference in a new issue