Add Dutch LocalNames (#1357)

This commit is contained in:
Lynn 2023-05-29 12:23:51 +02:00 committed by GitHub
parent 3eb1f31e90
commit 1e4dabb63a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 0 deletions

View File

@ -305,6 +305,7 @@ impl LocalName for TableElem {
Lang::BOKMÅL => "Tabell", Lang::BOKMÅL => "Tabell",
Lang::CHINESE => "", Lang::CHINESE => "",
Lang::CZECH => "Tabulka", Lang::CZECH => "Tabulka",
Lang::DUTCH => "Tabel",
Lang::FRENCH => "Tableau", Lang::FRENCH => "Tableau",
Lang::GERMAN => "Tabelle", Lang::GERMAN => "Tabelle",
Lang::ITALIAN => "Tabella", Lang::ITALIAN => "Tabella",

View File

@ -322,6 +322,7 @@ impl LocalName for EquationElem {
Lang::CHINESE if option_eq(region, "TW") => "方程式", Lang::CHINESE if option_eq(region, "TW") => "方程式",
Lang::CHINESE => "等式", Lang::CHINESE => "等式",
Lang::CZECH => "Rovnice", Lang::CZECH => "Rovnice",
Lang::DUTCH => "Vergelijking",
Lang::FRENCH => "Équation", Lang::FRENCH => "Équation",
Lang::GERMAN => "Gleichung", Lang::GERMAN => "Gleichung",
Lang::ITALIAN => "Equazione", Lang::ITALIAN => "Equazione",

View File

@ -218,6 +218,7 @@ impl LocalName for BibliographyElem {
Lang::CHINESE if option_eq(region, "TW") => "書目", Lang::CHINESE if option_eq(region, "TW") => "書目",
Lang::CHINESE => "参考文献", Lang::CHINESE => "参考文献",
Lang::CZECH => "Bibliografie", Lang::CZECH => "Bibliografie",
Lang::DUTCH => "Bibliografie",
Lang::FRENCH => "Bibliographie", Lang::FRENCH => "Bibliographie",
Lang::GERMAN => "Bibliographie", Lang::GERMAN => "Bibliographie",
Lang::ITALIAN => "Bibliografia", Lang::ITALIAN => "Bibliografia",

View File

@ -217,6 +217,7 @@ impl LocalName for HeadingElem {
Lang::CHINESE if option_eq(region, "TW") => "小節", Lang::CHINESE if option_eq(region, "TW") => "小節",
Lang::CHINESE => "小节", Lang::CHINESE => "小节",
Lang::CZECH => "Kapitola", Lang::CZECH => "Kapitola",
Lang::DUTCH => "Hoofdstuk",
Lang::FRENCH => "Chapitre", Lang::FRENCH => "Chapitre",
Lang::GERMAN => "Abschnitt", Lang::GERMAN => "Abschnitt",
Lang::ITALIAN => "Sezione", Lang::ITALIAN => "Sezione",

View File

@ -271,6 +271,7 @@ impl LocalName for OutlineElem {
Lang::CHINESE if option_eq(region, "TW") => "目錄", Lang::CHINESE if option_eq(region, "TW") => "目錄",
Lang::CHINESE => "目录", Lang::CHINESE => "目录",
Lang::CZECH => "Obsah", Lang::CZECH => "Obsah",
Lang::DUTCH => "Inhoudsopgave",
Lang::FRENCH => "Table des matières", Lang::FRENCH => "Table des matières",
Lang::GERMAN => "Inhaltsverzeichnis", Lang::GERMAN => "Inhaltsverzeichnis",
Lang::ITALIAN => "Indice", Lang::ITALIAN => "Indice",

View File

@ -230,6 +230,7 @@ impl LocalName for RawElem {
Lang::BOKMÅL => "Utskrift", Lang::BOKMÅL => "Utskrift",
Lang::CHINESE => "代码", Lang::CHINESE => "代码",
Lang::CZECH => "Seznam", Lang::CZECH => "Seznam",
Lang::DUTCH => "Listing",
Lang::FRENCH => "Liste", Lang::FRENCH => "Liste",
Lang::GERMAN => "Listing", Lang::GERMAN => "Listing",
Lang::ITALIAN => "Codice", Lang::ITALIAN => "Codice",

View File

@ -134,6 +134,7 @@ impl LocalName for ImageElem {
Lang::BOKMÅL => "Figur", Lang::BOKMÅL => "Figur",
Lang::CHINESE => "", Lang::CHINESE => "",
Lang::CZECH => "Obrázek", Lang::CZECH => "Obrázek",
Lang::DUTCH => "Figuur",
Lang::FRENCH => "Figure", Lang::FRENCH => "Figure",
Lang::GERMAN => "Abbildung", Lang::GERMAN => "Abbildung",
Lang::ITALIAN => "Figura", Lang::ITALIAN => "Figura",

View File

@ -518,6 +518,7 @@ impl Lang {
pub const BOKMÅL: Self = Self(*b"nb ", 2); pub const BOKMÅL: Self = Self(*b"nb ", 2);
pub const CHINESE: Self = Self(*b"zh ", 2); pub const CHINESE: Self = Self(*b"zh ", 2);
pub const CZECH: Self = Self(*b"cs ", 2); pub const CZECH: Self = Self(*b"cs ", 2);
pub const DUTCH: Self = Self(*b"nl ", 2);
pub const ENGLISH: Self = Self(*b"en ", 2); pub const ENGLISH: Self = Self(*b"en ", 2);
pub const FRENCH: Self = Self(*b"fr ", 2); pub const FRENCH: Self = Self(*b"fr ", 2);
pub const GERMAN: Self = Self(*b"de ", 2); pub const GERMAN: Self = Self(*b"de ", 2);