mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -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: {
|
||||
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'),
|
||||
});
|
||||
},
|
||||
|
||||
|
|
|
@ -1733,12 +1733,12 @@
|
|||
"workflowSettings.saveDataSuccessExecutionOptions.save": "@:_reusableBaseText.save",
|
||||
"workflowSettings.saveExecutionProgress": "Save execution progress",
|
||||
"workflowSettings.saveExecutionProgressOptions.defaultSave": "Default - {defaultValue}",
|
||||
"workflowSettings.saveExecutionProgressOptions.no": "No",
|
||||
"workflowSettings.saveExecutionProgressOptions.yes": "Yes",
|
||||
"workflowSettings.saveExecutionProgressOptions.doNotSave": "Do not save",
|
||||
"workflowSettings.saveExecutionProgressOptions.save": "@:_reusableBaseText.save",
|
||||
"workflowSettings.saveManualExecutions": "Save manual executions",
|
||||
"workflowSettings.saveManualOptions.defaultSave": "Default - {defaultValue}",
|
||||
"workflowSettings.saveManualOptions.no": "No",
|
||||
"workflowSettings.saveManualOptions.yes": "Yes",
|
||||
"workflowSettings.saveManualOptions.doNotSave": "Do not save",
|
||||
"workflowSettings.saveManualOptions.save": "@:_reusableBaseText.save",
|
||||
"workflowSettings.seconds": "seconds",
|
||||
"workflowSettings.selectOption": "Select Option",
|
||||
"workflowSettings.settingsFor": "Workflow settings for {workflowName} (#{workflowId})",
|
||||
|
|
Loading…
Reference in a new issue