From a25a69154919569f032333388876f14d16a75ea9 Mon Sep 17 00:00:00 2001 From: jakobrs Date: Sat, 25 Mar 2023 13:30:33 +0100 Subject: [PATCH] =?UTF-8?q?Use=20correct=20smart=20quotes=20for=20Norwegia?= =?UTF-8?q?n=20Bokm=C3=A5l=20language=20code=20(#278)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/src/text/quotes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/src/text/quotes.rs b/library/src/text/quotes.rs index 97b07746f..55cbe8188 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(), };