mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
cards->reviews; total->running total
This commit is contained in:
parent
833d352e54
commit
f072710f67
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
)}`,
|
)}`,
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue