mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
🚚 Rename $i18n2 to $i
This commit is contained in:
@@ -32,7 +32,7 @@ export const workflowRun = mixins(
|
||||
// Do not start if the connection to server is not active
|
||||
// because then it can not receive the data as it executes.
|
||||
throw new Error(
|
||||
this.$i18n2.baseText('workflowRun.noActiveConnectionToTheServer'),
|
||||
this.$i.baseText('workflowRun.noActiveConnectionToTheServer'),
|
||||
);
|
||||
}
|
||||
|
||||
@@ -91,8 +91,8 @@ export const workflowRun = mixins(
|
||||
}
|
||||
|
||||
this.$showMessage({
|
||||
title: this.$i18n2.baseText('workflowRun.showMessage.title'),
|
||||
message: this.$i18n2.baseText('workflowRun.showMessage.message') + ':<br /> - ' + errorMessages.join('<br /> - '),
|
||||
title: this.$i.baseText('workflowRun.showMessage.title'),
|
||||
message: this.$i.baseText('workflowRun.showMessage.message') + ':<br /> - ' + errorMessages.join('<br /> - '),
|
||||
type: 'error',
|
||||
duration: 0,
|
||||
});
|
||||
@@ -204,8 +204,8 @@ export const workflowRun = mixins(
|
||||
this.$titleSet(workflow.name as string, 'ERROR');
|
||||
this.$showError(
|
||||
error,
|
||||
this.$i18n2.baseText('workflowRun.showError.title'),
|
||||
this.$i18n2.baseText('workflowRun.showError.message') + ':',
|
||||
this.$i.baseText('workflowRun.showError.title'),
|
||||
this.$i.baseText('workflowRun.showError.message') + ':',
|
||||
);
|
||||
return undefined;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user