cards->reviews

This commit is contained in:
Damien Elmes 2020-06-30 16:50:23 +10:00
parent 5aad1d0d81
commit 79d04c9db7

View file

@ -115,7 +115,7 @@ export function renderCalendar(
month: "long", month: "long",
day: "numeric", day: "numeric",
}); });
const cards = i18n.tr(i18n.TR.STATISTICS_CARDS, { cards: d.count }); const cards = i18n.tr(i18n.TR.STATISTICS_REVIEWS, { reviews: d.count });
return `${date}<br>${cards}`; return `${date}<br>${cards}`;
} }