mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Change Median back to Average in UI
This commit is contained in:
parent
a52e91c53c
commit
e0c1e3f8e4
4 changed files with 7 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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),
|
||||
},
|
||||
];
|
||||
|
|
|
@ -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),
|
||||
},
|
||||
];
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue