Change Median back to Average in UI

This commit is contained in:
user1823 2025-04-06 16:39:30 +05:30
parent a52e91c53c
commit e0c1e3f8e4
4 changed files with 7 additions and 7 deletions

View file

@ -148,7 +148,7 @@ statistics-card-ease-title = Card Ease
statistics-card-difficulty-title = Card Difficulty statistics-card-difficulty-title = Card Difficulty
statistics-card-stability-title = Card Stability statistics-card-stability-title = Card Stability
statistics-card-stability-subtitle = The delay at which retrievability falls to 90%. 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-retrievability-title = Card Retrievability
statistics-card-ease-subtitle = The lower the ease, the more frequently a card will appear. 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. 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-days-studied = Days studied
statistics-average-answer-time-label = Average answer time statistics-average-answer-time-label = Average answer time
statistics-average = Average statistics-average = Average
statistics-median-interval = Median interval statistics-average-interval = Average interval
statistics-due-tomorrow = Due tomorrow statistics-due-tomorrow = Due tomorrow
# This string, Daily load, appears in the Future due table and represents a # 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 # 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 [one] { $count } card/day
*[other] { $count } cards/day *[other] { $count } cards/day
} }
statistics-median-ease = Median ease statistics-average-ease = Average ease
statistics-median-difficulty = Median difficulty statistics-average-difficulty = Average difficulty
statistics-average-retrievability = Average retrievability statistics-average-retrievability = Average retrievability
statistics-estimated-total-knowledge = Estimated total knowledge statistics-estimated-total-knowledge = Estimated total knowledge
statistics-save-pdf = Save PDF statistics-save-pdf = Save PDF

View file

@ -101,7 +101,7 @@ export function prepareData(
const xTickFormat = (num: number): string => localizedNumber(num, 0) + "%"; const xTickFormat = (num: number): string => localizedNumber(num, 0) + "%";
const tableData = [ const tableData = [
{ {
label: tr.statisticsMedianDifficulty(), label: tr.statisticsAverageDifficulty(),
value: xTickFormat(data.average), value: xTickFormat(data.average),
}, },
]; ];

View file

@ -106,7 +106,7 @@ export function prepareData(
const xTickFormat = (num: number): string => localizedNumber(num, 0) + "%"; const xTickFormat = (num: number): string => localizedNumber(num, 0) + "%";
const tableData = [ const tableData = [
{ {
label: tr.statisticsMedianEase(), label: tr.statisticsAverageEase(),
value: xTickFormat(data.average), value: xTickFormat(data.average),
}, },
]; ];

View file

@ -172,7 +172,7 @@ export function prepareIntervalData(
const medianIntervalString = timeSpan(medianInterval * 86400, false); const medianIntervalString = timeSpan(medianInterval * 86400, false);
const tableData = [ const tableData = [
{ {
label: fsrs ? tr.statisticsMedianStability() : tr.statisticsMedianInterval(), label: fsrs ? tr.statisticsAverageStability() : tr.statisticsAverageInterval(),
value: medianIntervalString, value: medianIntervalString,
}, },
]; ];