From 4a5748a4995e803c96460ad78756ac3b80c60e6e Mon Sep 17 00:00:00 2001 From: lars Date: Thu, 12 Sep 2024 13:50:38 +0200 Subject: [PATCH] Anpassen der E-Mails --- .../emails/AlmostReachedChatsLimitEmail.tsx | 22 +++++++++---------- .../emails/DefaultBotNotificationEmail.tsx | 2 +- .../src/emails/GuestInvitationEmail.tsx | 13 ++++++----- packages/emails/src/emails/MagicLinkEmail.tsx | 12 +++++----- .../src/emails/ReachedChatsLimitEmail.tsx | 12 +++++----- .../emails/WorkspaceMemberInvitationEmail.tsx | 10 ++++----- 6 files changed, 35 insertions(+), 36 deletions(-) diff --git a/packages/emails/src/emails/AlmostReachedChatsLimitEmail.tsx b/packages/emails/src/emails/AlmostReachedChatsLimitEmail.tsx index dffb497dc..2420d0f46 100644 --- a/packages/emails/src/emails/AlmostReachedChatsLimitEmail.tsx +++ b/packages/emails/src/emails/AlmostReachedChatsLimitEmail.tsx @@ -41,24 +41,22 @@ export const AlmostReachedChatsLimitEmail = ({ - Your bots are chatting a lot. That's amazing. 💙 + Deine BLS bots chatten aber viel. Das ist mega! 🧡 - Your workspace {workspaceName} has used{' '} - {usagePercent}% of the included chats this month. Once you hit{' '} - {readableChatsLimit} chats, you will pay as you go for additional - chats. + Dein Workspace {workspaceName} hat mittlerweile{' '} + {usagePercent}% deines Monatlichen Limits genutzt. Wenn alle{' '} + {readableChatsLimit} Chats genuntzt wurden, zahlst du für weitere Chats einfach "Pay as you go". - Your progress can be monitored on your workspace dashboard - settings. + Du kannst deine Chatlimits in deimen Workspace unter "Einstellungen & Mitglieder" sehen. - Check out the{' '} - pricing page for - information about the pay as you go tiers. + Schau auf unserer {' '} + Übersichtsseite für + weitere Infos und den Preismodellen. - As a reminder, your billing cycle ends on {readableResetDate}. + Pssst. Am {readableResetDate} wird dein Chatlimit wieder auf 0 gesezt! 😁 @@ -74,6 +72,6 @@ export const sendAlmostReachedChatsLimitEmail = ({ ComponentProps) => sendEmail({ to, - subject: "You're close to your chats limit", + subject: "Du bist fast an deinem monatlichen Chatlimit", html: render().html, }) diff --git a/packages/emails/src/emails/DefaultBotNotificationEmail.tsx b/packages/emails/src/emails/DefaultBotNotificationEmail.tsx index 852568ba7..328726a87 100644 --- a/packages/emails/src/emails/DefaultBotNotificationEmail.tsx +++ b/packages/emails/src/emails/DefaultBotNotificationEmail.tsx @@ -46,7 +46,7 @@ export const DefaultBotNotificationEmail = ({ ) })} - + diff --git a/packages/emails/src/emails/GuestInvitationEmail.tsx b/packages/emails/src/emails/GuestInvitationEmail.tsx index 9d2ecb873..18c47e986 100644 --- a/packages/emails/src/emails/GuestInvitationEmail.tsx +++ b/packages/emails/src/emails/GuestInvitationEmail.tsx @@ -38,18 +38,19 @@ export const GuestInvitationEmail = ({ - You have been invited by {hostEmail} to collaborate on his typebot{' '} + Du wurdest von {hostEmail} zum Zusammenarbeiten an dem BLS bot {' '} eingeladen. {typebotName}. - From now on you will see this typebot in your dashboard under his - workspace "{workspaceName}" 👍 + Tja ohne deine Hilfe geht es wohl nicht! + Ab jetzt kannst du den bot in deinem Dashboard unser deren + Workspace "{workspaceName}" sehen 🫱🏻‍🫲🏼 - Make sure to log in as {guestEmail}. + Melde dich einfach mit {guestEmail} an. - + @@ -62,6 +63,6 @@ export const sendGuestInvitationEmail = ({ }: Pick & ComponentProps) => sendEmail({ to, - subject: "You've been invited to collaborate 🤝", + subject: "Du wurdest eingeladen, deine Hilfe wird benötigt 🤝", html: render().html, }) diff --git a/packages/emails/src/emails/MagicLinkEmail.tsx b/packages/emails/src/emails/MagicLinkEmail.tsx index bca305788..fc950c45a 100644 --- a/packages/emails/src/emails/MagicLinkEmail.tsx +++ b/packages/emails/src/emails/MagicLinkEmail.tsx @@ -29,17 +29,17 @@ export const MagicLinkEmail = ({ url }: Props) => ( - Here is your magic link 👇 + Ouuu hier ist dein ✨magischer✨ Link - If you didn't request this, please ignore this email. + Wenn du dich jetzt wunderst woher die E-Mail kommt.. kannst du sie einfach ignorieren 🙃 - Best, -
- Typebot Team. + Beste Grüße, +
- Dein Team von BLS media
@@ -53,6 +53,6 @@ export const sendMagicLinkEmail = ({ }: Pick & ComponentProps) => sendEmail({ to, - subject: 'Sign in to Typebot', + subject: 'Bei BLS bot anmelden', html: render().html, }) diff --git a/packages/emails/src/emails/ReachedChatsLimitEmail.tsx b/packages/emails/src/emails/ReachedChatsLimitEmail.tsx index bfce38da4..adbcb973e 100644 --- a/packages/emails/src/emails/ReachedChatsLimitEmail.tsx +++ b/packages/emails/src/emails/ReachedChatsLimitEmail.tsx @@ -38,16 +38,16 @@ export const ReachedChatsLimitEmail = ({ - It just happened, you've reached your monthly{' '} - {readableChatsLimit} chats limit 😮 + Oh krass, du hast dein monatliches Limit von {' '} + {readableChatsLimit} Chats erreicht 😮 - If you'd like your bots to continue chatting with your users - this month, then you need to upgrade your plan. 🚀 + Wenn du willst, dass deine BLS bots diesen Monat noch fleißig weiter chatten + erhöhe einfach deinen Plan oder kontaktiere uns. 🚀 - + @@ -62,6 +62,6 @@ export const sendReachedChatsLimitEmail = ({ ComponentProps) => sendEmail({ to, - subject: "You've reached your chats limit", + subject: "Deine Bots haben das Limit erreicht 🤯", html: render().html, }) diff --git a/packages/emails/src/emails/WorkspaceMemberInvitationEmail.tsx b/packages/emails/src/emails/WorkspaceMemberInvitationEmail.tsx index b90353a83..6437a55d8 100644 --- a/packages/emails/src/emails/WorkspaceMemberInvitationEmail.tsx +++ b/packages/emails/src/emails/WorkspaceMemberInvitationEmail.tsx @@ -36,14 +36,14 @@ export const WorkspaceMemberInvitation = ({ - You have been invited by {hostEmail} to collaborate on his workspace{' '} - {workspaceName} as a team member. + Du wurdest von {hostEmail} zum zusammenarbeiten in deren Workspace {' '} + {workspaceName} als Teammitglied hinzugefügt. - From now on you will see this workspace in your dashboard 👍 + Ab jetzt siehst du diesen Workspace in deinem Dashboard 😁 - Make sure to log in as {guestEmail}. + Melde dich dafür mit {guestEmail} an. @@ -60,6 +60,6 @@ export const sendWorkspaceMemberInvitationEmail = ({ ComponentProps) => sendEmail({ to, - subject: "You've been invited to collaborate 🤝", + subject: "Du wurdest zum Zusammenarbeiten eingeladen 🤝", html: render().html, })