mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
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…
x
Reference in New Issue
Block a user