diff --git a/ftl/core/statistics.ftl b/ftl/core/statistics.ftl index d4fd1a551..a6a15fd0b 100644 --- a/ftl/core/statistics.ftl +++ b/ftl/core/statistics.ftl @@ -148,7 +148,7 @@ statistics-card-ease-title = Card Ease statistics-card-difficulty-title = Card Difficulty statistics-card-stability-title = Card Stability statistics-card-stability-subtitle = The delay at which retrievability falls to 90%. -statistics-median-stability = Median stability +statistics-average-stability = Average stability statistics-card-retrievability-title = Card Retrievability statistics-card-ease-subtitle = The lower the ease, the more frequently a card will appear. statistics-card-difficulty-subtitle2 = The higher the difficulty, the slower stability will increase. @@ -258,7 +258,7 @@ statistics-total = Total statistics-days-studied = Days studied statistics-average-answer-time-label = Average answer time statistics-average = Average -statistics-median-interval = Median interval +statistics-average-interval = Average interval statistics-due-tomorrow = Due tomorrow # This string, ‘Daily load,’ appears in the ‘Future due’ table and represents a # forecasted estimate of the number of cards expected to be reviewed daily in @@ -284,8 +284,8 @@ statistics-cards-per-day = [one] { $count } card/day *[other] { $count } cards/day } -statistics-median-ease = Median ease -statistics-median-difficulty = Median difficulty +statistics-average-ease = Average ease +statistics-average-difficulty = Average difficulty statistics-average-retrievability = Average retrievability statistics-estimated-total-knowledge = Estimated total knowledge statistics-save-pdf = Save PDF diff --git a/ts/routes/graphs/difficulty.ts b/ts/routes/graphs/difficulty.ts index 1778e2513..91f8aa634 100644 --- a/ts/routes/graphs/difficulty.ts +++ b/ts/routes/graphs/difficulty.ts @@ -101,7 +101,7 @@ export function prepareData( const xTickFormat = (num: number): string => localizedNumber(num, 0) + "%"; const tableData = [ { - label: tr.statisticsMedianDifficulty(), + label: tr.statisticsAverageDifficulty(), value: xTickFormat(data.average), }, ]; diff --git a/ts/routes/graphs/ease.ts b/ts/routes/graphs/ease.ts index 26de02096..1a3aca45d 100644 --- a/ts/routes/graphs/ease.ts +++ b/ts/routes/graphs/ease.ts @@ -106,7 +106,7 @@ export function prepareData( const xTickFormat = (num: number): string => localizedNumber(num, 0) + "%"; const tableData = [ { - label: tr.statisticsMedianEase(), + label: tr.statisticsAverageEase(), value: xTickFormat(data.average), }, ]; diff --git a/ts/routes/graphs/intervals.ts b/ts/routes/graphs/intervals.ts index ffd41b238..ea7523710 100644 --- a/ts/routes/graphs/intervals.ts +++ b/ts/routes/graphs/intervals.ts @@ -172,7 +172,7 @@ export function prepareIntervalData( const medianIntervalString = timeSpan(medianInterval * 86400, false); const tableData = [ { - label: fsrs ? tr.statisticsMedianStability() : tr.statisticsMedianInterval(), + label: fsrs ? tr.statisticsAverageStability() : tr.statisticsAverageInterval(), value: medianIntervalString, }, ];