fix(editor): Fix error toast

This commit is contained in:
Csaba Tuncsik 2024-09-18 15:43:08 +02:00
parent 6516fe2622
commit 4cbb581697
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View file

@ -58,7 +58,7 @@ const confirm = async () => {
type: 'success',
});
} catch (error) {
toast.showError(error);
toast.showError(error, i18n.baseText('communityPlusModal.error.title'));
}
};
</script>

View file

@ -2660,6 +2660,7 @@
"feedback.negative": "I didn't find this helpful",
"communityPlusModal.badge": "Time limited offer",
"communityPlusModal.title": "Unlock selected Pro features",
"communityPlusModal.error.title": "Request failed",
"communityPlusModal.success.title": "Request sent",
"communityPlusModal.success.message": "License key will be sent to {email}",
"communityPlusModal.description": "Receive a free activation key to access a limited set of pro features on your n8n installation.",