diff options
| author | jakobrs <jakobrs100@gmail.com> | 2023-03-25 13:30:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-25 13:30:33 +0100 |
| commit | a25a69154919569f032333388876f14d16a75ea9 (patch) | |
| tree | 4f1f1ea0d839680ab3bea16dbb0a6d0c53d39582 /library | |
| parent | 238f64327c18e2a299c7ecef4980c9cd5b842750 (diff) | |
Use correct smart quotes for Norwegian Bokmål language code (#278)
Diffstat (limited to 'library')
| -rw-r--r-- | library/src/text/quotes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/src/text/quotes.rs b/library/src/text/quotes.rs index 97b07746..55cbe818 100644 --- a/library/src/text/quotes.rs +++ b/library/src/text/quotes.rs @@ -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(), }; |
