mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 02:51:14 +00: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:
@@ -687,19 +687,21 @@ export default defineComponent({
|
||||
{
|
||||
interpolate: {
|
||||
defaultValue: this.defaultValues.saveExecutionProgress
|
||||
? this.$locale.baseText('workflowSettings.saveExecutionProgressOptions.yes')
|
||||
: this.$locale.baseText('workflowSettings.saveExecutionProgressOptions.no'),
|
||||
? this.$locale.baseText('workflowSettings.saveExecutionProgressOptions.save')
|
||||
: this.$locale.baseText(
|
||||
'workflowSettings.saveExecutionProgressOptions.doNotSave',
|
||||
),
|
||||
},
|
||||
},
|
||||
),
|
||||
},
|
||||
{
|
||||
key: true,
|
||||
value: this.$locale.baseText('workflowSettings.saveExecutionProgressOptions.yes'),
|
||||
value: this.$locale.baseText('workflowSettings.saveExecutionProgressOptions.save'),
|
||||
},
|
||||
{
|
||||
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', {
|
||||
interpolate: {
|
||||
defaultValue: this.defaultValues.saveManualExecutions
|
||||
? this.$locale.baseText('workflowSettings.saveManualOptions.yes')
|
||||
: this.$locale.baseText('workflowSettings.saveManualOptions.no'),
|
||||
? this.$locale.baseText('workflowSettings.saveManualOptions.save')
|
||||
: this.$locale.baseText('workflowSettings.saveManualOptions.doNotSave'),
|
||||
},
|
||||
}),
|
||||
});
|
||||
this.saveManualOptions.push({
|
||||
key: true,
|
||||
value: this.$locale.baseText('workflowSettings.saveManualOptions.yes'),
|
||||
value: this.$locale.baseText('workflowSettings.saveManualOptions.save'),
|
||||
});
|
||||
this.saveManualOptions.push({
|
||||
key: false,
|
||||
value: this.$locale.baseText('workflowSettings.saveManualOptions.no'),
|
||||
value: this.$locale.baseText('workflowSettings.saveManualOptions.doNotSave'),
|
||||
});
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user