mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00

Instead of generating a fluent.proto file with a giant enum, create a .json file representing the translations that downstream consumers can use for code generation. This enables the generation of a separate method for each translation, with a docstring that shows the actual text, and any required arguments listed in the function signature. The codebase is still using the old enum for now; updating it will need to come in future commits, and the old enum will need to be kept around, as add-ons are referencing it. Other changes: - move translation code into a separate crate - store the translations on a per-file/module basis, which will allow us to avoid sending 1000+ strings on each JS page load in the future - drop the undocumented support for external .ftl files, that we weren't using - duplicate strings in translation files are now checked for at build time - fix i18n test failing when run outside Bazel - drop slog dependency in i18n module
42 lines
1.3 KiB
Rust
42 lines
1.3 KiB
Rust
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
use crate::{i18n::I18n, prelude::*, scheduler::timespan::Timespan};
|
|
|
|
pub fn studied_today(cards: u32, secs: f32, i18n: &I18n) -> String {
|
|
let span = Timespan::from_secs(secs).natural_span();
|
|
let amount = span.as_unit();
|
|
let unit = span.unit().as_str();
|
|
let secs_per = if cards > 0 {
|
|
secs / (cards as f32)
|
|
} else {
|
|
0.0
|
|
};
|
|
let args = tr_args!["amount" => amount, "unit" => unit,
|
|
"cards" => cards, "secs-per-card" => secs_per];
|
|
i18n.trn(TR::StatisticsStudiedToday, args)
|
|
}
|
|
|
|
impl Collection {
|
|
pub fn studied_today(&mut self) -> Result<String> {
|
|
let timing = self.timing_today()?;
|
|
let today = self.storage.studied_today(timing.next_day_at)?;
|
|
Ok(studied_today(today.cards, today.seconds as f32, &self.i18n))
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use super::studied_today;
|
|
use crate::i18n::I18n;
|
|
|
|
#[test]
|
|
fn today() {
|
|
// temporary test of fluent term handling
|
|
let i18n = I18n::template_only();
|
|
assert_eq!(
|
|
&studied_today(3, 13.0, &i18n).replace("\n", " "),
|
|
"Studied 3 cards in 13 seconds today (4.33s/card)"
|
|
);
|
|
}
|
|
}
|