From cca85a572a2d42ec4a8807378522da67319e37a7 Mon Sep 17 00:00:00 2001 From: jakobrs Date: Thu, 6 Apr 2023 14:56:11 +0200 Subject: Add Norwegian language support (#628) --- src/doc.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/doc.rs') diff --git a/src/doc.rs b/src/doc.rs index afeaa3f3..2852c68d 100644 --- a/src/doc.rs +++ b/src/doc.rs @@ -515,11 +515,13 @@ pub struct Glyph { pub struct Lang([u8; 3], u8); impl Lang { + pub const BOKMÃ…L: Self = Self(*b"nb ", 2); pub const CHINESE: Self = Self(*b"zh ", 2); pub const ENGLISH: Self = Self(*b"en ", 2); pub const FRENCH: Self = Self(*b"fr ", 2); pub const GERMAN: Self = Self(*b"de ", 2); pub const ITALIAN: Self = Self(*b"it ", 2); + pub const NYNORSK: Self = Self(*b"nn ", 2); pub const POLISH: Self = Self(*b"pl ", 2); pub const PORTUGUESE: Self = Self(*b"pt ", 2); pub const RUSSIAN: Self = Self(*b"ru ", 2); -- cgit v1.2.3