From 2e2acca8b41de7103684f7dfe477a35b8b8589ce Mon Sep 17 00:00:00 2001 From: Jay George Date: Thu, 3 Sep 2026 14:43:43 +0100 Subject: [PATCH 01/15] wip --- lang/en/messages.php | 4 ++-- .../js/components/forms/connections/ConnectionRow.vue | 4 ++-- .../js/components/forms/connections/ConnectionRows.vue | 10 ++++++++-- .../components/forms/connections/EmailConnection.vue | 10 +++++++++- 4 files changed, 21 insertions(+), 7 deletions(-) diff --git a/lang/en/messages.php b/lang/en/messages.php index f4609a3aaf8..0f8fe56ad41 100644 --- a/lang/en/messages.php +++ b/lang/en/messages.php @@ -85,7 +85,7 @@ 'elevated_session_verification_code_sent' => 'Verification code has been sent to your email.', 'email_connection_delete_confirmation' => 'Are you sure you want to delete this email?', 'email_connection_description' => 'Send email notifications.', - 'email_connection_empty_description' => 'Notify your team, or send a confirmation to the person who submitted.', + 'email_connection_empty_description' => 'Set up emails to be sent automatically when this form is submitted. Use them to notify users or team members.', 'email_utility_configuration_description' => 'Mail settings are configured in :path', 'email_utility_description' => 'Check email configuration settings and send test emails.', 'entry_count' => ':count entry|:count entries', @@ -329,7 +329,7 @@ 'user_wizard_super_admin_instructions' => 'Super admins have complete control and access to everything in the control panel. Grant this role wisely.', 'webhook_connection_delete_confirmation' => 'Are you sure you want to delete this webhook?', 'webhook_connection_description' => 'Send submissions to an external URL.', - 'webhook_connection_empty_description' => 'Notify other services whenever this form receives a submission.', + 'webhook_connection_empty_description' => 'Each webhook is sent when this form is submitted. Notify other services or trigger automations with the submission data.', 'webhook_connection_payload_instructions' => 'Each submission is sent to the webhook URL as a JSON POST request.', 'webhook_connection_verify_ssl_instructions' => 'Only disable this if the receiving server uses a self-signed certificate.', 'width_x_height' => ':width × :height', diff --git a/resources/js/components/forms/connections/ConnectionRow.vue b/resources/js/components/forms/connections/ConnectionRow.vue index 14d51866351..944eaaf476a 100644 --- a/resources/js/components/forms/connections/ConnectionRow.vue +++ b/resources/js/components/forms/connections/ConnectionRow.vue @@ -21,10 +21,10 @@ function toggleCollapsedState() { :class="{ 'border-red-500': hasError }" >
diff --git a/resources/js/components/forms/connections/ConnectionRows.vue b/resources/js/components/forms/connections/ConnectionRows.vue index 5120c9781fd..2b9bb275fe1 100644 --- a/resources/js/components/forms/connections/ConnectionRows.vue +++ b/resources/js/components/forms/connections/ConnectionRows.vue @@ -1,7 +1,7 @@