diff --git a/apps/web/public/static/locales/en/common.json b/apps/web/public/static/locales/en/common.json index ccd6400299..17abcc3044 100644 --- a/apps/web/public/static/locales/en/common.json +++ b/apps/web/public/static/locales/en/common.json @@ -1181,12 +1181,12 @@ "team_members": "Team members", "more": "More", "more_page_footer": "We view the mobile application as an extension of the web application. If you are performing any complication actions, please refer back to the web application.", - "workflow_example_1": "Send email reminder 24 hours before event starts to host", - "workflow_example_2": "Send SMS reminder 1 hour before event starts to host", - "workflow_example_3": "Send custom email when event is cancelled to host", - "workflow_example_4": "Send email reminder 24 hours before event starts to attendee", - "workflow_example_5": "Send SMS reminder 1 hour before event starts to attendee", - "workflow_example_6": "Send custom SMS when event is rescheduled to attendee", + "workflow_example_1": "Send SMS reminder 24 hours before event starts to attendee", + "workflow_example_2": "Send custom SMS when event is rescheduled to attendee", + "workflow_example_3": "Send custom email when new event is booked to host", + "workflow_example_4": "Send email reminder 1 hour before events starts to attendee", + "workflow_example_5": "Send custom email when event is rescheduled to host", + "workflow_example_6": "Send custom SMS when new event is booked to host", "welcome_to_cal_header": "Welcome to Cal.com!", "edit_form_later_subtitle": "You’ll be able to edit this later.", "connect_calendar_later": "I'll connect my calendar later", diff --git a/packages/features/ee/workflows/components/v2/EmptyScreen.tsx b/packages/features/ee/workflows/components/v2/EmptyScreen.tsx index 20267a9491..5fad1b1500 100644 --- a/packages/features/ee/workflows/components/v2/EmptyScreen.tsx +++ b/packages/features/ee/workflows/components/v2/EmptyScreen.tsx @@ -15,15 +15,17 @@ function WorkflowExample(props: WorkflowExampleType) { const { Icon, text } = props; return ( -
+
-
+
- +
-
-
{text}
+
+
+ {text} +
@@ -50,13 +52,14 @@ export default function EmptyScreen({ const { t } = useLocale(); const workflowsExamples = [ - { icon: Icon.FiMail, text: t("workflow_example_1") }, + { icon: Icon.FiSmartphone, text: t("workflow_example_1") }, { icon: Icon.FiSmartphone, text: t("workflow_example_2") }, { icon: Icon.FiMail, text: t("workflow_example_3") }, { icon: Icon.FiMail, text: t("workflow_example_4") }, - { icon: Icon.FiSmartphone, text: t("workflow_example_5") }, + { icon: Icon.FiMail, text: t("workflow_example_5") }, { icon: Icon.FiSmartphone, text: t("workflow_example_6") }, ]; + // new workflow example when 'after meetings ends' trigger is implemented: Send custom thank you email to attendee after event (FiSmile icon), return ( <>