Add Vietnamese Translation (#684)

This commit is contained in:
ichxorya 2023-04-11 19:04:13 +07:00 committed by GitHub
parent 894a78a426
commit 31eb3b571e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 0 deletions

View File

@ -298,6 +298,7 @@ impl LocalName for TableElem {
Lang::SLOVENIAN => "Tabela", Lang::SLOVENIAN => "Tabela",
Lang::SPANISH => "Tabla", Lang::SPANISH => "Tabla",
Lang::UKRAINIAN => "Таблиця", Lang::UKRAINIAN => "Таблиця",
Lang::VIETNAMESE => "Bảng",
Lang::ENGLISH | _ => "Table", Lang::ENGLISH | _ => "Table",
} }
} }

View File

@ -286,6 +286,7 @@ impl LocalName for EquationElem {
Lang::SLOVENIAN => "Enačba", Lang::SLOVENIAN => "Enačba",
Lang::SPANISH => "Ecuación", Lang::SPANISH => "Ecuación",
Lang::UKRAINIAN => "Рівняння", Lang::UKRAINIAN => "Рівняння",
Lang::VIETNAMESE => "Phương trình",
Lang::ENGLISH | _ => "Equation", Lang::ENGLISH | _ => "Equation",
} }
} }

View File

@ -213,6 +213,7 @@ impl LocalName for BibliographyElem {
Lang::SLOVENIAN => "Literatura", Lang::SLOVENIAN => "Literatura",
Lang::SPANISH => "Bibliografía", Lang::SPANISH => "Bibliografía",
Lang::UKRAINIAN => "Бібліографія", Lang::UKRAINIAN => "Бібліографія",
Lang::VIETNAMESE => "Tài liệu tham khảo",
Lang::ENGLISH | _ => "Bibliography", Lang::ENGLISH | _ => "Bibliography",
} }
} }

View File

@ -241,6 +241,7 @@ impl LocalName for HeadingElem {
Lang::SLOVENIAN => "Poglavje", Lang::SLOVENIAN => "Poglavje",
Lang::SPANISH => "Sección", Lang::SPANISH => "Sección",
Lang::UKRAINIAN => "Розділ", Lang::UKRAINIAN => "Розділ",
Lang::VIETNAMESE => "Phần", // TODO: This may be wrong.
Lang::ENGLISH | _ => "Section", Lang::ENGLISH | _ => "Section",
} }
} }

View File

@ -264,6 +264,7 @@ impl LocalName for OutlineElem {
Lang::SLOVENIAN => "Kazalo", Lang::SLOVENIAN => "Kazalo",
Lang::SPANISH => "Índice", Lang::SPANISH => "Índice",
Lang::UKRAINIAN => "Зміст", Lang::UKRAINIAN => "Зміст",
Lang::VIETNAMESE => "Mục lục",
Lang::ENGLISH | _ => "Contents", Lang::ENGLISH | _ => "Contents",
} }
} }

View File

@ -212,6 +212,7 @@ impl LocalName for RawElem {
Lang::RUSSIAN => "Листинг", Lang::RUSSIAN => "Листинг",
Lang::SLOVENIAN => "Program", Lang::SLOVENIAN => "Program",
Lang::UKRAINIAN => "Лістинг", Lang::UKRAINIAN => "Лістинг",
Lang::VIETNAMESE => "Chương trình", // TODO: This may be wrong.
Lang::ENGLISH | _ => "Listing", Lang::ENGLISH | _ => "Listing",
} }
} }

View File

@ -130,6 +130,7 @@ impl LocalName for ImageElem {
Lang::SLOVENIAN => "Slika", Lang::SLOVENIAN => "Slika",
Lang::SPANISH => "Figura", Lang::SPANISH => "Figura",
Lang::UKRAINIAN => "Рисунок", Lang::UKRAINIAN => "Рисунок",
Lang::VIETNAMESE => "Hình",
Lang::ENGLISH | _ => "Figure", Lang::ENGLISH | _ => "Figure",
} }
} }

View File

@ -528,6 +528,7 @@ impl Lang {
pub const SLOVENIAN: Self = Self(*b"sl ", 2); pub const SLOVENIAN: Self = Self(*b"sl ", 2);
pub const SPANISH: Self = Self(*b"es ", 2); pub const SPANISH: Self = Self(*b"es ", 2);
pub const UKRAINIAN: Self = Self(*b"ua ", 2); pub const UKRAINIAN: Self = Self(*b"ua ", 2);
pub const VIETNAMESE: Self = Self(*b"vi ", 2);
/// Return the language code as an all lowercase string slice. /// Return the language code as an all lowercase string slice.
pub fn as_str(&self) -> &str { pub fn as_str(&self) -> &str {