9aece2a7b8
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
32 lines
1.1 KiB
Rust
32 lines
1.1 KiB
Rust
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
//! Check the .ftl files at build time to ensure we don't get runtime load failures.
|
|
|
|
use super::gather::TranslationsByLang;
|
|
use fluent::{FluentBundle, FluentResource};
|
|
use unic_langid::LanguageIdentifier;
|
|
|
|
pub fn check(lang_map: &TranslationsByLang) {
|
|
for (lang, files_map) in lang_map {
|
|
for (fname, content) in files_map {
|
|
check_content(lang, fname, content);
|
|
}
|
|
}
|
|
}
|
|
|
|
fn check_content(lang: &str, fname: &str, content: &str) {
|
|
let lang_id: LanguageIdentifier = "en-US".parse().unwrap();
|
|
let resource = FluentResource::try_new(content.into()).unwrap_or_else(|e| {
|
|
panic!("{}\nUnable to parse {}/{}: {:?}", content, lang, fname, e);
|
|
});
|
|
|
|
let mut bundle: FluentBundle<FluentResource> = FluentBundle::new(&[lang_id]);
|
|
bundle.add_resource(resource).unwrap_or_else(|e| {
|
|
panic!(
|
|
"{}\nUnable to bundle - duplicate key? {}/{}: {:?}",
|
|
content, lang, fname, e
|
|
);
|
|
});
|
|
}
|