fix missing space in email (#5986)
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user