cards->reviews; total->running total

This commit is contained in:
Damien Elmes 2020-07-06 18:59:55 +10:00
parent 833d352e54
commit f072710f67

View file

@ -214,7 +214,7 @@ export function renderReviews(
if (showTime) { if (showTime) {
return timeSpan(i18n, n / 1000); return timeSpan(i18n, n / 1000);
} else { } else {
return i18n.tr(i18n.TR.STATISTICS_CARDS, { cards: n }); return i18n.tr(i18n.TR.STATISTICS_REVIEWS, { reviews: n });
} }
} }
@ -255,7 +255,7 @@ export function renderReviews(
], ],
[ [
"grey", "grey",
`${i18n.tr(i18n.TR.STATISTICS_COUNTS_TOTAL_CARDS)}: ${valueLabel( `${i18n.tr(i18n.TR.STATISTICS_RUNNING_TOTAL)}: ${valueLabel(
cumulative cumulative
)}`, )}`,
], ],