Added Norwegian Bokmål Translation

Signed-off-by: 0ofta <kaare@jenssen.it>
This commit is contained in:
0ofta
2023-11-19 20:32:11 +01:00
parent 98f56fd506
commit af89fb52f1
2 changed files with 579 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ mod ko;
mod kz;
mod lt;
mod lv;
mod nb;
mod nl;
mod pl;
mod ptbr;
@@ -43,6 +44,7 @@ pub const LANGS: &[(&str, &str)] = &[
("fr", "Français"),
("de", "Deutsch"),
("nl", "Nederlands"),
("nb", "Norsk bokmål"),
("zh-cn", "简体中文"),
("zh-tw", "繁體中文"),
("pt", "Português"),
@@ -109,6 +111,7 @@ pub fn translate_locale(name: String, locale: &str) -> String {
"it" => it::T.deref(),
"zh-tw" => tw::T.deref(),
"de" => de::T.deref(),
"nb" => nb::T.deref(),
"nl" => nl::T.deref(),
"es" => es::T.deref(),
"hu" => hu::T.deref(),