Fix translation of no events today in calendar

See #2221
pull/2222/head
shamoon 7 months ago
parent 6898faa3de
commit 3f1229555e

@ -763,6 +763,7 @@
"calendar": {
"inCinemas": "In cinemas",
"physicalRelease": "Physical release",
"digitalRelease": "Digital release"
"digitalRelease": "Digital release",
"noEventsToday": "No events for today!"
}
}

@ -40,7 +40,7 @@ export function Event({ event, colorVariants, showDate = false }) {
export default function Agenda({ service, colorVariants, showDate }) {
const { widget } = service;
const { events } = useContext(EventContext);
const { i18n } = useTranslation();
const { t } = useTranslation();
if (!showDate) {
return <div className=" text-center" />;
@ -64,12 +64,11 @@ export default function Agenda({ service, colorVariants, showDate }) {
<Event
key="no-event"
event={{
title: `No events for today!`,
title: t("calendar.noEventsToday"),
date: DateTime.now(),
color: "gray",
}}
colorVariants={colorVariants}
i18n={i18n}
/>
</div>
</div>

Loading…
Cancel
Save