Add Czech translation (#683)

This commit is contained in:
Radim Sückr 2023-04-11 14:04:44 +02:00 committed by GitHub
parent 9046678610
commit 6f625fc73c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 0 deletions

View File

@ -289,6 +289,7 @@ impl LocalName for TableElem {
Lang::ARABIC => "جدول",
Lang::BOKMÅL => "Tabell",
Lang::CHINESE => "",
Lang::CZECH => "Tabulka",
Lang::FRENCH => "Tableau",
Lang::GERMAN => "Tabelle",
Lang::ITALIAN => "Tabella",

View File

@ -277,6 +277,7 @@ impl LocalName for EquationElem {
Lang::ARABIC => "معادلة",
Lang::BOKMÅL => "Ligning",
Lang::CHINESE => "等式",
Lang::CZECH => "Rovnice",
Lang::FRENCH => "Équation",
Lang::GERMAN => "Gleichung",
Lang::ITALIAN => "Equazione",

View File

@ -204,6 +204,7 @@ impl LocalName for BibliographyElem {
Lang::ARABIC => "المراجع",
Lang::BOKMÅL => "Bibliografi",
Lang::CHINESE => "参考文献",
Lang::CZECH => "Bibliografie",
Lang::FRENCH => "Bibliographie",
Lang::GERMAN => "Bibliographie",
Lang::ITALIAN => "Bibliografia",

View File

@ -232,6 +232,7 @@ impl LocalName for HeadingElem {
Lang::ARABIC => "الفصل",
Lang::BOKMÅL => "Kapittel",
Lang::CHINESE => "小节",
Lang::CZECH => "Kapitola",
Lang::FRENCH => "Chapitre",
Lang::GERMAN => "Abschnitt",
Lang::ITALIAN => "Sezione",

View File

@ -255,6 +255,7 @@ impl LocalName for OutlineElem {
Lang::ARABIC => "المحتويات",
Lang::BOKMÅL => "Innhold",
Lang::CHINESE => "目录",
Lang::CZECH => "Obsah",
Lang::FRENCH => "Table des matières",
Lang::GERMAN => "Inhaltsverzeichnis",
Lang::ITALIAN => "Indice",

View File

@ -205,6 +205,7 @@ impl LocalName for RawElem {
Lang::ARABIC => "قائمة",
Lang::BOKMÅL => "Utskrift",
Lang::CHINESE => "代码",
Lang::CZECH => "Seznam",
Lang::FRENCH => "Liste",
Lang::GERMAN => "Listing",
Lang::ITALIAN => "Codice",

View File

@ -121,6 +121,7 @@ impl LocalName for ImageElem {
Lang::ARABIC => "شكل",
Lang::BOKMÅL => "Figur",
Lang::CHINESE => "",
Lang::CZECH => "Obrázek",
Lang::FRENCH => "Figure",
Lang::GERMAN => "Abbildung",
Lang::ITALIAN => "Figura",

View File

@ -518,6 +518,7 @@ impl Lang {
pub const ARABIC: Self = Self(*b"ar ", 2);
pub const BOKMÅL: Self = Self(*b"nb ", 2);
pub const CHINESE: Self = Self(*b"zh ", 2);
pub const CZECH: Self = Self(*b"cs ", 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);