mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -08:00
fix: Update UI wording (no-changelog) (#6938)
This commit is contained in:
parent
f50fc8443e
commit
27a18821b9
|
@ -726,7 +726,7 @@
|
||||||
"ndv.output.staleDataWarning.pinData": "Node parameter changes will not affect pinned output data.",
|
"ndv.output.staleDataWarning.pinData": "Node parameter changes will not affect pinned output data.",
|
||||||
"ndv.output.tooMuchData.message": "The node contains {size} MB of data. Displaying it may cause problems. <br /> If you do decide to display it, avoid the JSON view.",
|
"ndv.output.tooMuchData.message": "The node contains {size} MB of data. Displaying it may cause problems. <br /> If you do decide to display it, avoid the JSON view.",
|
||||||
"ndv.output.tooMuchData.showDataAnyway": "Show data anyway",
|
"ndv.output.tooMuchData.showDataAnyway": "Show data anyway",
|
||||||
"ndv.output.tooMuchData.title": "Output data is huge!",
|
"ndv.output.tooMuchData.title": "Output data is large",
|
||||||
"ndv.output.waitingToRun": "Waiting to execute...",
|
"ndv.output.waitingToRun": "Waiting to execute...",
|
||||||
"ndv.title.cancel": "Cancel",
|
"ndv.title.cancel": "Cancel",
|
||||||
"ndv.title.rename": "Rename",
|
"ndv.title.rename": "Rename",
|
||||||
|
|
|
@ -80,7 +80,7 @@ async function request(config: {
|
||||||
return response.data;
|
return response.data;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (error.message === 'Network Error') {
|
if (error.message === 'Network Error') {
|
||||||
throw new ResponseError('API-Server can not be reached. It is probably down.', {
|
throw new ResponseError("Can't connect to n8n.", {
|
||||||
errorCode: NO_NETWORK_ERROR_CODE,
|
errorCode: NO_NETWORK_ERROR_CODE,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue