diff --git a/packages/editor-ui/src/components/CredentialsEdit.vue b/packages/editor-ui/src/components/CredentialsEdit.vue
index a69ad78e24..bc967e08e6 100644
--- a/packages/editor-ui/src/components/CredentialsEdit.vue
+++ b/packages/editor-ui/src/components/CredentialsEdit.vue
@@ -214,7 +214,7 @@ export default mixins(
this.$showMessage({
title: 'Credentials created',
- message: `The credential "${eventData.data.name}" got created!`,
+ message: `"${eventData.data.name}" credentials were successfully created!`,
type: 'success',
});
@@ -227,7 +227,7 @@ export default mixins(
this.$showMessage({
title: 'Credentials updated',
- message: `The credential "${eventData.data.name}" got updated!`,
+ message: `"${eventData.data.name}" credentials were successfully updated!`,
type: 'success',
});
diff --git a/packages/editor-ui/src/components/CredentialsInput.vue b/packages/editor-ui/src/components/CredentialsInput.vue
index 3d8edec3ec..27a4597331 100644
--- a/packages/editor-ui/src/components/CredentialsInput.vue
+++ b/packages/editor-ui/src/components/CredentialsInput.vue
@@ -44,19 +44,19 @@
- Not all required credential properties are filled
+ Enter all required properties
- Is connected
+ Connected
- Is NOT connected
+ Not connected
@@ -91,7 +91,7 @@
- Important!
+ Important
Add at least one node which has access to the credentials!
@@ -163,8 +163,8 @@ export default mixins(
isMinimized: true,
helpTexts: {
credentialsData: 'The credentials to set.',
- credentialsName: 'The name the credentials should be saved as. Use a name
which makes it clear to what exactly they give access to.
For credentials of an Email account that could be the Email address itself.',
- nodesWithAccess: 'The nodes which allowed to use this credentials.',
+ credentialsName: 'A recognizable label for the credentials. Descriptive names work
best here, so you can easily select it from a list later.',
+ nodesWithAccess: 'Nodes with access to these credentials.',
},
credentialDataTemp: null as ICredentialsDecryptedResponse | null,
nodesAccess: [] as string[],
@@ -256,7 +256,7 @@ export default mixins(
this.$showMessage({
title: 'Copied',
- message: `The callback URL got copied!`,
+ message: `Callback URL was successfully copied!`,
type: 'success',
});
},
@@ -401,7 +401,7 @@ export default mixins(
this.$showMessage({
title: 'Connected',
- message: 'Got connected!',
+ message: 'Connected successfully!',
type: 'success',
});
}
diff --git a/packages/editor-ui/src/components/CredentialsList.vue b/packages/editor-ui/src/components/CredentialsList.vue
index 758adf1a4c..061bfa7d1e 100644
--- a/packages/editor-ui/src/components/CredentialsList.vue
+++ b/packages/editor-ui/src/components/CredentialsList.vue
@@ -124,7 +124,7 @@ export default mixins(
try {
this.credentials = JSON.parse(JSON.stringify(this.$store.getters.allCredentials));
} catch (error) {
- this.$showError(error, 'Proble loading credentials', 'There was a problem loading the credentials:');
+ this.$showError(error, 'Problem loading credentials', 'There was a problem loading the credentials:');
this.isDataLoading = false;
return;
}
@@ -138,7 +138,7 @@ export default mixins(
},
async deleteCredential (credential: ICredentialsResponse) {
- const deleteConfirmed = await this.confirmMessage(`Are you sure that you want to delete the credentials "${credential.name}"?`, 'Delete Credentials?', 'warning', 'Yes, delete!');
+ const deleteConfirmed = await this.confirmMessage(`Are you sure you want to delete "${credential.name}" credentials?`, 'Delete Credentials?', 'warning', 'Yes, delete!');
if (deleteConfirmed === false) {
return;
diff --git a/packages/editor-ui/src/components/MainHeader.vue b/packages/editor-ui/src/components/MainHeader.vue
index a6d5710156..2b9696e2b3 100644
--- a/packages/editor-ui/src/components/MainHeader.vue
+++ b/packages/editor-ui/src/components/MainHeader.vue
@@ -12,14 +12,15 @@
- of Workflow
+ of
"{{workflowName}}"
+ workflow
Workflow: {{workflowName}}
- Workflow not saved!
+ Workflow was not saved!
@@ -32,9 +33,9 @@
- Server connection could not be established.
- The server is down or there is a connection problem.
- It will reconnect automatically as soon as the backend can be reached.
+ Cannot connect to server.
+ It is either down or you have a connection issue.
+ It should reconnect automatically once the issue is resolved.
@@ -50,9 +51,8 @@
- A past execution gets displayed. For that reason no data
- can be changed. To make changes or to execute it again open
- the workflow by clicking on it`s name on the left.
+ You're viewing the log of a previous execution. You cannot
+ make changes since this execution already occured. Make changes
to this workflow by clicking on it`s name on the left.
diff --git a/packages/editor-ui/src/components/NodeCreateList.vue b/packages/editor-ui/src/components/NodeCreateList.vue
index a521c40ddd..3d318c2c8d 100644
--- a/packages/editor-ui/src/components/NodeCreateList.vue
+++ b/packages/editor-ui/src/components/NodeCreateList.vue
@@ -13,7 +13,7 @@
- No node found which matches active filter!
+ 🙃 no nodes matching your search criteria
diff --git a/packages/editor-ui/src/components/NodeSettings.vue b/packages/editor-ui/src/components/NodeSettings.vue
index ea5f37ea15..6808b82566 100644
--- a/packages/editor-ui/src/components/NodeSettings.vue
+++ b/packages/editor-ui/src/components/NodeSettings.vue
@@ -5,7 +5,7 @@
-
+
@@ -22,7 +22,7 @@
- The node does not have any parameters.
+ This node does not have any parameters.
@@ -162,15 +162,15 @@ export default mixins(
},
default: '',
noDataExpression: true,
- description: 'Notes to save with the node.',
+ description: 'Optional note to save with the node.',
},
{
- displayName: 'Notes In Flow',
+ displayName: 'Display note in flow?',
name: 'notesInFlow',
type: 'boolean',
default: false,
noDataExpression: true,
- description: 'If activated it will display the above notes in the flow as subtitle.',
+ description: 'If active, the note above will display in the flow as a subtitle.',
},
{
displayName: 'Node Color',
@@ -186,7 +186,7 @@ export default mixins(
type: 'boolean',
default: false,
noDataExpression: true,
- description: 'If activated and the node does not have any data for the first output,
it returns an empty item anyway. Be careful setting this on
IF-Nodes as it could easily cause an infinite loop.',
+ description: 'If active, the node will return an empty item even if the
node returns no data during an initial execution. Be careful setting
this on IF-Nodes as it could cause an infinite loop.',
},
{
displayName: 'Execute Once',
@@ -194,7 +194,7 @@ export default mixins(
type: 'boolean',
default: false,
noDataExpression: true,
- description: 'Instead of executing once per item does it only execute once with the data of the first item.',
+ description: 'If active, the node executes only once, with data
from the first item it recieves. ',
},
{
displayName: 'Retry On Fail',
@@ -202,7 +202,7 @@ export default mixins(
type: 'boolean',
default: false,
noDataExpression: true,
- description: 'If activated it will automatically retry the node again multiple times.',
+ description: 'If active, the node tries to execute a failed attempt
multiple times until it succeeds.',
},
{
displayName: 'Max. Tries',
@@ -221,7 +221,7 @@ export default mixins(
},
},
noDataExpression: true,
- description: 'How often it should try to execute the node before it should fail.',
+ description: 'Number of times Retry On Fail should attempt to execute the node
before stopping and returning the execution as failed.',
},
{
displayName: 'Wait Between Tries',
@@ -240,7 +240,7 @@ export default mixins(
},
},
noDataExpression: true,
- description: 'How long to wait between ties. Value in ms.',
+ description: 'How long to wait between each attempt. Value in ms.',
},
{
displayName: 'Continue On Fail',
@@ -248,7 +248,7 @@ export default mixins(
type: 'boolean',
default: false,
noDataExpression: true,
- description: 'If activated and the node fails the workflow will simply continue running.
It will then simply pass through the input data so the workflow has
to be set up to handle the case that different data gets returned.',
+ description: 'If active, the workflow continues even if this node\'s
previous nodes - so your workflow should account for unexpected output data.',
},
] as INodeProperties[],
diff --git a/packages/editor-ui/src/components/NodeWebhooks.vue b/packages/editor-ui/src/components/NodeWebhooks.vue
index e2875a49fd..051e97b7b5 100644
--- a/packages/editor-ui/src/components/NodeWebhooks.vue
+++ b/packages/editor-ui/src/components/NodeWebhooks.vue
@@ -88,7 +88,7 @@ export default mixins(
this.$showMessage({
title: 'Copied',
- message: `The webhook URL got copied!`,
+ message: `The webhook URL was successfully copied!`,
type: 'success',
});
},
diff --git a/packages/editor-ui/src/components/RunData.vue b/packages/editor-ui/src/components/RunData.vue
index 6a0a138669..b08f52e3dd 100644
--- a/packages/editor-ui/src/components/RunData.vue
+++ b/packages/editor-ui/src/components/RunData.vue
@@ -7,7 +7,7 @@
:disabled="workflowRunning"
@click.stop="runWorkflow(node.name)"
class="execute-node-button"
- :title="`Executes node ${node.name} and all not already executed nodes before it.`"
+ :title="`Executes this ${node.name} node after executing any previous nodes that have not yet returned data`"
>