Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e0c1e3f

Browse files
committed
Change Median back to Average in UI
1 parent a52e91c commit e0c1e3f

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

ftl/core/statistics.ftl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ statistics-card-ease-title = Card Ease
148148
statistics-card-difficulty-title = Card Difficulty
149149
statistics-card-stability-title = Card Stability
150150
statistics-card-stability-subtitle = The delay at which retrievability falls to 90%.
151-
statistics-median-stability = Median stability
151+
statistics-average-stability = Average stability
152152
statistics-card-retrievability-title = Card Retrievability
153153
statistics-card-ease-subtitle = The lower the ease, the more frequently a card will appear.
154154
statistics-card-difficulty-subtitle2 = The higher the difficulty, the slower stability will increase.
@@ -258,7 +258,7 @@ statistics-total = Total
258258
statistics-days-studied = Days studied
259259
statistics-average-answer-time-label = Average answer time
260260
statistics-average = Average
261-
statistics-median-interval = Median interval
261+
statistics-average-interval = Average interval
262262
statistics-due-tomorrow = Due tomorrow
263263
# This string, ‘Daily load,’ appears in the ‘Future due’ table and represents a
264264
# forecasted estimate of the number of cards expected to be reviewed daily in
@@ -284,8 +284,8 @@ statistics-cards-per-day =
284284
[one] { $count } card/day
285285
*[other] { $count } cards/day
286286
}
287-
statistics-median-ease = Median ease
288-
statistics-median-difficulty = Median difficulty
287+
statistics-average-ease = Average ease
288+
statistics-average-difficulty = Average difficulty
289289
statistics-average-retrievability = Average retrievability
290290
statistics-estimated-total-knowledge = Estimated total knowledge
291291
statistics-save-pdf = Save PDF

ts/routes/graphs/difficulty.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export function prepareData(
101101
const xTickFormat = (num: number): string => localizedNumber(num, 0) + "%";
102102
const tableData = [
103103
{
104-
label: tr.statisticsMedianDifficulty(),
104+
label: tr.statisticsAverageDifficulty(),
105105
value: xTickFormat(data.average),
106106
},
107107
];

ts/routes/graphs/ease.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export function prepareData(
106106
const xTickFormat = (num: number): string => localizedNumber(num, 0) + "%";
107107
const tableData = [
108108
{
109-
label: tr.statisticsMedianEase(),
109+
label: tr.statisticsAverageEase(),
110110
value: xTickFormat(data.average),
111111
},
112112
];

ts/routes/graphs/intervals.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export function prepareIntervalData(
172172
const medianIntervalString = timeSpan(medianInterval * 86400, false);
173173
const tableData = [
174174
{
175-
label: fsrs ? tr.statisticsMedianStability() : tr.statisticsMedianInterval(),
175+
label: fsrs ? tr.statisticsAverageStability() : tr.statisticsAverageInterval(),
176176
value: medianIntervalString,
177177
},
178178
];

0 commit comments

Comments
 (0)