The rule for currency in general.yaml won't go to "then" in the "else_if" statement. I made the following test expression:
#[test]
fn currency_neuter_en() -> Result<()> {
let expr = r#"
<math>
<mi>₺</mi><mn>10</mn>
</math>"#;
test("en", "ClearSpeak", expr, "10 liras")?;
test("en", "SimpleSpeak", expr, "10 liras")?;
return Ok(());
}
which has the following output: "10 liras". I think it should be "10 lire".
The rule for currency in general.yaml won't go to "then" in the "else_if" statement. I made the following test expression:
which has the following output: "10 liras". I think it should be "10 lire".