Add Finnish translations (#1996)

This commit is contained in:
Kivi Kaitaniemi 2023-08-25 15:32:11 +03:00 committed by GitHub
parent 22b5959608
commit 139328bb95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 0 deletions

View File

@ -311,6 +311,7 @@ impl LocalName for TableElem {
Lang::DANISH => "Tabel",
Lang::DUTCH => "Tabel",
Lang::FILIPINO => "Talaan",
Lang::FINNISH => "Taulukko",
Lang::FRENCH => "Tableau",
Lang::GERMAN => "Tabelle",
Lang::ITALIAN => "Tabella",

View File

@ -327,6 +327,7 @@ impl LocalName for EquationElem {
Lang::DANISH => "Ligning",
Lang::DUTCH => "Vergelijking",
Lang::FILIPINO => "Ekwasyon",
Lang::FINNISH => "Yhtälö",
Lang::FRENCH => "Équation",
Lang::GERMAN => "Gleichung",
Lang::ITALIAN => "Equazione",

View File

@ -234,6 +234,7 @@ impl LocalName for BibliographyElem {
Lang::DANISH => "Bibliografi",
Lang::DUTCH => "Bibliografie",
Lang::FILIPINO => "Bibliograpiya",
Lang::FINNISH => "Viitteet",
Lang::FRENCH => "Bibliographie",
Lang::GERMAN => "Bibliographie",
Lang::ITALIAN => "Bibliografia",

View File

@ -247,6 +247,7 @@ impl LocalName for HeadingElem {
Lang::DANISH => "Afsnit",
Lang::DUTCH => "Hoofdstuk",
Lang::FILIPINO => "Seksyon",
Lang::FINNISH => "Osio",
Lang::FRENCH => "Chapitre",
Lang::GERMAN => "Abschnitt",
Lang::ITALIAN => "Sezione",

View File

@ -269,6 +269,7 @@ impl LocalName for OutlineElem {
Lang::DANISH => "Indhold",
Lang::DUTCH => "Inhoudsopgave",
Lang::FILIPINO => "Talaan ng mga Nilalaman",
Lang::FINNISH => "Sisällys",
Lang::FRENCH => "Table des matières",
Lang::GERMAN => "Inhaltsverzeichnis",
Lang::ITALIAN => "Indice",

View File

@ -352,6 +352,7 @@ impl LocalName for RawElem {
Lang::DANISH => "Liste",
Lang::DUTCH => "Listing",
Lang::FILIPINO => "Listahan",
Lang::FINNISH => "Esimerkki",
Lang::FRENCH => "Liste",
Lang::GERMAN => "Listing",
Lang::ITALIAN => "Codice",

View File

@ -243,6 +243,7 @@ impl LocalName for ImageElem {
Lang::DANISH => "Figur",
Lang::DUTCH => "Figuur",
Lang::FILIPINO => "Pigura",
Lang::FINNISH => "Kuva",
Lang::FRENCH => "Figure",
Lang::GERMAN => "Abbildung",
Lang::ITALIAN => "Figura",

View File

@ -567,6 +567,7 @@ impl Lang {
pub const DUTCH: Self = Self(*b"nl ", 2);
pub const ENGLISH: Self = Self(*b"en ", 2);
pub const FILIPINO: Self = Self(*b"tl ", 2);
pub const FINNISH: Self = Self(*b"fi ", 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);