fix missing space in email (#5986)

This commit is contained in:
Carina Wollendorfer
2022-12-12 12:51:27 -07:00
committed by GitHub
parent 53d160e495
commit b7fcf6ade1
2 changed files with 8 additions and 6 deletions
@@ -82,7 +82,7 @@
"join_by_entrypoint": "Rejoindre par {{entryPoint}}",
"notes": "Notes",
"manage_my_bookings": "Gérer mes réservations",
"need_to_make_a_change": "Besoin de faire un changement ?",
"need_to_make_a_change": "Besoin de faire un changement?",
"new_event_scheduled": "Un nouvel événement a été programmé.",
"new_event_scheduled_recurring": "Un nouvel événement récurrent a été programmé.",
"invitee_email": "E-mail de l'invité",
@@ -28,16 +28,18 @@ export function ManageLink(props: { calEvent: CalendarEvent; attendee: Person })
width: "100%",
gap: "8px",
}}>
<>{t("need_to_make_a_change")}</>{" "}
<>{t("need_to_make_a_change")}</>
{!props.calEvent.recurringEvent && (
<>
<a href={getRescheduleLink(props.calEvent)} style={{ color: "#3e3e3e" }}>
<>{t("reschedule")}</>{" "}
<a
href={getRescheduleLink(props.calEvent)}
style={{ color: "#3e3e3e", marginLeft: "5px", marginRight: "5px" }}>
<>{t("reschedule")}</>
</a>
<>{t("or_lowercase")}</>{" "}
<>{t("or_lowercase")}</>
</>
)}
<a href={getCancelLink(props.calEvent)} style={{ color: "#3e3e3e" }}>
<a href={getCancelLink(props.calEvent)} style={{ color: "#3e3e3e", marginLeft: "5px" }}>
<>{t("cancel")}</>
</a>
</p>