Use correct smart quotes for Norwegian Bokmål language code (#278)

This commit is contained in:
jakobrs 2023-03-25 13:30:33 +01:00 committed by GitHub
parent 238f64327c
commit a25a691549
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -145,7 +145,7 @@ impl<'s> Quotes<'s> {
"fr" => ("\u{00A0}", "\u{00A0}", "«\u{00A0}", "\u{00A0}»"),
"bs" | "fi" | "sv" => ("", "", "", ""),
"hu" | "pl" | "ro" => ("", "", "", ""),
"ru" | "no" | "nn" => ("", "", "«", "»"),
"ru" | "no" | "nb" | "nn" => ("", "", "«", "»"),
_ => return Self::default(),
};